RGB TO GRAY ERROR
Ältere Kommentare anzeigen
x= 1:150;y=1:150;
[p,q]=freqspace(150);
[X,Y]=meshgrid(p,q);
R=(X.^2 + Y.^2);
Lambda=633*10^-9;
dis=10*10^-3;
F = (exp(i.*pi.*R))./(Lambda.*dis);
mesh(imag(F));
there is an ouput which i have to convert into gray image.
HOW to convert into gray image...i have an error
Map myst be m*3 matrix?
how will i do this?
6 Kommentare
Geoff Hayes
am 23 Aug. 2014
Tulika - which output are you converting into a gray image? Are you using the rgb2gray to convert the image from RGB to grayscale? Which line of code is generating the error (since all of the above code runs smoothly)?
Geoff Hayes
am 23 Aug. 2014
Tulika - how are you converting the output of the program to grayscale? What lines of code follow the above which ends with mesh(imag(F));?
TULIKA
am 23 Aug. 2014
Image Analyst
am 23 Aug. 2014
F is not a grayscale image! Is this not solved yet? Did you see my solution?
TULIKA
am 23 Aug. 2014
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 23 Aug. 2014
Bearbeitet: Image Analyst
am 23 Aug. 2014
TULIKA, I know you already accepted an answer, so maybe you don't need my answer anymore, but I had this already to post and then I got to watching a movie and didn't post it until now. Well, for whatever it's worth, here it is. If it helps in any way, maybe you can vote for it:
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 13;
x= 1:150;y=1:150;
[p,q]=freqspace(150);
[X,Y]=meshgrid(p,q);
R=(X.^2 + Y.^2);
Lambda=633*10^-9;
dis=10*10^-3;
F = (exp(i.*pi.*R))./(Lambda.*dis);
% Convert into a gray scale image and display it as a mesh.
subplot(1, 3, 1);
grayImage = imag(F); % Gray scale image = imaginary part.
mesh(grayImage);
axis square
title('Grayscale Image', 'FontSize', fontSize);
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
% Display grayscale image.
subplot(1, 3, 2);
imshow(grayImage, []);
title('Grayscale Image', 'FontSize', fontSize);
colormap(gray(256));
colorbar;
% Convert into a color image, just for fun
rgbImage = ind2rgb(uint8(255*mat2gray(grayImage)), jet(256));
subplot(1, 3, 3);
imshow(rgbImage, []);
title('RGB Image', 'FontSize', fontSize);

6 Kommentare
Image Analyst
am 23 Aug. 2014
You forgot to attach image.jpg, so I can't read in the badly-named "A". Can you just use a standard demo image like peppers.png or something?
TULIKA
am 23 Aug. 2014
Image Analyst
am 23 Aug. 2014
You're basically convolving that image with itself, which is an autocorrelation, so you should see a spike at the middle, followed by a rapid fall off. Of course the second half of your code has nothing to do with the first half of your code. What are you attempting to achieve? Perhaps you should start a new discussion if we're going to be talking about new topics of convolution or autocorrelation or spatial filtering, as you've already marked this one as Accepted and many people may not bother to look anymore.
TULIKA
am 23 Aug. 2014
Kategorien
Mehr zu Blue finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

