OpenCV  4.10.0
开源计算机视觉库
加载中...
搜索中...
无匹配结果
公有成员函数 | 所有成员列表
cv::Tonemap 类参考抽象

用于色调映射算法的基类 - 用于将 HDR 图像映射到 8 位范围的工具。 更多...

#include <opencv2/photo.hpp>

cv::Tonemap 的协作图

公有成员函数

virtual float getGamma () const =0
 
virtual void process (InputArray src, OutputArray dst)=0
 色调映射图像。
 
virtual void setGamma (float gamma)=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< _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)
 从文件节点中读取算法。
 
- 从 cv::Algorithm 继承的受保护成员函数
void writeFormat (FileStorage &fs) const
 

详细描述

用于色调映射算法的基类 - 用于将 HDR 图像映射到 8 位范围的工具。

成员函数文档

◆ getGamma()

virtual float cv::Tonemap::getGamma ( ) const
纯虚函数
Python
cv.Tonemap.getGamma() -> retval

◆ process()

virtual void cv::Tonemap::process ( InputArray  src,
OutputArray  dst 
)
纯虚函数
Python
cv.Tonemap.process(src[, dst]) -> dst

色调映射图像。

参数
src源图像 - CV_32FC3 Mat(浮点数 32 位 3 通道)
dst目标图像 - CV_32FC3 Mat,值在 [0, 1] 范围内

◆ setGamma()

virtual void cv::Tonemap::setGamma ( float  gamma)
纯虚函数
Python
cv.Tonemap.setGamma(gamma) -> None

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