Saliency Map
1 개요
사람들의 눈이 먼저 초점을 맞추는 영역을 강조하는 알고리즘입니다.
2 알고리즘 상세 설명
- 3채널 이미지 연산만 지원합니다.
- 이미지 너비, 높이가 각각 300 이상이어야 합니다.
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()