OpenCV 4.10.0
开源计算机视觉
|
卷积(或互相关)运算符的基类。: 更多...
#include <opencv2/cudaarithm.hpp>
公共成员函数 | |
virtual void | convolve (InputArray image, InputArray templ, OutputArray result, bool ccorr=false, Stream &stream=Stream::Null())=0 |
计算两个图像的卷积(或互相关)。 | |
从 cv::Algorithm 继承的公共成员函数 | |
Algorithm () | |
virtual | ~Algorithm () |
virtual void | clear () |
清除算法状态。 | |
virtual bool | empty () const |
如果 Algorithm 为空(例如,在最开始或读取不成功后),则返回 true。 | |
virtual String | getDefaultName () const |
virtual void | read (const FileNode &fn) |
从文件存储区读取算法参数。 | |
virtual void | save (const String &filename) const |
void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
virtual void | write (FileStorage &fs) const |
将算法参数存储到文件存储区。 | |
void | write (FileStorage &fs, const String &name) const |
其他继承的成员 | |
从 cv::Algorithm 继承的静态公共成员函数 | |
template<typename _Tp > | |
static Ptr< _Tp > | load (const String &filename, const String &objname=String()) |
从文件加载算法。 | |
template<typename _Tp > | |
static Ptr< _Tp > | loadFromString (const String &strModel, const String &objname=String()) |
从字符串加载算法。 | |
template<typename _Tp > | |
static Ptr< _Tp > | read (const FileNode &fn) |
从文件节点读取算法。 | |
从 cv::Algorithm 继承的受保护成员函数 | |
void | writeFormat (FileStorage &fs) const |
卷积(或互相关)运算符的基类。
|
纯虚 |
计算两个图像的卷积(或互相关)。
image | 源图像。目前只支持 CV_32FC1 图像。 |
templ | 模板图像。大小不超过图像大小。类型与 image 相同。 |
result | 结果图像。如果 image 为 W x H 且 templ 为 w x h,则 result 必须为 W-w+1 x H-h+1。 |
ccorr | 标志,用于评估互相关而不是卷积。 |
stream | Stream 用于异步版本。 |