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

3 ビュー (過去 30 日間)
peyvand heidarnejad
peyvand heidarnejad 2018 年 3 月 29 日
回答済み: Image Analyst 2018 年 3 月 29 日

回答 (1 件)

Image Analyst
Image Analyst 2018 年 3 月 29 日
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.

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by