how to superimpose the image of retina?
3 次查看(过去 30 天)
显示 更早的评论
how can i superimpose the image...
this is my gray image
this is my binary image
thnx :)
0 个评论
采纳的回答
Image Analyst
2016-3-29
See these examples/instructions from the Mathworks:
3 个评论
Image Analyst
2016-3-29
If you want the white in your binary image to become black in your gray scale image, do this:
grayImage(binaryImage) = 0; % Erase where binary image is white.
imshow(grayImage, []);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!