| CvXImgProcQDft Method |
Performs a forward or inverse Discrete quaternion Fourier transform of a 2D quaternion array.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void QDft(
InputArray img,
OutputArray qimg,
DftFlags flags,
bool sideLeft
)
Public Shared Sub QDft (
img As InputArray,
qimg As OutputArray,
flags As DftFlags,
sideLeft As Boolean
)
public:
static void QDft(
InputArray^ img,
OutputArray^ qimg,
DftFlags flags,
bool sideLeft
)
static member QDft :
img : InputArray *
qimg : OutputArray *
flags : DftFlags *
sideLeft : bool -> unit
Parameters
- img
- Type: OpenCvSharpInputArray
quaternion image. - qimg
- Type: OpenCvSharpOutputArray
quaternion image in dual space. - flags
- Type: OpenCvSharpDftFlags
quaternion image in dual space. only DFT_INVERSE flags is supported - sideLeft
- Type: SystemBoolean
true the hypercomplex exponential is to be multiplied on the left (false on the right ).
See Also