drawKeyPoints function

void drawKeyPoints(
  1. Mat src,
  2. VecKeyPoint keypoints,
  3. Mat dst,
  4. Scalar color,
  5. DrawMatchesFlag flag,
)

Implementation

void drawKeyPoints(
  Mat src,
  VecKeyPoint keypoints,
  Mat dst,
  Scalar color,
  DrawMatchesFlag flag,
) {
  cvRun(
    () => cfeatures2d.DrawKeyPoints(
      src.ref,
      keypoints.ref,
      dst.ref,
      color.ref,
      flag.value,
    ),
  );
}