circle function
void
circle(})
Implementation
void circle(
VARP img,
(double, double) center,
int radius,
Scalar color, {
int thickness = 1,
int lineType = LINE_8,
int shift = 0,
}) {
final cCenter = Point.fromTuple(center);
c.mnn_cv_circle(img.ptr, cCenter.ref, radius, color.ref, thickness, lineType, shift);
cCenter.dispose();
}