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.DrawKeyPoints_Async(
src.ref,
keypoints.ref,
dst.ref,
color.ref,
flag.value,
callback,
),
(c) => c.complete(),
);
}