How to make the grey area completely black, so it's a binary image?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Tawsif Mostafiz
el 16 de Abr. de 2022
Respondida: DGM
el 16 de Abr. de 2022
Hi, I have a grayscale tumor image like this:
I want to make the grey area complely dark, something like this:
(This is a mask for another image)
so that the white area remailns white, but the grey area goes dark. Is it possible?
0 comentarios
Respuesta aceptada
Más respuestas (1)
DGM
el 16 de Abr. de 2022
The mask that was used to create the hole in the image is the binarized image. You shouldn't need to turn the source image into a copy of the mask.
but if you must:
A = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/966480/image.bmp');
A(A<255) = 0;
imshow(A)
0 comentarios
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!