drawKeyPoints function
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,
),
);
}