Stitching

1 개요

서로 연관성이 있는 Multi Image를 연결하는 알고리즘입니다.

2 알고리즘 상세 설명

Multi Image Result
Fig. Stitching 결과(Flatten)

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

촬영 된 이미지가 원통 좌표계를 따르며 이미지 번호가 일정하게 증가 혹은 감소하는 Multi Image의 경우 아래 함수를 사용할 수 있습니다.

SetProjectionMethod(EProjectionMethod_Cylindrical) 설정 후 동작해야합니다.

4 예제 코드

CFLImage fliSourceImage;
CFLImage fliDestinationImage;

fliSourceImage.Load(L"ExampleImages/Stitching/Mountain.flif");

CStitching stitching;
stitching.SetSourceImage(fliSourceImage);
stitching.SetDestinationImage(fliDestinationImage);
stitching.SetProjectionMethod(CStitching::EProjectionMethod_Spherical);
stitching.Execute();
CStitching stitching = new CStitching();
CFLImage fliSourceImage = new CFLImage();
CFLImage fliDestinationImage = new CFLImage();

fliSourceImage.Load(L"ExampleImages/Stitching/Mountain.flif");
stitching.SetSourceImage(ref fliSourceImage);
stitching.SetDestinationImage(ref fliDestinationImage);
stitching.SetProjectionMethod(CStitching.EProjectionMethod.Spherical);
stitching.Execute();

5 관련 알고리즘

Alignment Tiling