Info
此问题已关闭。 请重新打开它进行编辑或回答。
How do I convert g into a double then store it in a new variable then rescale the image with new values that range from 0 to 1 and then plot it?
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Image Analyst
2018-11-9
Try this:
g2 = mat2gray(g);
I don't know what it means to "plot" an image, but if you want to "display" it, use imshow():
imshow(g2, []);
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!