如何在opencv python中拆分连接的轮廓

时间:2018-04-20 12:06:56

标签: python python-2.7 opencv image-processing

如何分割图像中连接的两个字符。

参考下图,

enter image description here

我想分成MENT

enter image description here

,第二个图像为IN。

import cv2;
import numpy as np;

# Read image
im_in = cv2.imread("testResize.jpg", cv2.IMREAD_GRAYSCALE); 
th, im_th = cv2.threshold(im_in, 220, 255, cv2.THRESH_BINARY_INV);
h, w = im_th.shape[:2]
mask = np.zeros((h+2, w+2), np.uint8)
kernel = np.ones((5,5), np.uint8) 
img_erosion = cv2.erode(im_th, kernel, iterations=2)
cv2.waitKey(0)

这是我的原始图片,  enter image description here

我想将图片读作“INSTRUMENT CLUSTER”

由于这些字母已加入,我收到了错误的文字。所以我想拆分连接的字母

0 个答案:

没有答案