Image Processing in MATLAB Tutorial 1: Acquisition and Display
This tutorial introduces the image processing toolbox in MATLAB, focusing on acquiring and displaying images as the first step in image analysis.

The Motivated Engineer
112.8K views • Mar 10, 2015

About this video
Image Processing in MATLAB Tutorial 1 - Acquisition and Display
This is a tutorial series on the image processing toolbox on MATLAB. It mainly aims at demonstrating the functions in an easy and understandable. To watch other videos in this playlist, visit: https://www.youtube.com/playlist?list=PLmcMMZCV897oO5k7pfz23XkzXnCdcKbvn
In this video, we cover the basics of image acquisition, display, basic operations and how we can store a processed image onto the hard drive.
Code:
a = imread(‘color.jpg’);
imshow(a);
imtool(a)
b = imcrop(a, [100 100 100 100]);
imshow(b)
c = imresize(a, 0.5);
imshow(c)
d = imrotate(a,75);
subplot(2,2,1), imshow(a), subplot(2,2,2), imshow(b), subplot(2,2,3), imshow(c), subplot(2,2,4), imshow(d)
imwrite(d,’rotate.png’,’png’);
gray = rgb2gray(a);
imshow(gray);
imhist(gray);
b = imadjust(gray);
imshow(b);
c = histeq(d);
imshow(c);
d = im2bw(c);
imshow(d);
By: Surya Penmetsa
This is a tutorial series on the image processing toolbox on MATLAB. It mainly aims at demonstrating the functions in an easy and understandable. To watch other videos in this playlist, visit: https://www.youtube.com/playlist?list=PLmcMMZCV897oO5k7pfz23XkzXnCdcKbvn
In this video, we cover the basics of image acquisition, display, basic operations and how we can store a processed image onto the hard drive.
Code:
a = imread(‘color.jpg’);
imshow(a);
imtool(a)
b = imcrop(a, [100 100 100 100]);
imshow(b)
c = imresize(a, 0.5);
imshow(c)
d = imrotate(a,75);
subplot(2,2,1), imshow(a), subplot(2,2,2), imshow(b), subplot(2,2,3), imshow(c), subplot(2,2,4), imshow(d)
imwrite(d,’rotate.png’,’png’);
gray = rgb2gray(a);
imshow(gray);
imhist(gray);
b = imadjust(gray);
imshow(b);
c = histeq(d);
imshow(c);
d = im2bw(c);
imshow(d);
By: Surya Penmetsa
Tags and Topics
Browse our collection to discover more content in these categories.
Video Information
Views
112.8K
Likes
660
Duration
7:33
Published
Mar 10, 2015
User Reviews
4.2
(22)