how to superimpose the image of retina?

1 view (last 30 days)
how can i superimpose the image...
this is my gray image
this is my binary image
thnx :)

Accepted Answer

Image Analyst
Image Analyst on 29 Mar 2016
  3 Comments
Image Analyst
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, []);
Farah Nadiah
Farah Nadiah on 29 Mar 2016
if i get this image how can i change the red to black color.. thanx :) </matlabcentral/answers/uploaded_files/48688/sp2.jpg>

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!