how to superimpose the image of retina?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Farah Nadiah
am 29 Mär. 2016
Kommentiert: Farah Nadiah
am 29 Mär. 2016
how can i superimpose the image...
this is my gray image

this is my binary image

thnx :)
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 29 Mär. 2016
See these examples/instructions from the Mathworks:
3 Kommentare
Image Analyst
am 29 Mär. 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, []);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing and Computer Vision finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!