Azzera filtri
Azzera filtri

Reshape an object in binary image

2 visualizzazioni (ultimi 30 giorni)
Maa Kari
Maa Kari il 28 Gen 2016
Modificato: Maa Kari il 31 Gen 2016
Hi dear;
I have a binary image that contains an object (some times a lot of objects), I want to reshape the object as showing in the image 1 to the one as showing in the image 2. My goal is to have an object tha has a straight boundaries.
Any help and suggestion will be appreciated.
  4 Commenti
Walter Roberson
Walter Roberson il 29 Gen 2016
Maybe you would like to skeletonize, remove spurs, and then dilate out again??
Maa Kari
Maa Kari il 31 Gen 2016
Modificato: Maa Kari il 31 Gen 2016
Hi Mr Image analyst
sorry I didnt pay attention to those coments
no i dont want any black padding around the rectangle, the resut is like what you get bellow for the simple binary image, but for a complex binary image my goal is to have the result as in the http://www.mathworks.com/matlabcentral/answers/265581#comment_339054
for clarification the binary image is after a segmentation of initial image that contains a lot of object and our goal is to have a straight boundaries for the connected component in the binary image i hope that my question is clear and I'm available for any clarification
Thank you very much

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 28 Gen 2016
Modificato: Image Analyst il 28 Gen 2016
Use
[labeledImage, numBlobs] = bwlabel(binaryImage);
measurements = regionprops(labeledImage, 'BoundingBox');
then for each blob in a for loop over all blobs, get the bounding box and get the bounding rows and columns,
for k = 1 : numBlobs
xLeft = ceil(measurements(k).BoundingBox(1));
% etc.
binaryImage(yTop:yBottom, xLeft:xRight) = true;
end
Let me know if you can't figure out the rest.
  7 Commenti
Image Analyst
Image Analyst il 30 Gen 2016
Aha, we knew it! You didn't actually want what you asked for (and so all my prior effort went to waste, perhaps). Now, with this image it looks like you actually want some kind of "envelope" of the blob. So it seems like you want activecontour(). This time I'll simply attach my canned demo and you can adapt it yourself.
Maa Kari
Maa Kari il 30 Gen 2016
thank you very mutch your first prosition is very helpful for me, and thank you for the answer and for your efforts it is really appreciated i will try the activecontour().

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by