Image cropping help (Crop image at boundary)
2 views (last 30 days)
Show older comments
Hello!
I need some help cropping certain shapes individually out of a binary image. Below is an example image.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/165190/image.png)
.
I know an easy way of cropping automatically would be using using regionprops() ('BoundingBox') and using those coordinates and lengths with imcrop(). But that gives me the white part inside a bounding box still surrounded by black.
Is there a way of cropping only the white out, say, using the boundary coordinates found with bwboundaries, or conncomps? Is it possible to crop out the object at the boundary coordinates?
Any help is greatly appreciated, thank you!
0 Comments
Accepted Answer
John BG
on 26 May 2016
In the file exchange there are these 2 solutions: 1.- http://uk.mathworks.com/matlabcentral/fileexchange/17460-cropping-an-image-with-draggable-rectangle?s_tid=srchtitle
3.- and from Image Analyst, an accepted answer:
croppedImage = imcrop(yourImage, [1 1 200 300]);
where [xmin ymin width height] is [xmin ymin width height]
If you find this answer of any help solving your question,
please click on the thumbs-up vote link, or mark is accepted answer
thanks in advance
John
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!