#include <opencv2/optflow/sparse_matching_gpc.hpp>
|
void | findCorrespondences (InputArray imgFrom, InputArray imgTo, std::vector< std::pair< Point2i, Point2i > > &corr, const GPCMatchingParams params=GPCMatchingParams()) const |
| 查找两幅图像之间的对应点。
|
|
void | read (const FileNode &fn) CV_OVERRIDE |
| 从文件存储中读取算法参数。
|
|
void | train (const std::vector< String > &imagesFrom, const std::vector< String > &imagesTo, const std::vector< String > >, const GPCTrainingParams params=GPCTrainingParams()) |
| 使用每棵树的单个样本训练森林。通常最好使用此方法而不是第一种方法。
|
|
void | train (GPCTrainingSamples &samples, const GPCTrainingParams params=GPCTrainingParams()) |
| 使用每个树的一个样本集训练森林。为了获得更好的质量,请考虑使用下一种方法代替这种方法。
|
|
void | train (InputArrayOfArrays imagesFrom, InputArrayOfArrays imagesTo, InputArrayOfArrays gt, const GPCTrainingParams params=GPCTrainingParams()) |
|
void | write (FileStorage &fs) const CV_OVERRIDE |
| 将算法参数存储到文件存储中。
|
|
| Algorithm () |
|
virtual | ~Algorithm () |
|
virtual void | clear () |
| 清除算法状态。
|
|
virtual bool | empty () const |
| 如果 Algorithm 为空(例如,在最开始或读取失败后),则返回 true。
|
|
virtual String | getDefaultName () const |
|
virtual void | save (const String &filename) const |
|
void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
|
void | write (FileStorage &fs, const String &name) const |
|
◆ create()
◆ read()
◆ train() [1/3]
使用每棵树的单个样本训练森林。通常最好使用此方法而不是第一种方法。
◆ train() [2/3]
使用每个树的一个样本集训练森林。为了获得更好的质量,请考虑使用下一种方法代替这种方法。
◆ train() [3/3]
◆ write()
此类的文档从以下文件生成