Visuals are analog signals...

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

Bit Depth and Spatial Resolution SIMG-201 Survey of Imaging Science © 2002 CIS/RIT.
Color Mixing There are two ways to control how much red, green, and blue light reaches the eye: “Additive Mixing” Starting with black, the right amount.
Bits are Not just for Numbers or Characters Computers store characters as bits or binary digits. Characters from the English-language keyboard can be represented.
Bits are Not just for Numbers Computers store characters as bits or binary digits. Characters from the English-language keyboard are represented in ASCII.
CSC Computing with Images1 Image encodings CSC 1040.
Bitmapped Images 27 th November 2014 With Mrs
ICS 61 - Graphics. Light Color Wheel Color Perception.
Bitmapped Images. Bitmap Images Today’s Objectives Identify characteristics of bitmap images Resolution, bit depth, color mode, pixels Determine the most.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Storing Graphics EXTENSION.
COMP Bitmapped and Vector Graphics Pages Using Qwizdom.
© 1999 Rochester Institute of Technology Color. Imaging Science Workshop for Teachers ©Chester F. Carlson Center for Imaging Science at RIT Color Images.
Lab #5-6 Follow-Up: More Python; Images Images ● A signal (e.g. sound, temperature infrared sensor reading) is a single (one- dimensional) quantity that.
TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach.
07: Color in Interactive Digital Media
Objective Understand concepts used to create digital graphics. Course Weight : 15% Part Three : Concepts of Digital Graphics.
COSC 1P02 Intro. to Computer Science 6.1 Cosc 1P02 Week 6 Lecture slides "To succeed, jump as quickly at opportunities as you do at conclusions." --Benjamin.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
© 1999 Rochester Institute of Technology Introduction to Digital Imaging.
Images The Science of Images What is an Image on the computer? The Psychology of Images What do we use images for? What effect color has on our mood and.
CSC Computing with Images
1 COMS 161 Introduction to Computing Title: Digital Images Date: November 12, 2004 Lecture Number: 32.
Intelligent Vision Systems Image Geometry and Acquisition ENT 496 Ms. HEMA C.R. Lecture 2.
BPC: Art and Computation – Summer 2007 Digital Media - Images Glenn Bresnahan
Chapter 1. Introduction. Goals of Image Processing “One picture is worth more than a thousand words” 1.Improvement of pictorial information for human.
Digital Media Lecture 4.1: Image Encoding Practice Georgia Gwinnett College School of Science and Technology Dr. Jim Rowan.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
Digital Imaging Fundamentals Ms. Hema C.R. School of Mechatronic Engineering.
Why a bitmap (.bmp), not a.jpg? If you cannot save a.bmp, make it an uncompressed.tif. Compression (of this 8-bit 397,000 pixel image): none (397kb memory)medium.
Color Web Design Professor Frank. Color Displays Based on cathode ray tubes (CRTs) or back- lighted flat-screen Monitors transmit light - displays use.
The Digital Revolution Changing information. What is Digital?  Discrete values used for  Input  Processing  Transmission  Storage  Display  Derived.
Intelligent Vision Systems Image Geometry and Acquisition ENT 496 Ms. HEMA C.R. Lecture 2.
TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach.
Digital Media Lecture 4.2: Image Encoding Practice Georgia Gwinnett College School of Science and Technology Dr. Jim Rowan.
Computer Graphic. Raster graphics In computer graphics, a raster graphics image, digital image, or bitmap, is a data structure representing a generally.
DISPLAY DEVICES CIS 10, Group #1 April 01, 2006 C. X. A. L. K. H. A. V. ((( L. C.
Computer Systems Nat 5 Computing Science Data Representation
Unit 2.6 Data Representation Lesson 3 ‒ Images
ITEC2110, Digital Media Chapter 1 Background & Fundamentals
DIGITAL MEDIA FOUNDATIONS
Computer Graphics: An Introduction
Images Data Representation.
Graphics 1 Graphics 2 Color 2 I Spy 1pt 1 pt 1 pt 1pt 1 pt 2 pt 2 pt
Data Representation Images.
Image Processing Objectives To understand pixel based image processing
Everything is a number Everything in a computer memory and on storages is a number. Number  Number Characters  Number by ASCII code Sounds  Number.
Sampling, Quantization, Color Models & Indexed Color
Binary Representation in Audio and Images
Pixel, Resolution, Image Size
Introduction to Electromagnetic waves, Light, and color
Digital Media Lecture 4.1: Image Encoding Practice
Compression (of this 8-bit 397,000 pixel image):
DIP 9 65 Original 210 Eye Zoomed.
College of Civil Engeneering, B407
Chapter I Digital Imaging Fundamentals
LET’S LEARN ABOUT GRAPHICS!
CS 115: Computing for The Socio-Techno Web
Representing Images 2.6 – Data Representation.
Summer Term Year 10 Slides
Light Light has wave-like properties
COMS 161 Introduction to Computing
About Color.
Dr. Jim Rowan ITEC 2110 Chapter 3
Digital Image Processing
Multimedia System Image
Computer Systems Nat 4.5 Computing Science Data Representation
Basic Concepts of Digital Imaging
Non-numeric Data Representation
WJEC GCSE Computer Science
Presentation transcript:

Visuals are analog signals...

Digitization Like sound, images are encoded through digitization. This involves two steps: Sampling Quantization Based on your knowledge of these two processes, explain how images are digitized.

let's digitize this visual

we'll use a grayscale digitizer

we sample the visual

we can take more samples

or even more

then we quantize the image

then we quantize the image

which makes it easy to digitize 189 100 135 230 244 49 5 10 127 243 77 85 70 150 221 which makes it easy to digitize

Light Light has wave-like properties Colors correspond to different wavelengths of light

The eye Eyes are very complex, but respond to light waves Rods cannot distinguish color, but allow you to see at night Cones respond to different wavelengths of light

Different cones respond to... Red Light Green Light Blue Light

RGB The RGB color model is commonly used to represent colors digitally Mixing different quantities of Red, Green and Blue light allows you to produce any visible colors

Digitization Resolution (number of samples) -- number of rows of pixels by the number of columns of pixels Color Depth (number of bits per quantization level) -- number of bits stored per pixel (8 bit, 16 bit, 32 bit)

Resolution 244 243 230 242 255 Resolution: 6 x 4

Color-Depth RGB colors are stored as a bit-strings Each bit-string has 1 byte each for red, green and blue So, usually, the color-depth on a computer is 24 bits. There are 256 possible bit-strings associated with a byte, so R,G, and B each have 256 different possible values 1

Bitmap Graphics Bitmap graphics (or raster graphics), are data structures representing a generally rectangular grid of pixels, or points of color, viewable via a monitor, paper, or other display medium. Bitmap images are stored in image files with varying formats. source: Wikipedia

Exercises 1.  How many pixels are stored in a bitmap image with a resolution of 200x300, 500x500, 1024x768, 800x600, 5000x10000? 2.  For each of the images above, calculate the file size for each of the following color-depths: 8, 16, 24, 32, 64. 3. A bitmapped image has a file size of 2.25 MB.  If it has a resolution of 1024x768, what is the color depth?