Click or drag to resize
XDL

XFourierTransformDFT2D(XGrid, XGrid, Int32, Int32, eFourierTransformAxis) Method

실수 데이터에 대하여 Forward 방향에 대해서만 이산 푸리에 변환을 수행하는 함수이다. 입력 데이터 Type 은 XUINT08, USINT16, XSINT16, REAL32, REAL64 Type 만 수행한다. 출력은, 입력 데이터가 REAL64 Type이면 REAL64C Type으로, 나머지는 REAL32C Type 으로 데이터를 생성한다. 변환을 수행할 데이터 축을 선택할 수 있다. 푸리에 변환 결과의 크기를 설정할 수 있다. 이 때 크기는 입력 데이터와 같거나 커야한다. 푸리에 변환 결과의 크기가 클 경우, 입력 데이터 크기에 제로패딩(Zero Padding)을 수행하여 푸리에 변환을 진행한다.

Namespace: Pixoneer.NXDL.NRS
Assembly: NXDLrs (in NXDLrs.dll) Version: 3.0.0.4
Syntax
C#
public static bool DFT2D(
	XGrid inReal,
	out XGrid outComplex,
	int RSizeOut,
	int CSizeOut,
	eFourierTransformAxis axis
)

Parameters

inReal  XGrid
[In] 푸리에 변환을 위한 데이터.
outComplex  XGrid
[Out] 푸리에 변환 결과 데이터.
RSizeOut  Int32
[In] output 데이터의 Row 크기(Y 크기).
CSizeOut  Int32
[In] output 데이터의 Column 크기(X 크기).
axis  eFourierTransformAxis
[in] 푸리에 변환 축을 설정.

Return Value

Boolean
성공이면 true, 실패하면 false
See Also