Query=> How to convert colour image into gray image using MATLAB?...
Ans=> To convert colour image into gray image we have to use the syntax “rgb2gray”...An example is given below for reference...
a=imread('peppers.png'); %reading an image
b=rgb2gray(a); %coverting to gray image
figure, %opening figure window
subplot(1,2,1),subimage(a);title(‘colour’); %display colour image
subplot(1,2,2),subimage(b);title(‘gray’); %display gray image
FOR MORE DETAILS
No comments:
Post a Comment