Is Correct My Solutions

1 次查看(过去 30 天)
Nour George
Nour George 2020-6-29
I have this question :
1-Read an image.
2-Show that image.
3-Write the image to the disk by new name.
4-Show additional info about image.
5-How to get the size of that image.
6-What is the intensity value of the pixel located at position(4,7)?
*I solved the previous six questions, but Is the Solution is correct ?
figure
image_mat = rgb2gray(imread('Picture3.jpg')); % image_mat is simply a matrix
disp(image_mat(4, 7))
imshow(image_mat)

回答(1 个)

Image Analyst
Image Analyst 2020-6-29
No. Your solution here does not do what steps 1-6 ask. For example, it did not say to convert to gray scale in any of the 6 items. For step 3 I don't see any call to imwrite(). Also, step 4 does not explain what "additional info" is but you might call dir() or imfinfo() and see what those return. For step 5, I don't see where you called the size() or dir() function, depending on what they mean by "size", which can mean dimension lengths, or bytes on disk. Step 6 is pretty vague, like what does "what" mean? Does it want you to get the intensity and store it in a variable, or just display it with disp() or fprintf(), or what does it want if the image is color - convert to grayscale or give each color channel's intensities separately?
  3 个评论
Image Analyst
Image Analyst 2020-6-29
The "show" part of step 4 is missing. You can either leave off the semicolon or use fprintf()
fprintf('The file size is %d', information);
For step 5, you might want to do this
[rows, columns, numberOfColorChannels] = size(image_mat)
Nour George
Nour George 2020-6-29
编辑:Nour George 2020-6-29
thanks , and what about Question 6 ?
and The picture is colored, should I use rgb2gray()?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by