Image Processing CS177.

Slides:



Advertisements
Similar presentations
L.Ghadah R. Hadba CT1514-L1.  Computer Graphics :refers to processing of creating a new image from Geometry, Lighting parameters, Materials and Textures.Using.
Advertisements

CSE111: Great Ideas in Computer Science Dr. Carl Alphonce 219 Bell Hall Office hours: M-F 11:00-11:
Multi-media Graphics JOUR 205 Color Models & Color Space 5 ways of specifying colors.
Image Representation.
1 Perception. 2 “The consciousness or awareness of objects or other data through the medium of the senses.”
Colors – part 3 K1066BI – Graphical Design Teppo Räisänen
Color Model AbdelRahman Abu_absah Teacher: Dr. Sana'a Alsayegh.
Digital Colour Theory. What is colour theory? It is the theory behind colour mixing and colour combination.
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,
Digital Images Chapter 8, Exploring the Digital Domain.
CS 101 – Sept. 16 Finish color representation –RGB √ –CMY –HSB –Indexed color Chapter 4 – how computers think –Begin with basic building blocks.
Digital Terminology. Bitmap A representation consisting of rows and columns of dots of a graphic image stored in computer memory. To display a bitmap.
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
Design Visualization and Character Development Artistic Rendering Using Illustration Software.
Color and Resolution Introduction to Digital Imaging.
Jeopardy Heading1Heading2Heading3Heading4 Heading5 Q $100 Q $200 Q $300 Q $400 Q $500 Q $100 Q $200 Q $300 Q $400 Q $500 Final Jeopardy.
CSC Computing with Images
Image Representation. Digital Cameras Scanned Film & Photographs Digitized TV Signals Computer Graphics Radar & Sonar Medical Imaging Devices (X-Ray,
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.
ADOBE PHOTOSHOP VECTOR VS RASTER. Pixel A pixel is the fundamental unit of an image in Photoshop. It is a small square block of color. An image often.
Teacher Resources  Chapter 14 Color Teaching Transparency —Ch 14.2a Ch 14.2bCh 14.2aCh 14.2b  Laboratory Black line Masters Laboratory Black line Masters.
Computer Graphics An Introduction Jimmy Lam The Hong Kong Polytechnic University.
Ch 6 Color Image processing CS446 Instructor: Nada ALZaben.
By: Ashley. Spot Color Spot color refers to the process of selecting text or a graphic object such as a circle and then adding a spot of color to it.
Lecture 24: Color Announcements & Review Lab 7 Due Thursday 2 D arrays - embedding graphs in an array Computer Science Artifacts Abstraction Representations.
Light and Color There are 3 primary colors of light RED, GREEN, & BLUE
Colors of Pigment The primary colors of pigment are magenta, cyan, and yellow. [
Elements of Design 1.02 Investigate Design Principles and Elements.
The Web. Web Servers and File Transfer Protocol (FTP)
RGB vs. CMYK Screen vs. Print.
Different frequencies of “visible light”
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,
4. Value & Color Motion is a kind of change, and change takes place in time. Motion can be implied, as well as literal.
Chapter 3 Color Objectives Identify the color systems and resolution Clarify category of colors.
 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.
UNITS OF MEASUREMENT 2.01 Understand Digital Raster Graphics.
Colour CPSC Colour ● Models ● RGB ● CMY(K) ● HSB (or HSV) ● RYB ● Harmonies ● Monochrome ● Complementary ● Analogous ● Triadic.
Representation of image data
DIGITAL MEDIA FOUNDATIONS
Sampling, Quantization, Color Models & Indexed Color
The Colour of Light: Additive colour theory.
Colour theory.
Introduction To Photo Editing SHIELA MAE A. AQUINO SRNHS.
Viewing Graphics.
DIP 9 65 Original 210 Eye Zoomed.
Week 13 - Monday CS 121.
ورشة عمل : لنفبرك معاً! تقديم : مها عبوش.
Notes 22.3: Using Color.
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Information in Computers
CS320n –Visual Programming
Color Combinations Design.
Colour Theories.
CSE 113 A January 26 – 30, 2009.
Two ways to discuss color 1) Addition 2) Subtraction
Nuts and Bolts of Digital Imaging
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Colors Computers build colors from Red, Green, and Blue; not Red, Blue, and Yellow. RGB = Red Green Blue Creating Colors Red + Blue = Purple No Red, No.
HTML Colour Codes (Hexadecimal)
What Color is it?.
January 26 – 30, 2009 CSE 113 B.
CS 177 Week 3 Recitation Slides
Basic Concepts of Digital Imaging
timo. fi (59003) www. biocenter
Non-numeric Data Representation
Chapter 3 – Light 3.1 Light and Color.
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:

Image Processing CS177

Announcements Project 5 due next week Next week's recitation will be review for final exam Extra columns on blackboard to show average in projects, labs and exams Sample exam will be posted by Monday

Questions?

Color System RGB : colors are made using combination of Red, Green and Blue Widely used for electronic screens CMYK : subtractive system in which colors are made using combination of Cyan, Magenta, Yellow and Key (Black) Used in printers as the default paper color is white

Color Class It uses RGB model – hence requires mixture of RGB to make final color Color c = new Color(r, g, b); r, g, b is quantity of colors Red, Green and Blue respectively 0<=r, g, b<=255 To get a particular component of a color, use getRed(), getGreen() or getBlue() method

Picture Class Provides a way to deal with .jpg and .png files as a 2D array It creates and saves only .jpg and .png files. Other formats are not acceptable In get(int i, int j) and set(int i, int j, Color c), 'i' is column and 'j' is row number of the pixel

Merge two images of same size Picture picture1 = new Picture( file1 ); Picture picture2 = new Picture( file2 ); int w = picture1.width(); int h = picture1.height(); Picture merged = new Picture(w,h); for( int i = 0; i < w; i++ ) for( int j = 0; j < h; j++ ) { int r = picture1.get(i, j).getRed() + opacity * picture2.get(i, j).getRed() / 100; //same for green and blue //what is wrong here? merged.set(i,j,new Color(r, g, b)); }

Questions