Loading...
Searching...
No Matches
cvhalFilter2D Struct Reference
Dummy structure storing filtering context. More...
#include </home/elchaschab/devel/opencv/modules/imgproc/src/hal_replacement.hpp>
Detailed Description
Dummy structure storing filtering 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_filterInit(cvhalFilter2D **context, ...) {
//... init
}
int my_hal_filterFree(cvhalFilter2D *context) {
MyFilterData *c = static_cast<MyFilterData*>(context);
delete c;
}
The documentation for this struct was generated from the following file:
- imgproc/src/hal_replacement.hpp