![]() |
OpenCV 4.12.0
开源计算机视觉
|
所有 CUDA 滤波器的通用接口:更多...
#include <opencv2/cudafilters.hpp>
公共成员函数 | |
| virtual void | apply (InputArray src, OutputArray dst, 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 |
所有 CUDA 滤波器的通用接口
|
纯虚函数 |
将指定的滤波器应用于图像。
| src | 输入图像。 |
| dst | 输出图像。 |
| 流 | Stream 用于异步版本。 |