how to superimpose the image of retina?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Farah Nadiah
el 29 de Mzo. de 2016
Comentada: Farah Nadiah
el 29 de Mzo. de 2016
how can i superimpose the image...
this is my gray image
this is my binary image
thnx :)
0 comentarios
Respuesta aceptada
Image Analyst
el 29 de Mzo. de 2016
See these examples/instructions from the Mathworks:
3 comentarios
Image Analyst
el 29 de Mzo. de 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, []);
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!