OpenCV  4.10.0
开源计算机视觉
正在加载...
正在搜索...
无匹配项
公共成员函数 | 受保护成员函数 | 受保护属性 | 所有成员列表
cv::img_hash::ImgHashBase 类参考

图像哈希算法的基类。 更多...

#include <opencv2/img_hash/img_hash_base.hpp>

cv::img_hash::ImgHashBase 的协作图

公共成员函数

 ~ImgHashBase ()
 
double compare (cv::InputArray hashOne, cv::InputArray hashTwo) const
 比较 inOne 和 inTwo 之间的哈希值。
 
void compute (cv::InputArray inputArr, cv::OutputArray outputArr)
 计算输入图像的哈希值。
 
- 从 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
 

受保护成员函数

 ImgHashBase ()
 
- 从 cv::Algorithm 继承的受保护成员函数
void writeFormat (FileStorage &fs) const
 

受保护属性

Ptr< ImgHashImpl > pImpl
 

额外继承的成员

- 从 cv::Algorithm 继承的静态公共成员函数
template<typename _Tp >
static Ptr< _Tpload (const String &filename, const String &objname=String())
 从文件中加载算法。
 
template<typename _Tp >
static Ptr< _TploadFromString (const String &strModel, const String &objname=String())
 从字符串加载算法。
 
template<typename _Tp >
static Ptr< _Tpread (const FileNode &fn)
 从文件节点读取算法。
 

详细描述

图像哈希算法的基类。

构造函数和析构函数文档

◆ ~ImgHashBase()

cv::img_hash::ImgHashBase::~ImgHashBase ( )

◆ ImgHashBase()

cv::img_hash::ImgHashBase::ImgHashBase ( )
protected

成员函数文档

◆ compare()

double cv::img_hash::ImgHashBase::compare ( cv::InputArray  hashOne,
cv::InputArray  hashTwo 
) const
Python
cv.img_hash.ImgHashBase.compare(hashOne, hashTwo) -> retval

比较 inOne 和 inTwo 之间的哈希值。

参数
hashOne哈希值一
hashTwo哈希值二
返回值
表示 inOne 和 inTwo 之间相似度的值,值的含义因算法而异

◆ compute()

void cv::img_hash::ImgHashBase::compute ( cv::InputArray  inputArr,
cv::OutputArray  outputArr 
)
Python
cv.img_hash.ImgHashBase.compute(inputArr[, outputArr]) -> outputArr

计算输入图像的哈希值。

参数
inputArr要计算哈希值的输入图像
outputArr图像的哈希值

成员数据文档

◆ pImpl

Ptr<ImgHashImpl> cv::img_hash::ImgHashBase::pImpl
protected

该类的文档从以下文件生成