字段CV_FILLED
属于哪个OpenCV4Android类?我无法从谷歌搜索中找到答案。
它用作Imgproc.drawContours()
方法的第5个参数的值。来自documentation:
厚度 - 绘制轮廓的线条粗细。如果是负数(例如,,厚度= CV_FILLED ),则绘制轮廓内部。
我需要使用它,但是在Android / Java中,我不能像这样使用它,我需要使用点运算符所使用的类的名称,类似于theClass.CV_FILLED
。如果我尝试只使用CV_FILLED
,编译器会抱怨,
" CV_FILLED无法解析为变量"。
答案 0 :(得分:1)
drawContour示例:
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作为例子。