OpenCV 网格区域
我想使用 OpenCV 找到来自相机的图像的非白色区域。我已经可以使用网络摄像头中的图像找到圆圈。我想制作一个网格或其他东西,这样我就可以确定图像不是白色的百分比。有什么想法吗?
I want to find the non-white area of an image from a camera using OpenCV. I can already find circles using images from my web cam. I want to make a grid or something so I can determine the percent of the image is not white. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想找到图像中非白色像素的百分比,为什么不直接计算所有非白色像素并将其除以图像中的像素总数呢?
C 代码
If you want to find the percentage of pixels in your image which is not white, why don't you just count all the pixels which are not white and divide it by the total number of pixels in the image?
Code in C
如果您的图像仅为黑白,您可以使用
cv::countNonZero
并进行减法。You can use
cv::countNonZero
and subtract if your image is only black and white.