#include <imgproc.hpp>
Public Member Functions | |
BaseFilter () | |
the default constructor More... | |
virtual | ~BaseFilter () |
the destructor More... | |
virtual void | operator() (const uchar **src, uchar *dst, int dststep, int dstcount, int width, int cn)=0 |
the filtering operator. The horizontal and the vertical border interpolation is done outside of the class. More... | |
virtual void | reset () |
resets the internal buffers, if any More... | |
Public Attributes | |
Size | ksize |
Point | anchor |
The Base Class for Non-Separable 2D Filters.
This is the base class for linear or non-linear 2D filters.
Several functions in OpenCV return Ptr<BaseFilter> for the specific types of filters, and those pointers can be used directly or within cv::FilterEngine.
Similar to cv::BaseColumnFilter, the class may have some context information, that should be reset using BaseFilter::reset() method before processing the new array.
cv::BaseFilter::BaseFilter | ( | ) |
the default constructor
|
virtual |
the destructor
|
pure virtual |
the filtering operator. The horizontal and the vertical border interpolation is done outside of the class.
|
virtual |
resets the internal buffers, if any
Point cv::BaseFilter::anchor |
Size cv::BaseFilter::ksize |