0% found this document useful (0 votes)
104 views

Image Representation in MATLAB - How To Represent Binary, Grayscale & Color Images

This document discusses representing and working with different types of images in MATLAB. It describes binary, grayscale, and color images and how they are represented as matrices in MATLAB. Functions like imread() and imshow() are introduced for reading images into MATLAB and displaying them. Creating M-files and using comments in MATLAB is also briefly covered.

Uploaded by

Tanveer Ul Haq
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
104 views

Image Representation in MATLAB - How To Represent Binary, Grayscale & Color Images

This document discusses representing and working with different types of images in MATLAB. It describes binary, grayscale, and color images and how they are represented as matrices in MATLAB. Functions like imread() and imshow() are introduced for reading images into MATLAB and displaying them. Creating M-files and using comments in MATLAB is also briefly covered.

Uploaded by

Tanveer Ul Haq
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Image Representation in MATLAB – How to Represent Binary,Grayscale & Color Images

Avaneet Ranjan October 23, 2013 1 Comment

In this article, we are going to talk about images, their types and some basic functions for Images. This
article is part of our MATLAB tutorial series, which we are developing for Image processing through
MATLAB. We expect you to give us feedback, so that we can keep the information flow more efficient,
informative and up to the mark. In the first chapter, you have learned an introduction to MATLAB and its
commands. In this chapter you will learn how to represent different types of images in MATLAB. In
addition you will learn how to read & display images in MATLAB and how to create an M file.

Taking Up Images

Technically whatever we categorize as a picture, is an Image. We already talked about the basics of
Image processing in our first article, we would focus today on technical representation of images.

Different Types of Images

Binary Image: An image that consists of only black and white pixels. Technically these types of images
are called as Black and White Image. (Although it makes me sad to break my reader’s heart but till now
what you called black and white images have some other technical name).

Grayscale Image: In daily language what we refer to as black-and-white (as in old photos) are
actually grayscale. It contains intensity values ranging from a minimum (depicting absolute black) to a
maximum (depicting absolute white) and in between varying shades of gray. Typically, this range is
between 0 and 255.

Color Image: We all have seen this! Such an image is composed of the three primary colors, Red, Green
and Blue, hence also called an RGB image.

How to represent binary image in MATLAB

Binary Image
How to represent grayscale image in MATLAB

Grayscale Image

How to represent color image in MATLAB

Color Image

RGB value: All colors which we see around us can be made by adding red, blue and green
components in varying proportions. Hence, any color of the world can uniquely be described by its RGB
value, which stands for Red, Blue and Green values. This triplet has each value ranging from 0 to 255,
with 0 obviously meaning no component of that particular color and 255 meaning full component.
For example, pure red color has RGB value [255 0 0], pure white has [255 255 255], pure black has [0 0
0] and has RGB value [55 162 170].

Representation of an Image in MATLAB

An image in MATLAB is stored as a 2D matrix (of size mxn) where each element of the matrix
represents the intensity of light/color of that particular pixel. Hence, for a binary image, the value of
each element of the matrix is either 0 or 1 and for a grayscale image each value lies between 0 and 255.
A color image is stored as an mxnx3 matrix where each element is the RGB value of that particular pixel
(hence it’s a 3D matrix). You can consider it as three 2D matrices for red, green and blue intensities.

Reading and Displaying Images

imread(): To read an image and store in a matrix.

Syntax: IM=imread(‘filename’)

where IM is a matrix. If the file is in the current directory (as described above), then you only need to
write the filename, else you need to write the complete path. Filename should be with extension (.jpg,
.bmp,..). There are some default images of MATLAB like ‘peppers.png’, ‘cameraman.tif’, etc. You can try
reading them as

>>im=imread(‘peppers.png’);
It is always advised to use a semi-colon (;) at the end of the statement of reading an image,
otherwise… you can try yourself what happens!

imshow(): Displays the image. Syntax:

imshow(‘filename’)

or imshow(im)

Example:-

>>imshow(‘cameraman.tif’);

OK, now let’s make our own image, try this:

>>a(1,1)=0;

>>for i=1:200; for j=1:200

a(i+1,j+1)=1-a(i,j);

end end

>>imshow(a);
You try out making many different types of images like this just to make yourself comfortable with the
commands learnt till now.

Data cursor: To see the values of the colors in the figure window, go to Tools>Data Cursor (or select
from the toolbar), and click over any point in the image. You can see the RGB values of the pixel at
location (X,Y).

Image representation in MATLAB

A better option of data cursor is the function imtool(). Type the following

>>imtool(‘peppers.png’);

And see the pixel info on lower left corner as you move mouse pointer over different pixels.

Now, before we move on to our next article, we take a little detour in this article and talk about some
MATLAB resources which will be extensively be used in coming article.

Making M Files & Functions in MATLAB

It is a provision in MATLAB where you can execute multiple commands using a single statement. Here
the group of commands is stored as a MATLAB file (extension .m).

M Files in MATLAB - How to create & save an M File in Matlab

Here we have saved the m-file by the name “test.m”. Now as you type

>>test

And in MATLAB command window, all the above commands will execute.
Comments: As we have comments in C/C++/ Java using double slash (//), in MATLAB we use symbol %
to write comments, i.e., statements that are not considered for execution. You can see comments
in green in the snapshot above.With the invention of Logic gates, we can design electronic circuits that
can simply work as a calculator to high end devices that can be even used for scientific purposes. Earlier
only humans could add and subtract numbers. But with the applications of Boolean gates like Adders,
Subtractors, Counters and so on it is possible to create almost any logic.

With this post, we are going to help you and thus understand better, the logic behind using gates. The
steps are simple and creative. But for the implementation requires a relay and a 6 volt battery. The very
first implementation of Boolean gates also included relays. But the technology has gone far beyond that
they have been replaced by sub-microscopic transistors etched onto silicon chips. Relays consume some
amount of power, and they are bigger in size. But the transistors used these days are microscopic and
are faster than relays. They also consume very less power when compared to a relay.

But you will get a clear idea about the working by using relays. They are also practically very simple to
use. All you need to know is know the basics of gates and their truth table. Enter the input values and
take the output values.

To know more about setting up a relay, and it’s working take a look at this link.

TAKE A LOOK : WORKING OF RELAYS

As we know there are only two states for a Gate – a HIGH state and a LOW state. In a relay, these states
will be represented by two voltages. The HIGH state is represented by 6 volts and the LOW state to be 0
volts. A 6 volt battery is required to power up the circuit.

NOT Gate

Take a look at the picture below to get a clear idea on how a NOT Gate is implemented. From the circuit
it is clear that when you apply 6 volts to A, you get 0 volts in Q and when you apply 0 volts to A you get 6
volts in Q.

NOT GATE Implementation

NOT GATE Implementation


AND Gate

As an AND bit requires a minimum of 2 inputs, two relays will be needed. The figure is shown below.

AND GATE Implementation

AND GATE Implementation

From the figure it is clear that if 6 volts it applied to both A and B, you get the output Q=6 volts. For any
other combination of A and B, the output will be 0 volts. The same circuit can be changed into an OR
Gate by hooking two wires for A and B together. You can also use two relays in parallel.

You can also make the circuit fancier by reading the outputs on bulbs. That is, when a HIGH state occurs,
LIGHT = ON. When a LOW state occurs, LIGHT = OFF.

Thus the three basic Gates NOT, AND and OR can be implemented easily.

With the help of the basics above you can easily implement 8-bit ripple carry adders and so on. All these
basics are also the basics for the working of computers.

You might also like