Difference between revisions of "Function:FftGetProperty"
From CUVI Wiki
(Created page with "__NOTOC__ Gets different properties of fft of an image. ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus fftGetProperty(const CuviImage& src...") |
|||
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus fftGetProperty(const CuviImage& src, | CuviStatus fftGetProperty(const CuviImage& src, | ||
| Line 11: | Line 11: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 10:25, 19 October 2022
Gets different properties of fft of an image.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input FFT image |
| dst | CuviImage& | Output image containing the specified property |
| prop | const CuviFFTProp | The property of FFT to get. |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 32fC2 | 32fC1 |
Sample
Example
|