이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
fitgeotrans
제어점 쌍에 기하 변환 피팅
구문
설명
은 제어점 쌍 tform
= fitgeotrans(movingPoints
,fixedPoints
,transformationType
)movingPoints
와 fixedPoints
를 받아서 이들 점을 사용하여 transformationType
으로 지정된 기하 변환을 추정합니다.
는 tform
= fitgeotrans(movingPoints
,fixedPoints
,'polynomial',degree
)PolynomialTransformation2D
객체를 제어점 쌍 movingPoints
및 fixedPoints
에 피팅합니다. 다항식 변환 degree
의 차수를 2, 3 또는 4로 지정합니다.
은 tform
= fitgeotrans(movingPoints
,fixedPoints
,'pwl')PiecewiseLinearTransformation2D
객체를 제어점 쌍 movingPoints
및 fixedPoints
에 피팅합니다. 이 변환은 평면을 국소 조각별 선형 영역으로 나누는 방법으로 제어점을 매핑합니다. 다른 아핀 변환이 각 국소 영역의 제어점을 매핑합니다.
은 tform
= fitgeotrans(movingPoints
,fixedPoints
,'lwm',n
)LocalWeightedMeanTransformation2D
객체를 제어점 쌍 movingPoints
및 fixedPoints
에 피팅합니다. 국소 가중 평균 변환은 각 제어점에서 인접 제어점을 사용하여 다항식을 추론하는 방법으로 매핑을 생성합니다. 어느 임의 위치에서의 매핑은 이 다항식의 가중 평균에 따라 달라집니다. n
개의 최근접 점을 사용하여 각 제어점 쌍에 대한 2차 다항식 변환을 추론합니다.
예제
입력 인수
출력 인수
세부 정보
참고 문헌
[1] Goshtasby, Ardeshir, "Piecewise linear mapping functions for image registration," Pattern Recognition, Vol. 19, 1986, pp. 459-466.
[2] Goshtasby, Ardeshir, "Image registration by local approximation methods," Image and Vision Computing, Vol. 6, 1988, pp. 255-261.