Borrar filtros
Borrar filtros

Pixels and their locations

2 visualizaciones (últimos 30 días)
med-sweng
med-sweng el 26 de Feb. de 2014
Respondida: Image Analyst el 26 de Feb. de 2014
For instance, I have a grayscale image. For that image, say that I'm interested in viewing pixels with intensity value 77. For that, I did the following:
imshow(I(I==77))
But, in this case, I got a figure with something like a vertical thin line and doesn't show a meaningful image.
It seems we should refer to the locations of those pixels.
What should we do in this case in order to retrieve a meaningful image showing the pixels of interest?
Thanks.

Respuesta aceptada

Image Analyst
Image Analyst el 26 de Feb. de 2014
That's because (I==77) is a 2D binary image (true/false) but when you pass a binary/logical image into an array in MATLAB, you get a column vector out. What you want to do is to mask the image:
mask = (I==77); C% Create binary (logical) mask.
maskedImage = I .* uint8(mask); % Multiply mask by image.
imshow(maskedImage); % Display maskedImage

Más respuestas (0)

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!

Translated by