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

基于块均值的图像哈希。 更多...

#include <opencv2/img_hash/block_mean_hash.hpp>

cv::img_hash::BlockMeanHash 的协作图

公有成员函数

std::vector< double > getMean () const
 
void setMode (int mode)
 创建 BlockMeanHash 对象。
 
- 从 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
 

静态公有成员函数

static Ptr< BlockMeanHashcreate (int mode=BLOCK_MEAN_HASH_MODE_0)
 
- 从 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)
 从文件节点读取算法。
 

保护成员函数

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

额外继承的成员

- 从 cv::img_hash::ImgHashBase 继承的保护属性
Ptr< ImgHashImpl > pImpl
 

详细描述

基于块均值的图像哈希。

有关详细信息,请参阅 [314]

构造函数和析构函数文档

◆ BlockMeanHash()

cv::img_hash::BlockMeanHash::BlockMeanHash ( )
inlineprotected

成员函数文档

◆ create()

static Ptr< BlockMeanHash > cv::img_hash::BlockMeanHash::create ( int  mode = BLOCK_MEAN_HASH_MODE_0)
static
Python
cv.img_hash.BlockMeanHash.create([, mode]) -> retval
cv.img_hash.BlockMeanHash_create([, mode]) -> retval

◆ getMean()

std::vector< double > cv::img_hash::BlockMeanHash::getMean ( ) const
Python
cv.img_hash.BlockMeanHash.getMean() -> retval

◆ setMode()

void cv::img_hash::BlockMeanHash::setMode ( int  mode)
Python
cv.img_hash.BlockMeanHash.setMode(mode) -> None

创建 BlockMeanHash 对象。

参数
mode模式

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