Borrar filtros
Borrar filtros

Better code to crop out a connected component?

1 visualización (últimos 30 días)
Qingyang
Qingyang el 17 de Jul. de 2012
Hi, I have written this code to crop out just a connected component on an image:
rp = regionprops(cc, 'BoundingBox');
minr = rp(stainid).BoundingBox(2);
minc = rp(stainid).BoundingBox(1);
maxr = rp(stainid).BoundingBox(2) + rp(stainid).BoundingBox(4);
maxc = rp(stainid).BoundingBox(1) + rp(stainid).BoundingBox(3);
imstainzoom = im(minr:maxr, minc:maxc);
It works, but isn't the best code possible. Also, the bounding box returns non-integers (why is that?). Is there a much more efficient way to do this?

Respuesta aceptada

Image Analyst
Image Analyst el 17 de Jul. de 2012
Editada: Image Analyst el 17 de Jul. de 2012
See my image segmentation tutorial where I crop out objects using their bounding boxes. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
I believe it gives coordinates on the half pixel to eliminate any ambiguity about whether the bounding box is the inclusive box, or one pixel layer outside that. So you can use ceil() and floor() to make it do it either way depending on what you prefer.
  1 comentario
Qingyang
Qingyang el 18 de Jul. de 2012
Thanks! I completely forgot that you could just do it with imcrop. Great tutorials there, btw!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Geometric Transformation and Image Registration 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