Scale Invariant Feature Transform(SIFT)

1 개요

척도 불변 특성 변환 알고리즘을 사용해 이미지의 로컬 특징을 추출하는 알고리즘입니다.

2 알고리즘 상세 설명

Source Image Result Image
Source Image Result Image
Fig. SIFT 동작 결과

3 파라미터 설정 및 사용 방법

4 결과 취득 방법

5 예제 코드

CScaleInvariantFeatureTransform SIFT;
CFLImage fliSourceImage;
CFLPointArray flfaResultPoints;

SIFT.SetSourceImage(fliSourceImage);
SIFT.Execute();
SIFT.GetResultPoints(flfaResultPoints);
CScaleInvariantFeatureTransform SIFT = new CScaleInvariantFeatureTransform();
CFLImage fliSourceImage = new CFLImage();
CFLPointArray flfaResultPoints = new CFLPointArray();

SIFT.SetSourceImage(ref fliSourceImage);
SIFT.Execute();
SIFT.GetResultPoints(out flfaResultPoints);

6 관련 알고리즘

Oriented FAST and Rotated BRIEF, ORB