Enum DrawMatchesFlags
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public enum DrawMatchesFlags
Fields
Name | Description |
---|---|
Default | Output image matrix will be created (Mat::create), i.e. existing memory of output image may be reused. Two source image, matches and single keypoints will be drawn. For each keypoint only the center point will be drawn (without the circle around keypoint with keypoint size and orientation). |
DrawOverOutImg | Output image matrix will not be created (Mat::create). Matches will be drawn on existing content of output image. |
DrawRichKeypoints | For each keypoint the circle around keypoint with keypoint size and orientation will be drawn. |
NotDrawSinglePoints | Single keypoints will not be drawn. |