Tangent

1 개요

이미지에 탄젠트 연산을 수행하는 알고리즘입니다.

2 알고리즘 상세 설명

이미지의 각 Channel 마다 탄젠트 연산을 수행합니다.

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

3 예제 코드

COperationTangent operationTangent;

CFLImage fliSourceImage;
CFLImage fliDestinationImage;

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

operationTangent.Execute();
COperationTangent OperationTangent = new COperationTangent();
CFLImage fliSourceImage = new CFLImage();	
CFLImage fliDestinationImage = new CFLImage();	

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