how to locate blobs upper middle and lower middle points and plot it
3 ビュー (過去 30 日間)
古いコメントを表示
Anandakumar Selvaraj
2013 年 12 月 7 日
編集済み: Anandakumar Selvaraj
2014 年 1 月 8 日
i am trying to locate points like it shows in the figure 4 below were the centroid i have marked as shown in figure 2 from the binary image now i have to mark upper lower and left and right boundry point as in fig 4 ..any one help me


I have marked the centroid of the blob using
s = regionprops(binaryImage, 'centroid');
centroids = cat(1, s.Centroid);
imshow(binaryImage);
hold(imgca,'on');
plot(imgca,centroids(:,1), centroids(:,2), ...
'r*','MarkerSize', 10, 'LineWidth', 3);
0 件のコメント
採用された回答
Image Analyst
2013 年 12 月 9 日
I answered this in your duplicate question: http://www.mathworks.com/matlabcentral/answers/109002#answer_117775
1 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!