i want measurement of this object and position of it in my image. how can i do it??

3 Ansichten (letzte 30 Tage)

Antworten (1)

Image Analyst
Image Analyst am 29 Mär. 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.

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by