regionpropsの応用について。
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nagae Ryoya
el 8 de Oct. de 2019
Editada: Akira Agata
el 9 de Oct. de 2019
regionpropsのプログラムを使用したいのですが、使用する二次元画像の形が、円や楕円ではなく,円形ではありますが多くの山や谷が存在しており、いびつな形です。
そのような画像の形に沿う形で、赤いラインを描くようにすることは可能ですか??
試したところ、無数の円が画像の周りに発生してしまい、コントロール出来ていません。
0 comentarios
Respuesta aceptada
Akira Agata
el 9 de Oct. de 2019
Editada: Akira Agata
el 9 de Oct. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 領域とイメージのプロパティ en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!