how to superimpose the image of retina?
3 views (last 30 days)
Show older comments
Farah Nadiah
on 29 Mar 2016
Commented: Farah Nadiah
on 29 Mar 2016
how can i superimpose the image...
this is my gray image
this is my binary image
thnx :)
0 Comments
Accepted Answer
Image Analyst
on 29 Mar 2016
See these examples/instructions from the Mathworks:
3 Comments
Image Analyst
on 29 Mar 2016
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, []);
More Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!