polylines function
Mat
polylines(
- InputOutputArray img,
- VecVecPoint pts,
- bool isClosed,
- Scalar color, {
- int thickness = 1,
- int lineType = LINE_8,
- int shift = 0,
Polylines draws several polygonal curves.
For more information, see: https:///docs.opencv.org/master/d6/d6e/group__imgproc__draw.html#ga1ea127ffbbb7e0bfc4fd6fd2eb64263c
Implementation
Mat polylines(
InputOutputArray img,
VecVecPoint pts,
bool isClosed,
Scalar color, {
int thickness = 1,
int lineType = LINE_8,
int shift = 0,
}) {
cvRun(() => cimgproc.cv_polylines(img.ref, pts.ref, isClosed, color.ref, thickness, ffi.nullptr));
return img;
}