Translate imfeature to regionprops

3 visualizzazioni (ultimi 30 giorni)
Hi, i got this old line of code and i want to use it without losing its logical structure:
f = imfeature(imgN,'BoundingBox','Centroid','Extent','Eccentricity',4);
How do i translate that with regionprops? i know that this line doesnt work:
f = regionprops(imgN,'BoundingBox','Centroid','Extent','Eccentricity',4);
can i still declare my 4 connected objects with regionprops?
Thank you

Risposta accettata

Image Analyst
Image Analyst il 7 Feb 2013
You don't use the final 4 argument, but other than that it should work fine.
I don't know what "can i still declare my 4 connected objects" means. You don't declare them - they are simply in your binary image (what they called imgN - a poor, non-descriptive choice of name for a variable, just like "f"). If you want to extract just 4 blobs, based on some criteria, from the larger total number of blobs then you can do that. See my Image Segmentation Tutorial, BlobsDemo if you want to see how.

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