drawKeyPointsAsync function
Future<void>
drawKeyPointsAsync(
- Mat src,
- VecKeyPoint keypoints,
- Mat dst,
- Scalar color,
- DrawMatchesFlag flag,
Implementation
Future<void> drawKeyPointsAsync(
Mat src,
VecKeyPoint keypoints,
Mat dst,
Scalar color,
DrawMatchesFlag flag,
) async {
await cvRunAsync0<void>(
(callback) =>
cfeatures2d.cv_drawKeyPoints(src.ref, keypoints.ref, dst.ref, color.ref, flag.value, callback),
(c) => c.complete(),
);
}