regionpropsの応用について。
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nagae Ryoya
le 8 Oct 2019
Modifié(e) : Akira Agata
le 9 Oct 2019
regionpropsのプログラムを使用したいのですが、使用する二次元画像の形が、円や楕円ではなく,円形ではありますが多くの山や谷が存在しており、いびつな形です。
そのような画像の形に沿う形で、赤いラインを描くようにすることは可能ですか??
試したところ、無数の円が画像の周りに発生してしまい、コントロール出来ていません。
0 commentaires
Réponse acceptée
Akira Agata
le 9 Oct 2019
Modifié(e) : Akira Agata
le 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 領域とイメージのプロパティ dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!