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

基于加权最小二乘滤波器(以快速全局平滑器的形式,比传统的加权最小二乘滤波器实现快得多)的视差图滤波器,并可选地使用基于左右一致性的置信度来细化半遮挡和均匀区域的结果。 更多...

#include <opencv2/ximgproc/disparity_filter.hpp>

cv::ximgproc::DisparityWLSFilter 的协作图

公共成员函数

virtual Mat getConfidenceMap ()=0
 获取最后一次滤波调用中使用的置信度图。它是一个 CV_32F 单通道图像,其值范围从 0.0(原始视差图的完全不可信区域)到 255.0(包含高度置信度的正确视差值的区域)。
 
virtual int getDepthDiscontinuityRadius ()=0
 DepthDiscontinuityRadius 是置信度计算中使用的参数。它定义了深度不连续周围低置信度区域的大小。
 
virtual double getLambda ()=0
 Lambda 是一个参数,定义了滤波过程中的正则化程度。较大的值迫使滤波后的视差图边缘更贴近源图像边缘。典型值为 8000。
 
virtual int getLRCthresh ()=0
 LRCthresh 是置信度图计算过程中左右一致性检查中使用的视差差的阈值。默认值 24(1.5 像素)几乎总是足够好。
 
virtual Rect getROI ()=0
 获取最后一次滤波调用中使用的 ROI。
 
virtual double getSigmaColor ()=0
 SigmaColor 是一个参数,定义了滤波过程对源图像边缘的敏感程度。较大的值会导致视差通过低对比度边缘泄漏。较小的值会导致滤波器对源图像中的噪声和纹理过于敏感。典型值范围为 0.8 到 2.0。
 
virtual void setDepthDiscontinuityRadius (int _disc_radius)=0
 
virtual void setLambda (double _lambda)=0
 
virtual void setLRCthresh (int _LRC_thresh)=0
 
virtual void setSigmaColor (double _sigma_color)=0
 
- 从 cv::ximgproc::DisparityFilter 继承的公共成员函数
virtual void filter (InputArray disparity_map_left, InputArray left_view, OutputArray filtered_disparity_map, InputArray disparity_map_right=Mat(), Rect ROI=Rect(), InputArray right_view=Mat())=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
 

详细描述

基于加权最小二乘滤波器(以快速全局平滑器的形式,比传统的加权最小二乘滤波器实现快得多)的视差图滤波器,并可选地使用基于左右一致性的置信度来细化半遮挡和均匀区域的结果。

成员函数文档

◆ getConfidenceMap()

virtual Mat cv::ximgproc::DisparityWLSFilter::getConfidenceMap ( )
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.getConfidenceMap() -> retval

获取最后一次滤波调用中使用的置信度图。它是一个 CV_32F 单通道图像,其值范围从 0.0(原始视差图的完全不可信区域)到 255.0(包含高度置信度的正确视差值的区域)。

◆ getDepthDiscontinuityRadius()

virtual int cv::ximgproc::DisparityWLSFilter::getDepthDiscontinuityRadius ( )
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.getDepthDiscontinuityRadius() -> retval

DepthDiscontinuityRadius 是置信度计算中使用的参数。它定义了深度不连续周围低置信度区域的大小。

◆ getLambda()

virtual double cv::ximgproc::DisparityWLSFilter::getLambda ( )
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.getLambda() -> retval

Lambda 是一个参数,定义了滤波过程中的正则化程度。较大的值迫使滤波后的视差图边缘更贴近源图像边缘。典型值为 8000。

滤波器参数

◆ getLRCthresh()

virtual int cv::ximgproc::DisparityWLSFilter::getLRCthresh ( )
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.getLRCthresh() -> retval

LRCthresh 是置信度图计算过程中左右一致性检查中使用的视差差的阈值。默认值 24(1.5 像素)几乎总是足够好。

与置信度相关的参数

◆ getROI()

virtual Rect cv::ximgproc::DisparityWLSFilter::getROI ( )
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.getROI() -> retval

获取最后一次滤波调用中使用的 ROI。

◆ getSigmaColor()

virtual double cv::ximgproc::DisparityWLSFilter::getSigmaColor ( )
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.getSigmaColor() -> retval

SigmaColor 是一个参数,定义了滤波过程对源图像边缘的敏感程度。较大的值会导致视差通过低对比度边缘泄漏。较小的值会导致滤波器对源图像中的噪声和纹理过于敏感。典型值范围为 0.8 到 2.0。

◆ setDepthDiscontinuityRadius()

virtual void cv::ximgproc::DisparityWLSFilter::setDepthDiscontinuityRadius ( int  _disc_radius)
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.setDepthDiscontinuityRadius(_disc_radius) -> None

◆ setLambda()

virtual void cv::ximgproc::DisparityWLSFilter::setLambda ( double  _lambda)
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.setLambda(_lambda) -> None
另请参阅
getLambda

◆ setLRCthresh()

virtual void cv::ximgproc::DisparityWLSFilter::setLRCthresh ( int  _LRC_thresh)
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.setLRCthresh(_LRC_thresh) -> None
另请参阅
getLRCthresh

◆ setSigmaColor()

virtual void cv::ximgproc::DisparityWLSFilter::setSigmaColor ( double  _sigma_color)
纯虚函数
Python
cv.ximgproc.DisparityWLSFilter.setSigmaColor(_sigma_color) -> None
另请参阅
getSigmaColor

此类的文档是根据以下文件生成的