2次元画像の中心に以​下のコードのような円​を描写したいのですが​、どうすればよいでし​ょうか?

조회 수: 3 (최근 30일)
Casey
Casey 2022년 5월 24일
답변: Kojiro Saito 2022년 5월 24일
%// radius
r = 2;
%// center
c = [3 3];
pos = [c-r 2*r 2*r];
rectangle('Position',pos,'Curvature',[1 1])
axis equal

채택된 답변

Kojiro Saito
Kojiro Saito 2022년 5월 24일
imshow で2 次元の画像表示をした後に、その座標軸(gca)に対してrectangle を実行すればできます。rectangle で画像の中心座標(width と height のそれぞれの半分)を指定します。
見やすくするために下記ではrを20にしています。
img = imread('peppers.png');
imshow(img)
r = 20;
%// center
c = [width(img)/2 height(img)/2];
pos = [c-r 2*r 2*r];
rectangle(gca, 'Position',pos,'Curvature',[1 1],'EdgeColor', 'r')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox 入門에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!