How can I measure the centroid of the object of an image and how to measure the distance from the centroid?
2 views (last 30 days)
Show older comments
Evelynn Tan
on 7 Oct 2018
Commented: Image Analyst
on 31 Oct 2018
I need to measure the centre point of a lip image and measure the distance from the centroid to some point (left side, right side, up and down) of the lip. Must I convert the image to gray image first or can I convert it into YCbCr colour space?
0 Comments
Accepted Answer
Image Analyst
on 7 Oct 2018
Try the color thresholder on the apps tab of the tool ribbon to get a mask. Then call regionprops on the mask to get the centroid. Then use sqrt() to get distances from the centroid to other locations you're interested in.
More Answers (1)
Evelynn Tan
on 31 Oct 2018
Edited: Evelynn Tan
on 31 Oct 2018
1 Comment
Image Analyst
on 31 Oct 2018
Only you can say whether the mask is acceptable to the remainder of your algorithm.
To find distance, use sqrt(). To find centroids, use regionprops(). To get rid of small blobs, use bwareafilt().
See Also
Categories
Find more on Image Segmentation and Analysis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!