Functions | |
ComplexImage | IPUFFT (ComplexImage cimSrc) |
Fourier Transform (Origin at Center). | |
ComplexImage | IPUFFT (ComplexImage cimSrc, ComplexImage cimDst) |
Fourier Transform (Origin at Center). | |
ComplexImage | IPUFFT (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
Fourier Transform (Origin at Center). | |
ComplexImage | IPUIFFT (ComplexImage cimSrc) |
Inverse Fourier Transform (Origin at Center). | |
ComplexImage | IPUIFFT (ComplexImage cimSrc, ComplexImage cimDst) |
Inverse Fourier Transform (Origin at Center). | |
ComplexImage | IPUIFFT (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
Inverse Fourier Transform (Origin at Center). | |
ComplexImage | IPURealFFT (Image imgSrc) |
Fourier Transform with RealImage. | |
ComplexImage | IPURealFFT (Image imgSrc, ComplexImage cimDst) |
Fourier Transform with RealImage. | |
ComplexImage | IPURealFFT (Image imgSrc, Number fScale, ComplexImage cimDst) |
Fourier Transform with RealImage. | |
Image | IPURealIFFT (ComplexImage cimSrc) |
Inverse Fourier Transform to RealImage. | |
Image | IPURealIFFT (ComplexImage cimSrc, Image imgDst) |
Inverse Fourier Transform to RealImage. | |
Image | IPURealIFFT (ComplexImage cimSrc, Number fScale, Image imgDst) |
Inverse Fourier Transform to RealImage. | |
ComplexImage | IPUPureFFT (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
Fourier Transform (Origin at Top-Left). | |
ComplexImage | IPUPureIFFT (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
Inverse Fourier Transform (Origin at Top-Left). | |
ComplexImage | IPUFFTX (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
1D Fourier Transform at X axis (Origin at Center) | |
ComplexImage | IPUFFTX (ComplexImage cimSrc, ComplexImage cimDst) |
1D Fourier Transform at X axis (Origin at Center) | |
ComplexImage | IPUFFTX (ComplexImage cimSrc) |
1D Fourier Transform at X axis (Origin at Center) | |
ComplexImage | IPUIFFTX (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
1D Inverse Fourier Transform at X axis (Origin at Center) | |
ComplexImage | IPUIFFTX (ComplexImage cimSrc, ComplexImage cimDst) |
1D Inverse Fourier Transform at X axis (Origin at Center) | |
ComplexImage | IPUIFFTX (ComplexImage cimSrc) |
1D Inverse Fourier Transform at X axis (Origin at Center) | |
ComplexImage | IPUFFTY (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
1D Inverse Fourier Transform at Y axis (Origin at Center) | |
ComplexImage | IPUFFTY (ComplexImage cimSrc, ComplexImage cimDst) |
1D Fourier Transform at Y axis (Origin at Center) | |
ComplexImage | IPUFFTY (ComplexImage cimSrc) |
1D Fourier Transform at Y axis (Origin at Center) | |
ComplexImage | IPUIFFTY (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
1D Inverse Fourier Transform at Y axis (Origin at Center) | |
ComplexImage | IPUIFFTY (ComplexImage cimSrc, ComplexImage cimDst) |
1D Inverse Fourier Transform at Y axis (Origin at Center) | |
ComplexImage | IPUIFFTY (ComplexImage cimSrc) |
1D Inverse Fourier Transform at Y axis (Origin at Center) | |
ComplexImage | IPUFFTZ (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
1D Fourier Transform at Z axis (Origin at Center) | |
ComplexImage | IPUFFTZ (ComplexImage cimSrc, ComplexImage cimDst) |
1D Fourier Transform at Z axis (Origin at Center) | |
ComplexImage | IPUFFTZ (ComplexImage cimSrc) |
1D Fourier Transform at Z axis (Origin at Center) | |
ComplexImage | IPUIFFTZ (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
1D Inverse Fourier Transform at Z axis (Origin at Center) | |
ComplexImage | IPUIFFTZ (ComplexImage cimSrc, ComplexImage cimDst) |
1D Inverse Fourier Transform at Z axis (Origin at Center) | |
ComplexImage | IPUIFFTZ (ComplexImage cimSrc) |
1D Inverse Fourier Transform at Z axis (Origin at Center) | |
ComplexImage | IPUFFTXY (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
2D Fourier Transform at XY Plane (Origin at Center) | |
ComplexImage | IPUFFTXY (ComplexImage cimSrc, ComplexImage cimDst) |
2D Fourier Transform at XY Plane (Origin at Center) | |
ComplexImage | IPUFFTXY (ComplexImage cimSrc) |
2D Fourier Transform at XY Plane (Origin at Center) | |
ComplexImage | IPUIFFTXY (ComplexImage cimSrc, Number fScale, ComplexImage cimDst) |
2D Inverse Fourier Transform at XY Plane (Origin at Center) | |
ComplexImage | IPUIFFTXY (ComplexImage cimSrc, ComplexImage cimDst) |
2D Inverse Fourier Transform at XY Plane (Origin at Center) | |
ComplexImage | IPUIFFTXY (ComplexImage cimSrc) |
2D Inverse Fourier Transform at XY Plane (Origin at Center) |
ComplexImage IPUFFT | ( | ComplexImage | cimSrc | ) |
Fourier Transform (Origin at Center).
cimSrc | Source image |
Same as FFT().
ComplexImage IPUFFT | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
Fourier Transform (Origin at Center).
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFT | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
Fourier Transform (Origin at Center).
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Behavior:
cimDst = FFT(cimSrc) * fScale
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFT | ( | ComplexImage | cimSrc | ) |
Inverse Fourier Transform (Origin at Center).
cimSrc | Source image |
Same as IFFT().
ComplexImage IPUIFFT | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
Inverse Fourier Transform (Origin at Center).
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFT | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
Inverse Fourier Transform (Origin at Center).
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Behavior:
cimDst = IFFT(cimSrc) * fScale
Normally, fScale
is 1.0/(Number of pixels).
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPURealFFT | ( | Image | imgSrc | ) |
Fourier Transform with RealImage.
imgSrc | Source image |
Same as RealFFT().
ComplexImage IPURealFFT | ( | Image | imgSrc, | |
ComplexImage | cimDst | |||
) |
Fourier Transform with RealImage.
imgSrc | Source image | |
cimDst | Destination image (can be NULL) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPURealFFT | ( | Image | imgSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
Fourier Transform with RealImage.
imgSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL) |
imgSrc
should be Real 4 or Real 8.Behavior:
cimDst = FFT(imgSrc) * fScale
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
Image IPURealIFFT | ( | ComplexImage | cimSrc | ) |
Inverse Fourier Transform to RealImage.
cimSrc | Source image |
Same as RealIFFT().
Image IPURealIFFT | ( | ComplexImage | cimSrc, | |
Image | imgDst | |||
) |
Inverse Fourier Transform to RealImage.
cimSrc | Source image | |
imgDst | Destination image (can be NULL) |
imgDst
should be Real 4 or Real 8.If imgDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
Image IPURealIFFT | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
Image | imgDst | |||
) |
Inverse Fourier Transform to RealImage.
cimSrc | Source image | |
fScale | Scaling factor | |
imgDst | Destination image (can be NULL) |
imgDst
should be Real 4 or Real 8.Behavior:
cimDst = IFFT(imgSrc) * fScale
Normally, fScale
is 1.0/(Number of pixels).
If imgDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUPureFFT | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
Fourier Transform (Origin at Top-Left).
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Behavior:
cimDst = FFT(cimSrc) * fScale
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUPureIFFT | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
Inverse Fourier Transform (Origin at Top-Left).
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Behavior:
cimDst = IFFT(cimSrc) * fScale
Normally, fScale
is 1.0/(Number of pixels).
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTX | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
1D Fourier Transform at X axis (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTX | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
1D Fourier Transform at X axis (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTX | ( | ComplexImage | cimSrc | ) |
1D Fourier Transform at X axis (Origin at Center)
cimSrc | Source image |
ComplexImage IPUIFFTX | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at X axis (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0/(Number of pixels).
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTX | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at X axis (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTX | ( | ComplexImage | cimSrc | ) |
1D Inverse Fourier Transform at X axis (Origin at Center)
cimSrc | Source image |
ComplexImage IPUFFTY | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at Y axis (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTY | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
1D Fourier Transform at Y axis (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTY | ( | ComplexImage | cimSrc | ) |
1D Fourier Transform at Y axis (Origin at Center)
cimSrc | Source image |
ComplexImage IPUIFFTY | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at Y axis (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0/(Number of pixels).
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTY | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at Y axis (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTY | ( | ComplexImage | cimSrc | ) |
1D Inverse Fourier Transform at Y axis (Origin at Center)
cimSrc | Source image |
ComplexImage IPUFFTZ | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
1D Fourier Transform at Z axis (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTZ | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
1D Fourier Transform at Z axis (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTZ | ( | ComplexImage | cimSrc | ) |
1D Fourier Transform at Z axis (Origin at Center)
cimSrc | Source image |
ComplexImage IPUIFFTZ | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at Z axis (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0/(Number of pixels).
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTZ | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
1D Inverse Fourier Transform at Z axis (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTZ | ( | ComplexImage | cimSrc | ) |
1D Inverse Fourier Transform at Z axis (Origin at Center)
cimSrc | Source image |
ComplexImage IPUFFTXY | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
2D Fourier Transform at XY Plane (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0.
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTXY | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
2D Fourier Transform at XY Plane (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUFFTXY | ( | ComplexImage | cimSrc | ) |
2D Fourier Transform at XY Plane (Origin at Center)
cimSrc | Source image |
ComplexImage IPUIFFTXY | ( | ComplexImage | cimSrc, | |
Number | fScale, | |||
ComplexImage | cimDst | |||
) |
2D Inverse Fourier Transform at XY Plane (Origin at Center)
cimSrc | Source image | |
fScale | Scaling factor | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
Normally, fScale
is 1.0/(Number of pixels).
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTXY | ( | ComplexImage | cimSrc, | |
ComplexImage | cimDst | |||
) |
2D Inverse Fourier Transform at XY Plane (Origin at Center)
cimSrc | Source image | |
cimDst | Destination image (can be NULL, or cimSrc for in-place calculation) |
If cimDst
is allocated, this function put a result to it. Otherwise, this function allocates a new destination area and returns the result on it.
ComplexImage IPUIFFTXY | ( | ComplexImage | cimSrc | ) |
2D Inverse Fourier Transform at XY Plane (Origin at Center)
cimSrc | Source image |