类 SparseMatchInterpolator
- java.lang.Object
-
- org.opencv.core.Algorithm
-
- org.opencv.ximgproc.SparseMatchInterpolator
-
- 直接已知子类
EdgeAwareInterpolator
,RICInterpolator
public class SparseMatchInterpolator extends Algorithm
所有过滤器的主接口,这些过滤器将稀疏匹配作为输入,并生成密集的逐像素匹配(光流)作为输出。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 protected
SparseMatchInterpolator(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static SparseMatchInterpolator
__fromPtr__(long addr)
protected void
finalize()
void
interpolate(Mat from_image, Mat from_points, Mat to_image, Mat to_points, Mat dense_flow)
插值输入稀疏匹配。-
从类 org.opencv.core.Algorithm 继承的方法
clear, empty, getDefaultName, getNativeObjAddr, save
-
-
-
-
方法详情
-
__fromPtr__
public static SparseMatchInterpolator __fromPtr__(long addr)
-
interpolate
public void interpolate(Mat from_image, Mat from_points, Mat to_image, Mat to_points, Mat dense_flow)
插值输入稀疏匹配。- 参数
from_image
- 两张匹配图像中的第一张,8 位单通道或三通道。from_points
- from_image 中的点,在 to_image 中有对应的点(Point2f 向量或深度为 CV_32F 的 Mat)。to_image
- 两张匹配图像中的第二张,8 位单通道或三通道。to_points
- to_image 中对应于 from_points 的点(Point2f 向量或深度为 CV_32F 的 Mat)。dense_flow
- 输出密集匹配(双通道 CV_32F 图像)。
-
-