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();
saliencyMap = CSaliencyMap()

fliSourceImage = CFLImage
fliDestinationImage = CFLImage

saliencyMap.SetSourceImage(fliSourceImage)
saliencyMap.SetDestinationImage(fliDestinationImage)
saliencyMap.Execute()