$darkmode
404 Not Found

404 Not Found


nginx
OpenCV 4.11.0
Open Source Computer Vision
BEGIN_CUSTOM_MATHJAX // END_CUSTOM_MATHJAX

Dummy structure storing DFT/DCT context. More...

#include </Users/bogdan/Desktop/opencv/modules/core/src/hal_replacement.hpp>

Collaboration diagram for cvhalDFT:

Detailed Description

Dummy structure storing DFT/DCT context.

Users can convert this pointer to any type they want. Initialisation and destruction should be made in Init and Free function implementations correspondingly. Example:

int my_hal_dftInit2D(cvhalDFT **context, ...) {
*context = static_cast<cvhalDFT*>(new MyFilterData());
//... init
}
int my_hal_dftFree2D(cvhalDFT *context) {
MyFilterData *c = static_cast<MyFilterData*>(context);
delete c;
}
Dummy structure storing DFT/DCT context.
Definition: core/src/hal_replacement.hpp:677

The documentation for this struct was generated from the following file: