Lecture 24: Color Announcements & Review Lab 7 Due Thursday 2 D arrays - embedding graphs in an array Computer Science Artifacts Abstraction Representations.

Slides:



Advertisements
Similar presentations
Light (or the ELECTROMAGNETIC SPECTRUM)
Advertisements

An Introduction to Mixing Colors.
How Do We Mix Color? How do determine complimentary color?
Fundamentals of Digital Imaging
The eyes have three different kinds of color receptors; One kind is most sensitive to short wavelengths, one to middle wavelengths, and one to long wavelengths.
Multi-media Graphics JOUR 205 Color Models & Color Space 5 ways of specifying colors.
Color.
CSc 461/561 CSc 461/561 Multimedia Systems Part A: 2. Image.
Mr. Chapman Science 8.  As we all know by now (I hope!) the visible spectrum of light is all the colours that you can see in the rainbow – ROY G. BIV.
Colors – part 3 K1066BI – Graphical Design Teppo Räisänen
SNC2D. Primary LIGHT colours are red, green, and blue SECONDARY light colours are created by combining only two of the three primary colours of light.
C O L O R S PRINT VS MULTIMEDIA. Main Difference Print –Primary Colors CMYK Cyan, Magenta, Yellow, Black - Subtractive Color system –Add together = black.
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,
© 1999 Rochester Institute of Technology Color. Imaging Science Workshop for Teachers ©Chester F. Carlson Center for Imaging Science at RIT Color Images.
Colours and Computer Jimmy Lam The Hong Kong Polytechnic University.
Colour Wheel How to mix the colours you want!. Additive color refers to the mixing of colors of light. This example shows how the light from red, green.
Color Models. Color Vision The color-responsive chemicals in the cones are called cone pigments and are very similar to the chemicals in the rods. The.
25.2 The human eye The eye is the sensory organ used for vision.
Color Theory The art and science of color interaction and effects. SYSTEMS.
Color and Resolution Introduction to Digital Imaging.
Red, green and blue (RGB): RGB is another way to use 3 numbers to specify a color instead of using an intensity-distribution curve or HSB In addition.
Do Now: Do Not Log In. Take out your notebook and a pen. Good morning! Do Now: Do Not Log In. Take out your notebook and a pen. Good morning! Aim: Review.
Chapter 16 Light and Color  16.1 Properties and Sources of Light  16.2 Color and Vision  16.3 Photons and Atoms.
TOPIC 4.3 SNC2P. Lesson Goals Today we will learn that: colours of light can be added together to form a variety of colours through two investigations.
Digital Media Lecture 7: Color part 2 Georgia Gwinnett College School of Science and Technology Dr. Jim Rowan.
Color and Vision General Physics. Band of Visible Light ROYGBIV (Red, Orange, Yellow, Green, Blue, Indigo, Violet)
Ch 6 Color Image processing CS446 Instructor: Nada ALZaben.
COLOR THEORY Color is the eye’s response to the visual spectrum from red to violet. Different colors in the spectrum are created by different wavelengths.
PRIMARY COLOURS Primary Colours: The 3 primary colours are red, yellow and blue. They are three colours that can't be made by mixing any other colours,
Color & Light Benjamin Hammel image by refeia
COLOR.
Color Theory. Which colours is white light made of?
Light and Color There are 3 primary colors of light RED, GREEN, & BLUE
Ch Light II. Light and Color (p )  Light and Matter  Seeing Colors  Mixing Colors.
IPC Notes Light & Color. The colors of light that we see are the colors of light that an object reflects towards our eyes. ex) blue jeans absorb all colors.
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
Elements of Design 1.02 Investigate Design Principles and Elements.
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,
Color.
COLOR THEORY Color is the eye’s response to the visual spectrum from red to violet. Different colors in the spectrum are created by different wavelengths.
COLORCOLOR. The Color Spectrum The spread of colors from white light when passed through a prism or diffraction grating. –Red, Orange, Yellow, Green,
Color Mixing light. Misconceptions and problems Mixing light can get very confusing to many students because most have never done it. We have mixed pigments.
 There are 3 primary colors of light RED, GREEN, & BLUE  When these colors of light are mixed… White Light is produced  This process is called color.
Color Chapter 28. Color Lab What colors are formed by mixing different colors of light? Consensus:
Additive & Subtractive Digital Color
COLOR THEORY Color is the eye’s response to the visual spectrum from red to violet. Different colors in the spectrum are created by different wavelengths.
Design Concepts: Module A: The Science of Color
25.2 The human eye The eye is the sensory organ used for vision.
Image Processing CS177.
The Colour of Light: Additive colour theory.
Additive Colour Theory
Subtractive colour theory
Colour theory.
Why does a blue shirt look blue?
COMS 161 Introduction to Computing
Polarization Polarized light—light waves that vibrate in a single plane Polaroid filters block one plane of light waves.
LIGHT & COLOR.
Notes 22.3: Using Color.
How would you describe the color RED to a person who cannot see?
Color Combinations Design.
Investigation 21. 3: Subtractive Color Process
Colour Theories.
Additive and Subtractive Color
Colour theory.
Two ways to discuss color 1) Addition 2) Subtraction
Advanced AV Production
Ch Light II. Light and Color (p ) Light and Matter
Created for CVCA Physics by Dick Heckathorn 31 May 2K+4
Created for CVCA Physics by Dick Heckathorn 31 May 2K+4
Ch Light II. Light and Color (p ) Light and Matter
Presentation transcript:

Lecture 24: Color Announcements & Review Lab 7 Due Thursday 2 D arrays - embedding graphs in an array Computer Science Artifacts Abstraction Representations Algorithms sort, search, etc.

Lecture 24: Color Color Biology - what you see Subtractive primary colors –making colors from others on paper or mixing paint Additive primary colors –making colors from others on your computer or TV

Lecture 24: Color Subtractive Color Mixing In printing and painting RYB - Red Yellow Blue –The RYB model combines Red Yellow Blue to create other colors. –Mixing paints is an absorptive or subtraction process CMYB - Cyan Magenta Yellow Black

Lecture 24: Color Additive Color Mixing Screens - TV, computer, cell phone RGB - Red Green Blue –The RGB additive light model combines Red Green Blue to create other colors. –RGB are the three primary colors in additive light models. –The specific shades are unspecified (and devices implement them differently). – mple1.htmlhttp://mc2.cchem.berkeley.edu/Java/RGB/exa mple1.html

Lecture 24: Color Colors in Java Color constructor: Color(int r, int g, int b) –Each of these integers are between 0 and 255 Color myColor = new Color(100, 140, 180); int red = myColor.getRed(); int RGBvalue = myColor.getRGB(); awt/Color.html

Lecture 24: Color Java Examples in BlueJ Images as 2D arrays Playing with colors

Lecture 24: Color More Questions?