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

用于 ContourFitting 算法的类。 ContourFitting 匹配两个轮廓 \( z_a \) 和 \( z_b \) 最小化距离。 更多...

#include <opencv2/ximgproc/fourier_descriptors.hpp>

cv::ximgproc::ContourFitting 的协作图

公共成员函数

 ContourFitting (int ctr=1024, int fd=16)
 使用傅立叶描述符拟合两个闭合曲线。更多细节见 [219][25]
 
void estimateTransformation (InputArray src, InputArray dst, OutputArray alphaPhiST, double &dist, bool fdContour=false)
 使用傅立叶描述符拟合两个闭合曲线。更多细节见 [219][25]
 
void estimateTransformation (InputArray src, InputArray dst, OutputArray alphaPhiST, double *dist=0, bool fdContour=false)
 使用傅立叶描述符拟合两个闭合曲线。更多细节见 [219][25]
 
int getCtrSize ()
 
int getFDSize ()
 
void setCtrSize (int n)
 设置在 estimateTransformation 中使用的傅立叶描述符数量
 
void setFDSize (int n)
 当 estimateTransformation 使用 vector<Point> 时设置傅立叶描述符的数量
 
- 从 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
 

详细描述

用于 ContourFitting 算法的类。 ContourFitting 匹配两个轮廓 \( z_a \) 和 \( z_b \) 最小化距离。

\[ d(z_a,z_b)=\sum (a_n - s b_n e^{j(n \alpha +\phi )})^2 \]

其中 \( a_n \) 和 \( b_n \) 是 \( z_a \) 和 \( z_b \) 的傅立叶描述符,s 是缩放因子,\( \phi \) 是旋转角度,\( \alpha \) 是起点因子调整

构造函数和析构函数文档

◆ ContourFitting()

cv::ximgproc::ContourFitting::ContourFitting ( int  ctr = 1024,
int  fd = 16 
)
inline

使用傅立叶描述符拟合两个闭合曲线。更多细节见 [219][25]

参数
ctr傅立叶描述符的数量等于重新采样后的轮廓点数量。
fd定义第二个形状(目标)的轮廓。

成员函数文档

◆ estimateTransformation() [1/2]

void cv::ximgproc::ContourFitting::estimateTransformation ( InputArray  src,
InputArray  dst,
OutputArray  alphaPhiST,
double &  dist,
bool  fdContour = false 
)
Python
cv.ximgproc.ContourFitting.estimateTransformation(src, dst[, alphaPhiST[, fdContour]]) -> alphaPhiST, dist

使用傅立叶描述符拟合两个闭合曲线。更多细节见 [219][25]

参数
src定义第一个形状的轮廓。
dst定义第二个形状(目标)的轮廓。
alphaPhiST: \( \alpha \)=alphaPhiST(0,0), \( \phi \)=alphaPhiST(0,1) (以弧度表示),s=alphaPhiST(0,2), Tx=alphaPhiST(0,3), Ty=alphaPhiST(0,4) 旋转中心
dist匹配后 src 和 dst 之间的距离。
fdContourfalse 表示 src 和 dst 是轮廓,true 表示 src 和 dst 是傅立叶描述符。

◆ estimateTransformation() [2/2]

void cv::ximgproc::ContourFitting::estimateTransformation ( InputArray  src,
InputArray  dst,
OutputArray  alphaPhiST,
double *  dist = 0,
bool  fdContour = false 
)
Python
cv.ximgproc.ContourFitting.estimateTransformation(src, dst[, alphaPhiST[, fdContour]]) -> alphaPhiST, dist

使用傅立叶描述符拟合两个闭合曲线。更多细节见 [219][25]

参数
src定义第一个形状的轮廓。
dst定义第二个形状(目标)的轮廓。
alphaPhiST: \( \alpha \)=alphaPhiST(0,0), \( \phi \)=alphaPhiST(0,1) (以弧度表示),s=alphaPhiST(0,2), Tx=alphaPhiST(0,3), Ty=alphaPhiST(0,4) 旋转中心
dist匹配后 src 和 dst 之间的距离。
fdContourfalse 表示 src 和 dst 是轮廓,true 表示 src 和 dst 是傅立叶描述符。

◆ getCtrSize()

int cv::ximgproc::ContourFitting::getCtrSize ( )
inline
Python
cv.ximgproc.ContourFitting.getCtrSize() -> retval
返回值
傅立叶描述符的数量

◆ getFDSize()

int cv::ximgproc::ContourFitting::getFDSize ( )
inline
Python
cv.ximgproc.ContourFitting.getFDSize() -> retval
返回值
用于最佳曲线匹配的傅立叶描述符的数量

◆ setCtrSize()

void cv::ximgproc::ContourFitting::setCtrSize ( int  n)
Python
cv.ximgproc.ContourFitting.setCtrSize(n) -> None

设置在 estimateTransformation 中使用的傅立叶描述符数量

参数
n傅立叶描述符的数量等于重新采样后的轮廓点数量。

◆ setFDSize()

void cv::ximgproc::ContourFitting::setFDSize ( int  n)
Python
cv.ximgproc.ContourFitting.setFDSize(n) -> None

当 estimateTransformation 使用 vector<Point> 时设置傅立叶描述符的数量

参数
n用于最佳曲线匹配的傅立叶描述符的数量。

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