How to count area under given surface ?
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
I want to count areas limited by green lines.
So, for my image the result is three areas.
Can anyone help me please.
採用された回答
Ameer Hamza
2020 年 4 月 30 日
編集済み: Ameer Hamza
2020 年 4 月 30 日
Try this. It gives the area of three regions in number of pixels
im = im2double(imread('area.jpeg'));
im(:,end-5:end,:) = 0; % remove the white line at right and bottom of image
im(end-5:end,:,:) = 0;
mask = (im(:,:,1)>0.75) & (im(:,:,2)>0.75) & (im(:,:,3)>0.75);
regions = bwconncomp(mask);
areas = cellfun(@(x) numel(x), regions.PixelIdxList);
required_areas = maxk(areas, 3);
4 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!