Difference between revisions of "Function:Fft2"

From CUVI Wiki
 
Line 50: Line 50:
===Example===
===Example===
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">



Latest revision as of 18:25, 19 October 2022

Computes the 2D Fast Fourier Transform of the input image.

Function

CuviStatus fft2(const CuviImage& src,
                CuviImage& dst,
                const CuviStream& stream = CuviStream());

Parameters

Name Type Description
src const CuviImage& Input Image
dst CuviImage& Destination Image
stream const CuviStream& GPU stream ID for execution

Image Type Support

Input Output
8uC1 32fC2

Example

//Creating GPU images
CuviImage gimg = cuvi:io::loadImage(path), gout;

	
//Computing the Fourier Transform
cuvi::imageTransforms::fft2(gimg,gout);