Color Visualization in Matlab

Slides:



Advertisements
Similar presentations
13- 1 Chapter 13: Color Processing 。 Color: An important descriptor of the world 。 The world is itself colorless 。 Color is caused by the vision system.
Advertisements

Laboratory of Image Processing Pier Luigi Mazzeo
CGA 115 Professor Mary A. Malinconico. Questions from Last Week ????????
Fundamentals of Digital Imaging
W14D1. Multimedia Representation of colour (photos, videos) Representation of sound. Comp.Sci. questions: what is colour? how can computers capture &
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.
Skills: selecting colors, specifying colors in HTML Concepts: combining red, green and blue light to generate colors, combining light versus combining.
Multi-media Graphics JOUR 205 Color Models & Color Space 5 ways of specifying colors.
© 2002 by Yu Hen Hu 1 ECE533 Digital Image Processing Color Imaging.
Color.
Color Models AM Radio FM Radio + TV Microwave Infrared Ultraviolet Visible.
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.
Jump to first page Color systems in cartography. Pre- publishing process and publishing maps and cartographic products. T. Bandrova Department of photogrammetry.
Version 1.0, 30 June 2004 APPLICATIONS OF METEOSAT SECOND GENERATION (MSG) RGB IMAGES: PART 02 INTRODUCTION TO RGB COLOURS Author:Jochen Kerkmann (EUMETSAT)
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.
Color Image Processing A spectrum of possibilities…
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.
1 © 2010 Cengage Learning Engineering. All Rights Reserved. 1 Introduction to Digital Image Processing with MATLAB ® Asia Edition McAndrew ‧ Wang ‧ Tseng.
What are the five colors in the legend? Enter the information below (5 points) 0000FF = = FFFFFF = 00FF00 = FF0000 = Color Theory Legend: income.
Lithological and Structural Mapping Using Satellite Data Mohamed Abdelsalam Missouri S&T.
Digital Media Lecture 7: Color part 2 Georgia Gwinnett College School of Science and Technology Dr. Jim Rowan.
W2D1. HSV colour model Source: Primary colours Red Green Blue Secondary Cyan Magenta.
Digital Image Processing In The Name Of God Digital Image Processing Lecture6: Color Image Processing M. Ghelich Oghli By: M. Ghelich Oghli
Color Web Design Professor Frank. Color Displays Based on cathode ray tubes (CRTs) or back- lighted flat-screen Monitors transmit light - displays use.
Elements of Design 1.02 Investigate Design Principles and Elements.
June 14, ‘99 COLORS IN MATLAB.
Zack Nemes By: Clemence Larroche. To track and follow a car as it travels along a path.
Colour Display Techniques
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,
4. Value & Color Motion is a kind of change, and change takes place in time. Motion can be implied, as well as literal.
Image credit: Wikipedia (Fovea) Human Eye Some interesting facts – Rod cells: requires only low light b/w vision blur, all over retina EXCEPT fovea – Cone.
Computer Graphic. Raster graphics In computer graphics, a raster graphics image, digital image, or bitmap, is a data structure representing a generally.
1 of 32 Computer Graphics Color. 2 of 32 Basics Of Color elements of color:
Sensing Colors. B G Color Digital Image R Red sensor Green sensor Blue sensor.
COMPUTER GRAPHICS CS 482 – FALL 2016 CHAPTER 28 COLOR COLOR PERCEPTION CHROMATICITY COLOR MODELS COLOR INTERPOLATION.
Colour CPSC Colour ● Models ● RGB ● CMY(K) ● HSB (or HSV) ● RYB ● Harmonies ● Monochrome ● Complementary ● Analogous ● Triadic.
ITEC2110, Digital Media Chapter 2 Fundamentals of Digital Imaging
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Half Toning Dithering RGB CMYK Models
IMAGE PROCESSING COLOR IMAGE PROCESSING
Sampling, Quantization, Color Models & Indexed Color
Color Image Processing
Color Image Processing
The Colour of Light: Additive colour theory.
Images In Matlab.
ივანე ჯავახიშვილის სახელობის
Color on Remotely Sensed Imagery
Color Image Processing
CITA 342 Section 7 Working with Color.
Color Image Representation
COMS 161 Introduction to Computing
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Color Modes Photoshop.
Computer Graphics Using “Adobe Photoshop”
Color Image Processing
Colour Theories.
1. Describe the rule for the translation below.
Two ways to discuss color 1) Addition 2) Subtraction
Communication of Color
Images Presentation Name Course Name Unit # – Lesson #.# – Lesson Name
Color Image Processing
Color and Polarization
Color Models l Ultraviolet Infrared 10 Microwave 10
CSSE463: Image Recognition Day 2
Basic Concepts of Digital Imaging
monochrome AgX material
CSSE463: Image Recognition Day 2
METEOSAT SECOND GENERATION (MSG) INTRODUCTION TO RGB COLOURS
Presentation transcript:

Color Visualization in Matlab Announcement: We do not have class in Wednesday (11/20) . You will work on the project III and bring questions to Friday’s class. In Friday’s class, we will schedule your presentation for choices either Monday (11/25) or Wednesday (11/27). Monday, 11/18/2002

Visualization of FEM Results Pixel: The smallest image-forming unit of a video display. Displacement field

Create a Figure Window figure(‘Position’,[left,bottom,width,height])

Example

Additive Color

RGB Color Model [red,green,blue] [0,1,0] [0,1,1] [1,1,1] [1,1,0] [0,0,1] [1,0,1] [1,0,0]

Color Cube

Example ny=60; nx=20; figure ('Position', [100, 100, ny, nx*3]); colormap([1 0 0; 0 1 0; 0 0 1]) imageMatrix = [ones(nx,ny) ones(nx,ny)*2 ones(nx,ny)*3]; image(imageMatrix) axis equal off ny Example nx

Hue-Saturation-Value colormap HSV is used in conjunction with colormap to specify a colormap which varies the hue component of the hue-saturation-value color model. The colors begin with red, pass through yellow, green, cyan, blue, magenta, and return to red. The map is particularly appropriate for displaying periodic functions.

HSV Color Example figure ('Position', [100, 100, 256, 50]); colormap(hsv(256)); imageMatrix = zeros(50,256); for ix=1:50 for iy=1:256 imageMatrix(ix,iy) = iy; end image(imageMatrix) axis equal off

Understanding Colormaps

Color Assignment

Mapping Rule

Visualization of FEM Results