SparseMatchInterpolator
Objective-C
@interface SparseMatchInterpolator : Algorithm
Swift
class SparseMatchInterpolator : Algorithm
Main interface for all filters, that take sparse matches as an input and produce a dense per-pixel matching (optical flow) as an output.
Member of Ximgproc
-
Interpolate input sparse matches.
Declaration
Parameters
from_imagefirst of the two matched images, 8-bit single-channel or three-channel.
from_pointspoints of the from_image for which there are correspondences in the to_image (Point2f vector, size shouldn’t exceed 32767)
to_imagesecond of the two matched images, 8-bit single-channel or three-channel.
to_pointspoints in the to_image corresponding to from_points (Point2f vector, size shouldn’t exceed 32767)
dense_flowoutput dense matching (two-channel CV_32F image)
View on GitHub
SparseMatchInterpolator Class Reference