从 python 中的重叠矩形中找到唯一区域

Find the unique area from the overlapping rectangles in python

我正在尝试从生成的多个边界框中找到唯一区域,以查找 python

中产品的屏幕截图

您可以先尝试按颜色对图像进行阈值处理(使用 HSV threshold 或 RGB)。

然后有几个二进制图像,你可以使用 Contour Approximation (number 4 on the page) 特征,使用 Douglas-Peucker 算法。填充生成的边界框。

之后,您可以将生成的二值图像彼此相减,以找到相交的确切区域。

希望对您有所帮助!