OpenCV 4.10.0
开源计算机视觉
|
使用 OpenCV 库中的 MatchTemplate 函数及其交叉相关计算方法来计算图像之间的距离。 更多...
#include <opencv2/tracking/tracking_by_matching.hpp>
公共成员函数 | |
MatchTemplateDistance (int type=cv::TemplateMatchModes::TM_CCORR_NORMED, float scale=-1, float offset=1) | |
构造距离对象。 | |
virtual | ~MatchTemplateDistance () |
float | compute (const cv::Mat &descr1, const cv::Mat &descr2) override |
计算图像描述符之间的距离。 | |
std::vector< float > | compute (const std::vector< cv::Mat > &descrs1, const std::vector< cv::Mat > &descrs2) override |
分批计算两个描述符之间的距离。 | |
从 cv::detail::tracking::tbm::IDescriptorDistance 继承的公共成员函数 | |
virtual | ~IDescriptorDistance () |
使用 OpenCV 库中的 MatchTemplate 函数及其交叉相关计算方法来计算图像之间的距离。
|
inline |
构造距离对象。
[in] | type | MatchTemplate 函数计算方法。 |
[in] | scale | 距离的缩放参数。最终距离计算为:scale * 距离 + 偏移。 |
[in] | offset | 距离的偏移参数。最终距离计算为:scale * 距离 + 偏移。 |
|
inlinevirtual |
|
overridevirtual |
计算图像描述符之间的距离。
[in] | descr1 | 第一个图像描述符。 |
[in] | descr2 | 第二个图像描述符。 |
|
overridevirtual |
分批计算两个描述符之间的距离。
[in] | descrs1 | 第一批描述符。 |
[in] | descrs2 | 第二批描述符。 |