Main Content

plot

설명

예제

plot(points)는 현재 축에 점을 플로팅합니다.

plot(points,ax)는 지정된 축에 점을 플로팅합니다.

예제

모두 축소

영상을 읽어 들입니다.

I = imread("cameraman.tif");

코너 특징을 검출합니다.

featurePoints = detectHarrisFeatures(I);

검출된 특징을 사용하여 특징 영상을 플로팅합니다.

imshow(I);
hold on;
plot(featurePoints);

Figure contains an axes object. The axes object contains 2 objects of type image, line. One or more of the lines displays its values using only markers

입력 인수

모두 축소

Points 객체로, M개의 [x y] 좌표로 구성된 M×2 행렬 또는 Point Feature Types에 설명된 특징점 객체 중 하나로 지정됩니다. 이 객체는 입력 영상에서 검출된 특징점에 대한 정보를 포함합니다. 점을 얻으려면 특징점 유형과 쌍을 이루는 적절한 검출 함수를 사용하십시오.

표시를 위해 사용할 핸들. gca를 사용하여 핸들을 설정할 수 있습니다.

버전 내역

R2011b에 개발됨

참고 항목

함수