Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name

Slides:



Advertisements
Similar presentations
Detecting and Mixing Colors STEM DIGITAL Institute Rob Snyder.
Advertisements

Color.
Using Your Classroom Projector to Demonstrate Properties of Light Dr. Michael Ottinger and Dr. Brian Bucklein Missouri Western State University St Joseph,
Light and Color. Light interacting with matter When light hits matter, at least one of three things can happen: – Reflection When light bounces off an.
Bits are Not just for Numbers Computers store characters as bits or binary digits. Characters from the English-language keyboard are represented in ASCII.
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-
CSc 461/561 CSc 461/561 Multimedia Systems Part A: 2. Image.
1 Internet Graphics. 2 Representing Images  Raster Image: Images consist of “dots” of color, not lines  Pixel: Picture element-tiny rectangle  Resolution:
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,
Co mputer Graphics Researched via: Student Name: Nathalie Gresseau Date:12/O7/1O.
COLORS & BACKGROUNDS CHAPTER 13. SPECIFYING COLORS Three common places where you specify color 1.Text color.box { color: blue; } 2.Background color.box.
Welcome Topic: Pixels A.M.Meshkatur Rahman Class: vii Roll: 07.
Why Objects Have Color Visible light is a combination of many wavelengths (colors), which give it a white appearance. When light hits an object certain.
Objective Understand concepts used to create digital graphics. Course Weight : 15% Part Three : Concepts of Digital Graphics.
Digital Terminology. Bitmap A representation consisting of rows and columns of dots of a graphic image stored in computer memory. To display a bitmap.
I-1 Steps of Image Generation –Create a model of the objects –Create a model for the illumination of the objects –Create an image (render) the result I.
Color and Resolution Introduction to Digital Imaging.
Color and Vision Key Question: How do we see color?
Lecture 15: Intro to Graphics Yoni Fridman 7/25/01 7/25/01.
Adobe Photoshop - Basic Terms. Pixel A pixel is a single dot of color information in a digital picture. Anything you see on your computer is comprised.
CSC Computing with Images
Chapter 16 Light and Color  16.1 Properties and Sources of Light  16.2 Color and Vision  16.3 Photons and Atoms.
Light & Color What happens to the light that strikes an object? What determines the color of opaque, transparent & translucent object? How is mixing pigments.
Light and color.
Light and Color Section 4. Light and Matter When light strikes any matter it can interact with matter in 3 different ways: It can be: reflected, absorbed.
Light and Color. Light interacting with matter When light hits matter, at least one of three things can happen: Reflection When light bounces off an object.
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
Digital & Interactive Media
Color.
Light and Color Light. When light strikes an object, the light can be reflected, transmitted, or absorbed. Think about a pair of sunglasses. What Determines.
PyGame - Unit 1 PyGame Unit – – Introduction to PyGame.
Light Into Video U7oOI.
Warm Up Where does all light come from? Do different colors of light have different intensities? If so, what color has the greatest intensity? When two.
Computer Graphic. Raster graphics In computer graphics, a raster graphics image, digital image, or bitmap, is a data structure representing a generally.
Multimedia and weBLOGging Grade 7-9 | Cahaya Bangsa Classical School (C) 2010 Digital Media Production Facility 03 - Still Picture 01 – Basics.
Unit 2.6 Data Representation Lesson 3 ‒ Images
Digital & Interactive Media
Warm Up Between Red or Blue light, which has a larger
LIGHT, COLOR, AND WAVE INTERACTION.
Color Mrs. Gergel.
Chapter 13 Colors & backgrounds.
Pixels, Colors and Shapes
Detecting and Mixing Colors STEM DIGITAL Institute
Image Processing CS177.
The Colour of Light: Additive colour theory.
Image Processing & Perception
EQ: How does light interact with matter?
Lesson One: The Beginning Chapter 1: Pixels Learning Processing Daniel Shiffman Presentation by Donald W. Smith Graphics from
Polarization Polarized light—light waves that vibrate in a single plane Polaroid filters block one plane of light waves.
18.1: Light Key concepts: What happens to the light that strikes an object? What determines the color of an opaque, transparent, or translucent object?
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Basic Graphics Drawing Shapes 1.
How would you describe the color RED to a person who cannot see?
Color Combinations Design.
Programming Graphic LCD
Ray model of light Travels in a straight line
Programming Graphic LCD
Two ways to discuss color 1) Addition 2) Subtraction
Retinal Fatigue images you only see in your head
Programming Graphic LCD
Programming Graphic LCD
Light Intro Video
Programming Graphic LCD
Programming Graphic LCD
Visible Light.
Non-numeric Data Representation
Chapter 3 – Light 3.1 Light and Color.
Ch Light II. Light and Color (p ) Light and Matter
Ch Light II. Light and Color (p ) Light and Matter
Light and Color Section 4.
Presentation transcript:

Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name How are images represented using digital data? Images

Rows and Columns of Pixels Rectangular grid of pixels Each pixel has one color, a mix of red, blue, & green Graphics card controls screen pixels Like all other digital data, an image is just a sequence of zeros and ones. These numbers record the color of each pixel, or "picture element." Each pixel is one dot in the picture. The screen also has pixels, and as you zoom in on an image, the color of the image pixel is shown on many screen pixels. Mathematical averages are sometimes used so that you don't see the image pixels.

Each pixel can use RGB All images are a rectangle of pixels Each pixel can combine red, green, and blue light If you look at the screen through a magnifying glass, you will see that each screen pixel contains three elements for emitting red, green, and blue light. This grid shows a close up of a small image, 3 pixels high and 10 pixels wide. You might be surprised to learn that every pixel in this image is white. Each pixel here would appear white because each pixel is shining red, green, and blue light.

All colors made from red, green, and blue Combining red, green, and blue light makes white light. Red and blue light combine to create magenta. Green and blue light combine to create cyan. Red and green combine to create yellow.

Three numbers specify a color Often use 0–255 for red, green, and blue RGB = (255, 255, 0) = red on, green on, blue off = yellow For each pixel, three numbers are used to represent the red, green, and blue intensities. (255, 255, 0) since the numbers for red and green are all the way "on" at 255 and the number for blue is all the way "off" at 0. Red and green combined are yellow.

Rows and Columns of RGB Pixels small: zoom: magnify: This grid shows a close up of a small image, 3 pixels high and 10 pixels wide, with pixels that are black, white, yellow, or magenta.

Each pixel can use RGBA The fourth number A lets an image be see-through RGBA = (255, 255, 255, 0) = red + blue + green and transparent RGBA = (255, 255, 255, 255) = red + blue + green and opaque Some images have a fourth number called the "alpha channel" for each pixel. This number indicates whether the image should be transparent. The white parallelogram shown on top of the giraffe is represented here. The image of the parallelogram is a rectangular grid, transparent in top left and bottom right corners. For creating apps, you might want to create sprites, which are images that can move around on a background image. Part of a sprite can be transparent. The sprite image is still a rectangle but can appear to have an irregular shape within the rectangle.