Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有多少种方法可以判断opencv中的照片(几行)
在下面的示例中,该行有 3
http://www.uploadimage.co.uk/images/1511642.jpg
谢谢
首先尝试扩大图像的白色部分。这将使黑色条更薄。一旦它比较薄,您可以使用霍夫线变换,它返回它找到的线数组。然后,任务就像计算数组中元素的数量一样简单。当然,在将适当的参数传递给 Hough 变换时,您必须进行大量试验和错误,以免它返回代表图像中相同区域的间隔很近的线。您可能还需要根据斜率和截距对线进行分组。