Descriptor used by the FFT2D function */
| 51 | |
| 52 | /** Descriptor used by the FFT2D function */ |
| 53 | struct FFT2DInfo |
| 54 | { |
| 55 | unsigned int axis0{0}; /**< Axis to run first pass on. If same, multiple transforms are performed on single axis*/ |
| 56 | unsigned int axis1{1}; /**< Axis to run second pass on. If same, multiple transforms are performed on single axis*/ |
| 57 | FFTDirection direction{FFTDirection::Forward}; /**< Direction of the FFT. */ |
| 58 | }; |
| 59 | |
| 60 | /** Descriptor used by the 2d Convolution function */ |
| 61 | struct Conv2dInfo |