Translate imfeature to regionprops
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuesta aceptada
Image Analyst
el 7 de Feb. de 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.
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!