类 SparseMatchInterpolator

  • 直接已知子类
    EdgeAwareInterpolator, RICInterpolator

    public class SparseMatchInterpolator
    extends Algorithm
    所有过滤器的主接口,这些过滤器将稀疏匹配作为输入,并生成密集的逐像素匹配(光流)作为输出。
    • 构造函数详情

      • SparseMatchInterpolator

        protected SparseMatchInterpolator​(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 图像)。
      • finalize

        protected void finalize()
                         throws java.lang.Throwable
        覆盖
        finalize 在类 Algorithm
        抛出
        java.lang.Throwable