Cosine

1 개요

이미지에 코사인 연산을 수행하는 알고리즘입니다.

2 알고리즘 상세 설명

이미지의 각 Channel 마다 코사인 연산을 수행합니다.

Source Image Destination Image
Source Image Destination Image
Fig. Source and Destination Images of Cosine

3 예제 코드

COperationCosine operationCosine;

CFLImage fliSourceImage;
CFLImage fliDestinationImage;

operationCosine.SetSourceImage(fliSourceImage);
operationCosine.SetDestinationImage(fliDestinationImage);

operationCosine.Execute();
COperationCosine OperationCosine = new COperationCosine();
CFLImage fliSourceImage = new CFLImage();	
CFLImage fliDestinationImage = new CFLImage();	

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