i want measurement of this object and position of it in my image. how can i do it??
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

0 commentaires
Réponses (1)
Image Analyst
le 29 Mar 2018
You can use image processing. Threshold and call regionprops().
binaryImage = grayImage > someValue;
props = regionprops(binaryImage, 'Area', 'BoundingBox', 'Centroid');
There are other things you can also measure.
See my Image Segmentation Tutorial for a full demo https://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862&sort=downloads_desc
0 commentaires
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!