A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.

Slides:



Advertisements
Similar presentations
Unit 9 It's warm 清丰县第一实验小学 唐利娟.
Advertisements

What’s your favorite season?
Matlab Tutorial. Session 1 Basics, Filters, Color Space, Derivatives, Pyramids, Optical Flow Gonzalo Vaca-Castano.
Laboratory of Image Processing Pier Luigi Mazzeo
Chapter 14 Landsat 7 image of the retreating Malaspina Glacier, Alaska.
How Colors Affect Our Life Colors In Languages “Feeling Blue” “Seeing Red” “Green With Envy”
Thermal radiation Any object that is hot gives off light known as Thermal Radiation.  The hotter an object is, the more light it emits.  As the temperature.
© red ©
Review: color image in MATLAB
Color Fashion Design, Textiles & Merchandising. Color What things are more interesting with color?  Food  Television  ??? The human eye can see six.
Enjoy the Difference. Constellation cruiser was devolved from the company name sparx. The idea of glow in the dark car fits the name itself. Another important.
COLOURS.
Color. -Visual light -An integral part of the sculpture -Creates desired effect -Distinguish items -Strengthen interest.
A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.
1 © 2010 Cengage Learning Engineering. All Rights Reserved. 1 Introduction to Digital Image Processing with MATLAB ® Asia Edition McAndrew ‧ Wang ‧ Tseng.
Understanding Color.
Introduction to MATLAB
The Seasons in England..
Wiring –Basic light switch
Symbols. The suite of rooms could be an allegory of human life. Each room corresponds to a different "stage" of human life, which its color suggests.
Spring R. Smith - University of St Thomas - Minnesota QMCS 130: Today’s Class Final Exam – rest of class scheduleFinal Exam – rest of class schedule.
Van Gogh's World of Color. Red Where can you see the color red in this painting? Can you find all the sailboats?
Learning Objectives Students will identify the seven continents and major bodies of water on a world map. Students will color and label the seven continents.
CS112 Scientific Computation Department of Computer Science Wellesley College Numb3rs Number and image types.
Homework Assignment You are going to research any artist of your choosing from any time period or genre. You are going to complete a one page double- spaced.
A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.
A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.
Recap Plots with More than one Line Plots of Complex Arrays Line, Color and Mark Style Axis Scaling and Annotating Plots Subplots Polar Plots Logarithmic.
postman letter envelope postcard stamp address.
* Hello song th [θ] [ð] thin this thick that month weather.
Spring Colors Enter our Garden to see all of the beautiful flowers that bloom in the Spring time.
Seasons.
June 14, ‘99 COLORS IN MATLAB.
Wednesday, the fifteenth of March Class-work.
Mrs. Whalen’s Kindergarten Math Lesson #20: Seasons.
Computer Science 121 Scientific Computing Winter 2014 Chapter 14 Images.
It’s warm in spring. Module 6 Unit 1 赵 慧 Spring and autumn are very,very nice. Warm and cool ! They’re very nice. Summer and winter are not very.
GRAPHING RELATIONSHIPS For each graph, determine the graphing relationship and record it on a white board.
A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.
A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.
Color Element of Art.
Introduction to MATLAB Ehsan Adeli M. Iran University of Science and Technology, E-Learing Center, Fall 2008 (1387)
A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB.
Members : Belial, Daisy, Jessica, Cherry. Our school spring uniforms like "Chinese cabbage“ in the World Expo.It has green and white shirts, navy pants,
Precalculus Functions & Graphs Notes 2.4 Definition of Functions Purple Pink Red Green White Blue 1 $ Mapping or Correspondence DomainRange.
Half Toning Dithering RGB CMYK Models
SEASONS.
Images In Matlab.
Plotting Chapter 5.
Red, socks, yellow, jacket, coat, orange, skirt, black, hat, green, blue, jeans, brown, T-shirt, shoes, white, pink.
Watch Pete the Cat here:
Spring Summer Autumn Winter
A 2nd Grade PowerPoint Book By:
Colors.
Colors/Color Words.
SEASONS.
Average Number of Photons
- orange white green - cyan - red - blue Example 1 24 bit RGB
Chapter 13 Sights and Sounds.
Color Visualization in Matlab
Yang-Ming University, Taipei, Taiwan
What Color is it?.
Digital Image Processing
The first stage of vision
I can plant trees in spring.
Color Analysis Example
Season & Weather Unit 5 The four seasons.
A 2nd Grade PowerPoint Book By:
STEAM Survey.
- orange white green - cyan - red - blue Example 1 24 bit RGB
Presentation transcript:

A L I MAM M OHAMMAD B IN S AUD I SLAMIC U NIVERSITY C OLLEGE OF S CIENCES D EPARTMENT OF M ATHEMATICS MATLAB 251 : MATH SOFTWARE Introduction to MATLAB

4. Graphics in MATLAB 4.7 Color Maps  Matlab uses a matrix called colormap to color surfaces or images.  The colormap is a list of triplets corresponding To the intensities between 0 and 1 of the red, green and blue You can create your own colormaps or use any matlab predefined colormaps

I NTRODUCTION TO M ATLAB hsv hot gray bone copper pink white flag lines colorcube jet prism cool autumn spring winter summer hsv hot gray bone copper pink white flag lines colorcube jet prism cool autumn spring winter summer Carry out the following commands and observe >>peaks; >>colormap(gray(8)) >>m = gray(8); >>imagesc(colormap(m))

I NTRODUCTION TO M ATLAB 4.8 Specialized graphs

I NTRODUCTION TO M ATLAB >> t = [-2:2]’; >> y = [5 2 1; 8 7 3; 9 8 7; 5 5 5;4 3 2];

I NTRODUCTION TO M ATLAB >> bar(t,y) >> bar(t,y,’stack’)

I NTRODUCTION TO M ATLAB >> bar3(t,y) >> area(t,y)

I NTRODUCTION TO M ATLAB >> pie([ ]) >> hist(randn(1000,3))

I NTRODUCTION TO M ATLAB