Better code to crop out a connected component?

1 次查看(过去 30 天)
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?

采纳的回答

Image Analyst
Image Analyst 2012-7-17
编辑:Image Analyst 2012-7-17
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 个评论
Qingyang
Qingyang 2012-7-18
Thanks! I completely forgot that you could just do it with imcrop. Great tutorials there, btw!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by