繁体   English   中英

在具有嘈杂边的矩形周围找到已知大小的旋转边界框

[英]Find a rotated bounding box of known size around a rectangle with noisy sides

我试图在一个矩形不太完美的二值化图像周围找到一个旋转的边界框。 瑕疵总是不同的:有时它是空心的,有时里面有东西,有时其中一个边缘缺少一块,有时边缘上有一块额外的块,它们总是稍微旋转一个随机量,但是大小并且预期边界框的形状总是几乎相同的绝对值(以像素为单位)。

这里有一些我作为输入的样本(调整大小以便更好地适应帖子):

理想情况下,我想在白色矩形的外面找到一个边界框(虽然我对边缘只是感兴​​趣),如下所示:

(通过反转其中一个空心部件,获得最大的连接部件,并获得旋转的强制尺寸)

到目前为止,我已经尝试过一个旋转的正确并随后强制形状,这几乎适用于所有情况,除非沿着其中一个边缘有一个额外的块。 我已经尝试过连接组件以隔离它的一部分并在它们周围获得边界框,只要它们是空心的,它就适用于每种情况。 我试图扩大和侵蚀图像,获得轮廓和线条以试图找到只有四个角点,但我也没有运气。 我也在网上寻找任何有用的东西都无济于事。

任何帮助或想法将不胜感激。

我的解决方案包括两部分:

  1. 通过找到最大的连接组件找到(直立)大白色矩形的边界框,填充其中的所有孔,找到外部垂直和水平线(Hough),通过获取最小/最大x / y坐标获得边界框。
  2. 将给定大小的(填充)矩形与步骤1中的边界框中心以不同角度匹配,打印最佳匹配作为结果。

以下是一个简单的程序,演示了这种方法。 通常从命令行传入开头的参数(文件名,已知矩形的大小,角度搜索范围)。

    import cv2
    import numpy as np

    # arguments
    file = '1.png'
    w0, h0 = 425, 630  # size of known rectangle
    ang_range = 1      # posible range (+/-) of angle in degrees

    # read image
    img = cv2.imread(file, cv2.IMREAD_GRAYSCALE)
    h, w = img.shape

    # find biggest connceted components
    nb_components, output, stats, _ = cv2.connectedComponentsWithStats(img, connectivity=4)
    sizes = stats[:, -1]
    max_label, max_size = 1, sizes[1]
    for i in range(2, nb_components):
        if sizes[i] > max_size:
            max_label = i
            max_size = sizes[i]
    img2 = np.zeros(img.shape, np.uint8)
    img2[output == max_label] = 128

    # fill holes
    contours, _ = cv2.findContours(img2, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE)
    for contour in contours:
        cv2.drawContours(img2, [contour], 0, 128, -1)

    # find lines
    edges = cv2.Canny(img2, 50, 150, apertureSize = 3)
    lines = cv2.HoughLinesP(edges, 1, np.pi/180, 40)

    # find bounding lines
    xmax = ymax = 0
    xmin, ymin = w-1, h-1
    for i in range(lines.shape[0]):
        x1 = lines[i][0][0]
        y1 = lines[i][0][1]
        x2 = lines[i][0][2]
        y2 = lines[i][0][3]
        cv2.line(img2, (x1,y1), (x2,y2), 255, 2, cv2.LINE_AA)
        if abs(x1-x2) < abs(y1-y2):
            # vertical line
            xmin = min(xmin,x1,x2)
            xmax = max(xmax,x1,x2)
        else:
            # horizcontal line
            ymin = min(ymin,y1,y2)
            ymax = max(ymax,y1,y2)
    cv2.rectangle(img2, (xmin,ymin), (xmax,ymax), 255, 1, cv2.LINE_AA)
    cv2.imwrite(file.replace('.png', '_intermediate.png'), img2)

    # rectangle of known size centered at bounding box
    xc = (xmax + xmin) / 2
    yc = (ymax + ymin) / 2
    box = np.zeros(img.shape, np.uint8)
    box[int(yc-h0/2):int(yc+h0/2), int(xc-w0/2):int(xc+w0/2)] = 255

    # find best match of this rectangle at different angles
    smax = angmax = 0
    for ang in np.linspace(-ang_range, ang_range, 20):
       rm = cv2.getRotationMatrix2D((xc,yc), ang, 1)
       rotbox = cv2.warpAffine(box, rm, (w,h))
       s = cv2.countNonZero(cv2.bitwise_and(rotbox, img))
       if s > smax:
           smax = s
           angmax = ang

    # output and visualize result
    def draw_rotated_rect(img, size, center, angle, color, thickness):
        rm = cv2.getRotationMatrix2D(center, angle, 1)
        p0 = np.dot(rm,(xc-w0/2, yc-h0/2,1))
        p1 = np.dot(rm,(xc-w0/2, yc+h0/2,1))
        p2 = np.dot(rm,(xc+w0/2, yc+h0/2,1))
        p3 = np.dot(rm,(xc+w0/2, yc-h0/2,1))
        pnts = np.int32(np.vstack([p0,p1,p2,p3]) + 0.5).reshape(-1,4,2)
        cv2.polylines(img, pnts, True, color, thickness, cv2.LINE_AA)
        print(f'{file}: edges {pnts[0].tolist()}, angle = {angle:.2f}°')

    res = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
    draw_rotated_rect(res, (w0,h0), (xc,yc), angmax, (0,255,0), 2)
    cv2.imwrite(file.replace('.png', '_result.png'), res)

中间结果显示它是如何工作的(灰色=填充最大连通分量,粗白线= Hough线,薄白色矩形=直立边界框):
(要查看完整尺寸的图片,请单击它们,然后在文件扩展名之前删除最后的m

中间体1 中级2 中级3 中级4

结果的可视化(绿色=已知大小的旋转矩形):

决赛1 决赛2 决赛3 决赛4

结果(最终应该被钳制到[0,图像大小),-1是由于浮点旋转):

1.png: edges [[17, -1], [17, 629], [442, 629], [442, -1]], angle = 0.00°
2.png: edges [[7, 18], [9, 648], [434, 646], [432, 16]], angle = 0.26°
3.png: edges [[38, 25], [36, 655], [461, 657], [463, 27]], angle = -0.26°
4.png: edges [[36, 14], [28, 644], [453, 650], [461, 20]], angle = -0.79°

正如我们在图3中看到的,匹配并不完美。 这可能是由于示例图像缩小到有些不同的大小,当然我不知道已知矩形的大小,所以我只是为演示假设了一个合适的值。
如果这也与真实数据一起发生,您可能不仅要改变角度以找到最佳匹配,还要将匹配框向上/向下和向右/向左移动几个像素。 例如,请参阅Dawson-Howe的第8.1节:OpenCV的计算机视觉实用介绍,了解更多详情。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM