Saliency Map

1 개요

사람들의 눈이 먼저 초점을 맞추는 영역을 강조하는 알고리즘입니다.

2 알고리즘 상세 설명

Source Image Destination Image
Source Image Destination Image
Fig. 알고리즘 실행 결과

3 예제 코드


CSaliencyMap SaliencyMap;

CFLImage fliSourceImage;
CFLImage fliDestinationImage;

SaliencyMap.SetSourceImage(fliSourceImage);
SaliencyMap.SetDestinationImage(fliDestinationImage);
SaliencyMap.Execute();

CSaliencyMap SaliencyMap = new CSaliencyMap();

CFLImage fliSourceImage = new CFLImage();
CFLImage fliDestinationImage = new CFLImage();

SaliencyMap.SetSourceImage(ref fliSourceImage);
SaliencyMap.SetDestinationImage(ref fliDestinationImage);
SaliencyMap.Execute();