a = imread(‘picture.jpg’); imshow(a);

Slides:



Advertisements
Similar presentations
We Can Read About Mixing Colors
Advertisements

1/8 AND, OR and NOT b How many boys? b How many girls? b How many blue? b How many red?
Introduction to compositing. What is compositing?  The combination of two images to produce a single image  Many ways we can do this, especially in.
Color (1) Turtle class contains a method to change the pen color Note: before using Color class, you should add following line in the top of the source.
Chapter 6 Color Image Processing Chapter 6 Color Image Processing.
Learning Our Colors Mr. Bunny searches for eggs Primary Colors RED YELLOW BLUE.
Contains 16,777,216 Colors. My Car is red My Car is red How do I add colors to my web page? Notepad Browser Works with the “Standard” colors: Red, Green,
Mrs. Smith’s 7th Grade Reading Blue Class Mrs. Smith’s 7th Grade Reading Blue Class Mrs. Smith’s 7th Grade Reading Blue Class.
CIS 601 MATLAB First Impressions. MATLAB This introduction will give Some basic ideas Main advantages and drawbacks compared to other languages.
Introduction to MATLAB adapted from Dr. Rolf Lakaemper.
© 1999 Rochester Institute of Technology Color. Imaging Science Workshop for Teachers ©Chester F. Carlson Center for Imaging Science at RIT Color Images.
The Color Wheel Claire Heider The Primary Colors.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Hexadecimal Codes 1. RGB Color Wheel 2 Before we begin Hexadecimal is a number system Based on using 0 – F to represent 0 – 15 Hex is used to represent.
Digital Media Lecture 4.1: Image Encoding Practice Georgia Gwinnett College School of Science and Technology Dr. Jim Rowan.
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.
Introduction to MATLAB adapted from Dr. Rolf Lakaemper.
CIS 595 MATLAB First Impressions. MATLAB This introduction will give Some basic ideas Main advantages and drawbacks compared to other languages.
CMPS1371 Introduction to Computing for Engineers IMAGES.
FRACTIONS & SHAPES BY:. How many of these are colored red? * out of *.
CIS 601 Fall 2003 Introduction to MATLAB Longin Jan Latecki Based on the lectures of Rolf Lakaemper and David Young.
RGB lesson Mrs Ras. Open illustrator File > new change color mode to RGB.
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,
Color Distribution A block BrownYellowOrangeRedGreenBlue GreenYellowOrangeRedPurple M&M Skittles.
Digital Media Lecture 4.2: Image Encoding Practice Georgia Gwinnett College School of Science and Technology Dr. Jim Rowan.
An urn contains 1 green, 2 red, and 3 blue marbles. Draw two without replacement. 1/6 2/6 3/6 2/5 3/5 1/5 3/5 1/5 2/5 2/30 3/30 2/30 6/30 3/30 6/30.
= the matrix for T relative to the standard basis is a basis for R 2. B is the matrix for T relative to To find B, complete:
Scientific Notation. = 5.4 =3.47 Write the following in standard form A 1.8 X 10⁴ B 3.47 X 10⁷ C 4.3 X 10⁰ D 5.4 X 10⁻⁴ E 5 X 10⁻⁶ F (6 X 10⁴) (7 X 10⁵)
MATRICES. Matrix – Used to store numbers Dimensions: Row x Column (Each entry is called an element)
Image from
$200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200.
Matlab Tutorial.
COLORS.
Water Quality Image Analysis
Digital Media Lecture 4.1: Image Encoding Practice
Gouraud Shading with Bilinear Interpolation
Colors.
CS320n –Visual Programming
Introduction to MATLAB
Simulation And Modeling
An Overview of Image Matting
Light lesson 1 key concepts
Name: _______________________________
Game Controller Introduction.
Average Number of Photons
Colours.
Image Processing Results
- orange white green - cyan - red - blue Example 1 24 bit RGB
Gradient Type 1 Gradient stops: 5 Stop #: 1 Position: 0
Align The Stars Continue.
Align The Stars Continue.
Align The Stars Continue.
Can I color yellow?. Can I color yellow?
Here are four triangles. What do all of these triangles have in common
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.
REDUCING MATRICES.
12.4 p 471 a) double[] number = {1.05, 2.05, 3.05, 4.05, 5.05};
Linear Algebra Lecture 10.
What Color is it?.
Color Image Processing
Align The Stars Continue.
monochrome AgX material
Non-numeric Data Representation
What color is it ? By 林小玉.
Optical Illusions An optical illusion is characterized by visually perceived images that are deceptive or misleading. The information gathered by the eye.
Color Box Button - Gray Type : object Type : object Type : object
- orange white green - cyan - red - blue Example 1 24 bit RGB
Let’s Learn the Basic Colors
Understand Engage Monitor Consider - POWER + - INTEREST +
Presentation transcript:

a = imread(‘picture.jpg’); imshow(a); Images Loading an image: a = imread(‘picture.jpg’); imshow(a);

Images Image (=matrix) size: size(a): 384 512 3 R G B 384 512

Images Color image: 3D Matrix of RGB planes

Images Show RED plane: a(:,:,2:3) = 0; imshow(a);

Images Show GREEN plane: a(:,:,[1 3]) = 0; imshow(a);

Images Show BLUE plane: a(:,:,1:2) = 0; imshow(a);

Advanced: Shuffling columns Images Advanced: Shuffling columns rn = rand(1,512); [rn1,i] = sort(rn); b = a(:,i,:); imshow(b);

Images