Help with cropping a binary image?

3 visualizaciones (últimos 30 días)
Shravanthi
Shravanthi el 8 de Feb. de 2014
Comentada: Anjana Rao el 8 de Feb. de 2014
I have this binary image:
How do I crop exactly to the outline of the fist?

Respuestas (1)

Spandan Tiwari
Spandan Tiwari el 8 de Feb. de 2014
Use IMCOMPLEMENT to invert the polarity of the binary images so that the object (fist) is white. Then use BWBOUNDARIES to get the boundary pixels of the object.
  3 comentarios
Image Analyst
Image Analyst el 8 de Feb. de 2014
boundaries = bwboundaries(~binaryImage);
but that gets you the outline coordinates of the fist. Is that what you want, or do you want the bounding box?
Anjana Rao
Anjana Rao el 8 de Feb. de 2014
No, I just want the outline! How do I crop it after getting the coordinates? imcrop(?)?

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by