OpenCV 4.11.0
开源计算机视觉
|
描述快速行进法的实现。更多…
#include <opencv2/videostab/fast_marching.hpp>
公有成员函数 | |
FastMarchingMethod () | |
Mat | distanceMap () const |
template<typename Inpaint > | |
Inpaint | run (const Mat &mask, Inpaint inpaint) |
运行快速行进法的模板方法。 | |
|
内联 |
|
内联 |
Inpaint cv::videostab::FastMarchingMethod::run | ( | const Mat & | mask, |
Inpaint | inpaint ) |
运行快速行进法的模板方法。
mask | 图像掩码。0 值表示像素值必须进行修复,255 表示像素值已知,其他值不可接受。 |
inpaint | 重载 void operator ()(int x, int y) 的修复函数。 |