Announcements Chapter 8 for today. 2 More Digitization Light, Sound, Magic: Representing Multimedia Digitally © Lawrence Snyder, 2008.

Slides:



Advertisements
Similar presentations
Computer Science 101 RGB Color System. Simplified Introduction to Color Vision Go to How We See: The First Steps of Human Vision or Color Vision for more.
Advertisements

© 2004, Robert K. Moniot Binary and Hex How to count like a computer.
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
CSCI N241: Fundamentals of Web Design Copyright ©2004  Department of Computer & Information Science Design Concepts: Module A: The Science of Color.
1 3 Computing System Fundamentals 3.5 Data Representation.
4.01 HTML, CSS and Color. Introduction This presentation includes the following topics: Additive color theory Color Names RGB Colors Hex Colors.
Chapter 5 Light, Sound, Magic: Representing Multimedia Digitally Digitizing is more than letters, numbers, and metadata It is also photos, audio, and video.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Introduction to Computers CS Dr. Zhizhang Shen Chapter 11: How does.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Representing Multimedia Digitally Light, Sound, Magic lawrence snyder c h.
Chapter 11 Light, Sound, Magic: Representing Multimedia Digitally.
RGB color model Skills: none IT concepts: combining red, green and blue light to generate colors This work is licensed under a Creative Commons Attribution-Noncommercial-
March 2006Taner Erig - EMU2-1 Metamorphosis of Information How is information represented and how do computers store information?
Chapter 11 Light, Sound, Magic: Representing Multimedia Digitally.
Bitmapped Images 27 th November 2014 With Mrs
Contains 16,777,216 Colors. My Car is red My Car is red How do I add colors to my web page? Notepad Browser Works with the “Standard” colors: Red, Green,
© Maths Support Service 2007 Binary and Hexadecimal Numbers Next Slide AE98FD AE98FD.
Digital Colour Theory. What is colour theory? It is the theory behind colour mixing and colour combination.
Why HTML. View Code This is my home page. My name is Ali. I’m studying Educational Technology. Save as Text.
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Chapter 11 Light, Sound, Magic: Representing Multimedia Digitally.
CMYK vs. RGB Design. Primary colors The colors that make up the base for every other color created. Depending on whether you are looking at it from science,
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
Color. -Visual light -An integral part of the sculpture -Creates desired effect -Distinguish items -Strengthen interest.
Chapter 11 Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Color Sources:
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
Number systems Jaana Holvikivi Metropolia. Result AND OR NOT Logical operations Boolean algebra Operations &&AND.
Most of the attributes of the body element specify colors for the Web page. Note: The background attribute won’t be useful till we learn about graphics.
Number Systems CIT Network Math
Web Colors. Web Colors: Up until now, we have been using only pre- defined color names, such as "orange" and "lightblue". As web designers, we need the.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Colors. Color of HTML Elements You can control the color of the following elements: You can control the color of the following elements: All text within.
Hexadecimal Codes 1. RGB Color Wheel 2 Before we begin Hexadecimal is a number system Based on using 0 – F to represent 0 – 15 Hex is used to represent.
Applying Color in CSS Web Design – Sec 4-5 Part or all of this lesson was adapted from the University of Washington’s “ Web Design & Development I ” Course.
# Red Green Blue Digital Color RGB to HEX.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
Ch 6 Color Image processing CS446 Instructor: Nada ALZaben.
HEXADECIMAL NUMBERS.
Computer Science and Software Engineering© 2014 Project Lead The Way, Inc. Bits and Bytes.
COLOR 3.02 Implement color terminology and the components of the color wheel.
Elements of Design 1.02 Investigate Design Principles and Elements.
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
CS 101 – Sept. 14 Review Huffman code Image representation –B/W and color schemes –File size issues.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
HSB to RGB to HEX.
PART TWO Electronic Color & RGB values 1. Electronic Color Computer Monitors: Use light in 3 colors to create images on the screen Monitors use RED, GREEN,
ColorsColors. Color Keywords/Names 140 color keywords/names are defined in the HTML and CSS color specification –17 standard colors (HTML accepts 16 of.
More Digital Representation Discrete information is represented in binary (PandA), and “continuous” information is made discrete.
Why HTML. This is my home page. My name is Ali. I’m studying Technology Education.
WHY HEXADECIMAL?. Why bother with Hexadecimal? 1. Binary numbers are difficult for us to work with. 2. Hexadecimal can be used as “shorthand” for binary.
Searching Binary and Hexadecimal numeral systems
Decimal Numbers.
Fluency with Information Technology
Image Processing Objectives To understand pixel based image processing
4.01 HTML, CSS and Color.
Hexadecimal Sweet Sixteen!.
Chapter 13 Colors & backgrounds.
Design Concepts: Module A: The Science of Color
4.01 HTML, CSS and Color.
Chapter 11: Light, Sound, Magic: Representing Multimedia Digitally
Ch2: Data Representation
Hexadecimal Binary Made Easier.
Chapter 2 Data Representation.
Art Programs Raise Deep Questions
What Color is it?.
Web Colors.
Digitizing Color RGB Colors: Binary Representation
4.01 HTML, CSS and Color.
Presentation transcript:

Announcements Chapter 8 for today

2 More Digitization Light, Sound, Magic: Representing Multimedia Digitally © Lawrence Snyder, 2008

Decimal number system has ten possible numbers in the first position. 1. True 2. False

Binary has two possible numbers in the first position 1. True 2. False

Black and White Colors A byte is allocated to each RGB intensity The smallest intensity is The largest is in binary = 255 in decimal = FF in hexadecimal Black (#000000) is no color White (#FFFFFF) has full intensity for each RGB color 11-5

Practice RGB #FFFFFF = ____________ # = ____________ # = ____________ # = ____________ #00FF00 = ____________ #FF0000 = ____________ #0000FF = ____________ 6

More practice #00FFFF = ____________ #FF00FF = ____________ #FFFF00 = ____________ (255, 0, 0) = ____________ (0, 255, 0) = ____________ (255,255,0) = ____________ (255,255,255) = ____________ #AA8866 = ____________ #00CCFF = ____________

Lighten Up: Changing Color by Addition What color does this represent: Each byte contains the decimal value 200. The color is RGB(200,200,200). In HTML, write in hexadecimal #C8C8C8 Equal amounts of red, green, and blue, closer to white than black (medium gray) All colors with equal RGB values are black, white, or gray 11-8

To Increase Intensity: Add in Binary To make a lighter color of gray, change the common values to be closer to white (larger numbers) For example, add (decimal 16) to each color: RGB(216,216,216) 11-9

Video NetPoint Video on Digital Imaging

Digital Colors Color Swatches site

How a Computer Works 13

Videos Computer Tour Build a computer: CPU, RAM, and Mobo