field/constant CV_FILLED 属于哪个 OpenCV4Android class?
Which OpenCV4Android class does the field/constant CV_FILLED belongs to?
OpenCV4Androidclass字段CV_FILLED
属于什么?我无法通过 Google 搜索找到答案。
它用作 Imgproc.drawContours()
method. From the documentation:
的第 5 个参数的值
thickness – Thickness of lines the contours are drawn with. If it is negative (for example, thickness=CV_FILLED ), the contour interiors are drawn.
我需要使用它,但是在 Android/Java 中,我不能那样使用它,我需要使用它所属的 class 的名称和点运算符,一些东西喜欢 theClass.CV_FILLED
。如果我尝试只使用 CV_FILLED
,编译器会抱怨,
“CV_FILLED 无法解析为变量”。
绘制轮廓示例:
Imgproc.drawContours(drawOn, handContours, idx, new Scalar(180, 10, 100, 255), Core.BORDER_DEFAULT, Core.LINE_8, new Mat(), 25, new Point(0, 0));
所以你应该使用 Core.FILLED 作为例子。
OpenCV4Androidclass字段CV_FILLED
属于什么?我无法通过 Google 搜索找到答案。
它用作 Imgproc.drawContours()
method. From the documentation:
thickness – Thickness of lines the contours are drawn with. If it is negative (for example, thickness=CV_FILLED ), the contour interiors are drawn.
我需要使用它,但是在 Android/Java 中,我不能那样使用它,我需要使用它所属的 class 的名称和点运算符,一些东西喜欢 theClass.CV_FILLED
。如果我尝试只使用 CV_FILLED
,编译器会抱怨,
“CV_FILLED 无法解析为变量”。
绘制轮廓示例:
Imgproc.drawContours(drawOn, handContours, idx, new Scalar(180, 10, 100, 255), Core.BORDER_DEFAULT, Core.LINE_8, new Mat(), 25, new Point(0, 0));
所以你应该使用 Core.FILLED 作为例子。