Class KeyPointOpticalFlow
Represents a set of sparse correspondences between features detected in a reference image, and matching features detected in the current image.
public class KeyPointOpticalFlow
- Inheritance
-
KeyPointOpticalFlow
- Inherited Members
Constructors
KeyPointOpticalFlow(KeyPointCollection, KeyPointCollection)
Initializes a new instance of the KeyPointOpticalFlow class using the set of sparse feature correspondences detected in the reference and current images.
public KeyPointOpticalFlow(KeyPointCollection previousKeyPoints, KeyPointCollection currentKeyPoints)
Parameters
previousKeyPoints
KeyPointCollectionThe set of features detected in the reference image.
currentKeyPoints
KeyPointCollectionThe set of matching features detected in the current image.
Properties
CurrentKeyPoints
Gets the set of matching features detected in the current image.
public KeyPointCollection CurrentKeyPoints { get; }
Property Value
PreviousKeyPoints
Gets the set of features detected in the reference image.
public KeyPointCollection PreviousKeyPoints { get; }