Convert matrix number into png image
이전 댓글 표시
Hello i'm new on package "Image Processing Toolbox". I have a matrix of number ( http://dl.dropbox.com/u/59868217/matlab.mat) obtained by this script ( http://dl.dropbox.com/u/59868217/show_im_GR.m) I would be able to convert an image to grayscale or black and white. Possibly in png format.
How can I do ?
채택된 답변
추가 답변 (1개)
Geppo Batt
2012년 4월 15일
0 개 추천
댓글 수: 5
Image Analyst
2012년 4월 15일
If you look at img in the variable editor, are the values all zero (completely black)? If they are, then how do you get that image with spots?
Geppo Batt
2012년 4월 16일
Image Analyst
2012년 4월 16일
I downloaded your mat file and tried it and it was fine. It read the .mat file fine, it displayed fine, and I could write it out and recall a PNG file fine. Here is my code. Does this work for you?
By the way, you should not save "ans" to the .mat file. This is matlab's default variable name. You should accept the output of your operation into some variable with a name and save that - don't just save "ans" itself.
s = load('matlab.mat')
image16 = s.ans;
minValue = min(image16(:))
maxValue = max(image16(:))
imshow(image16, []);
axis on;
impixelinfo;
% Save it out to a PNG file.
imwrite(image16, 'matlab.png');
% Recall the image from the PNG file.
i2=imread('matlab.png');
figure;
imshow(i2, []);
Geppo Batt
2012년 4월 17일
Image Analyst
2012년 4월 17일
I just called them to see if you had integer or floating point values and if they were in the range 0-255, 0-1, or something else. which might cause me to call mat2gray() or uint8().
카테고리
도움말 센터 및 File Exchange에서 Deep Learning for Image Processing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!