如何更改connectedComponetsWithStats opencv python中连接组件的标签

时间:2017-04-06 03:04:00

标签: python opencv

我正在为马拉雅拉姆建立一个OCR系统。我正在使用cv2.connectedComponentsWithStats函数进行字符分割。

Here is the sample word

我希望连接组件从左到右标记,即基于x坐标。但该功能是根据y坐标标记连接的组件。

这是带有(x,y,w,h)的标记连通分量的字典。我希望连接的组件从左到右标记,即按x坐标的递增顺序

{1: [287, 4, 19, 12], 2: [196, 19, 73, 33], 3: [276, 19, 29, 33], 4: [12, 20, 65, 34], 5: [102, 20, 57, 33], 6: [164, 20, 29, 34], 7: [80, 21, 16, 50], 8: [311, 45, 10, 16]}

有没有办法改变?

0 个答案:

没有答案