regionpropsの応用について。
1 view (last 30 days)
Show older comments
regionpropsのプログラムを使用したいのですが、使用する二次元画像の形が、円や楕円ではなく,円形ではありますが多くの山や谷が存在しており、いびつな形です。
そのような画像の形に沿う形で、赤いラインを描くようにすることは可能ですか??
試したところ、無数の円が画像の周りに発生してしまい、コントロール出来ていません。
0 Comments
Accepted Answer
Akira Agata
on 9 Oct 2019
Edited: Akira Agata
on 9 Oct 2019
bwboundaries 関数を使うのはいかがでしょうか?
たとえば以下のようにオブジェクトの境界をトレースできます。
% Sample binary image
I = imread('toyobjects.png');
BW = ~imbinarize(I);
% Detect boundaries
B = bwboundaries(BW,'noholes');
figure
imshow(BW)
hold on
for kk = 1:numel(B)
plot(B{kk}(:,2),B{kk}(:,1),'r','LineWidth',2)
end
0 Comments
More Answers (0)
See Also
Categories
Find more on 領域とイメージのプロパティ in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!