how can i calculate a variance of each BLOB in image
1 回表示 (過去 30 日間)
古いコメントを表示
hello every one; i need to know how to calculate a variance of each blob contains in one image, thank you in advance
0 件のコメント
採用された回答
Image Analyst
2016 年 1 月 20 日
編集済み: Image Analyst
2016 年 1 月 20 日
Ask regionprops to return PixelValues for the blobs.
measurements = regionprops(labeledImage, 'PixelValues');
Then for the kth blob:
blobVariance(k) = var(measurements(k).PixelValues);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!