CTPN(tensorflow版本)训练所需要的数据格式

一、CTPN的tensorflow版本网址如下:

https://github.com/eragonruan/text-detection-ctpn

二、CTPN的tensorflow版本制作自己的数据集(即生成对应的gt_name.txt)

需要标注的格式为:x1,y1,x2,y2,x3,y3,x4,y4,language,content

upper left----(x1,y1)

upper right----(x2,y2)

low right-----(x3,y3)

low left-----(x4,y4)

为顺时针标注

三、将以上的gt_name.txt文件用split_label.py文件进行处理,即可生成训练所需要的标注为小竖条的数据

生成的标注框的小矩形的格式为x1,y1,x2,y2

upper left-------(x1,y1)

low right--------(x2,y2)

四、例子如下:

CTPN(tensorflow版本)训练所需要的数据格式

                                                   原图

五、split_label.py的代码如下

import os
import sys

import cv2 as cv
import numpy as np
from tqdm import tqdm

sys.path.append(os.getcwd())
print(os.getcwd())
#from utils.prepare.utils import orderConvex, shrink_poly
from utils import orderConvex, shrink_poly
DATA_FOLDER = "E:\DataSet\mlt_selected"
OUTPUT = "E:\DataSet\mlt"
MAX_LEN = 1200
MIN_LEN = 600

im_fns = os.listdir(os.path.join(DATA_FOLDER, "image"))
im_fns.sort()

if not os.path.exists(os.path.join(OUTPUT, "image")):
    os.makedirs(os.path.join(OUTPUT, "image"))
if not os.path.exists(os.path.join(OUTPUT, "label")):
    os.makedirs(os.path.join(OUTPUT, "label"))

for im_fn in tqdm(im_fns):
    try:
        _, fn = os.path.split(im_fn)
        bfn, ext = os.path.splitext(fn)
        if ext.lower() not in ['.jpg', '.png']:
            continue

        gt_path = os.path.join(DATA_FOLDER, "label", 'gt_' + bfn + '.txt')
        img_path = os.path.join(DATA_FOLDER, "image", im_fn)

        img = cv.imread(img_path)
        img_size = img.shape
        im_size_min = np.min(img_size[0:2])

        im_size_max = np.max(img_size[0:2])

        im_scale = float(600) / float(im_size_min)
        if np.round(im_scale * im_size_max) > 1200:
            im_scale = float(1200) / float(im_size_max)
        new_h = int(img_size[0] * im_scale)
        new_w = int(img_size[1] * im_scale)
        #print(new_h)
        new_h = new_h if new_h // 16 == 0 else (new_h // 16 + 1) * 16
        new_w = new_w if new_w // 16 == 0 else (new_w // 16 + 1) * 16
        re_im = cv.resize(img, (new_w, new_h), interpolation=cv.INTER_LINEAR)
        re_size = re_im.shape
        print(new_h)
        print(new_w)
        polys = []
        with open(gt_path, 'r') as f:
            print(gt_path)
            lines = f.readlines()
        for line in lines:
            splitted_line = line.strip().lower().split(',')
            x1, y1, x2, y2, x3, y3, x4, y4 = map(float, splitted_line[:8])
            poly = np.array([x1, y1, x2, y2, x3, y3, x4, y4]).reshape([4, 2])
            poly[:, 0] = poly[:, 0] / img_size[1] * re_size[1]
            poly[:, 1] = poly[:, 1] / img_size[0] * re_size[0]
            poly = orderConvex(poly)
            polys.append(poly)
            #cv.polylines(re_im, [poly.astype(np.int32).reshape((-1, 1, 2))], True,color=(0, 255, 0), thickness=2)
            #cv.imshow("plot",re_im)
        res_polys = []
        for poly in polys:
            # delete polys with width less than 10 pixel
            if np.linalg.norm(poly[0] - poly[1]) < 10 or np.linalg.norm(poly[3] - poly[0]) < 10:
                continue

            res = shrink_poly(poly)
            #print(res)
            #for p in res:
               #print(p)
               #cv.polylines(re_im, [p.astype(np.int32).reshape((-1, 1, 2))], True, color=(0, 255, 0), thickness=1)
            res = res.reshape([-1, 4, 2])

            for r in res:
                x_min = np.min(r[:, 0])
                y_min = np.min(r[:, 1])
                x_max = np.max(r[:, 0])
                y_max = np.max(r[:, 1])

                res_polys.append([x_min, y_min, x_max, y_max])

        cv.imwrite(os.path.join(OUTPUT, "image", fn), re_im)
        with open(os.path.join(OUTPUT, "label", bfn) + ".txt", "w") as f:
            for p in res_polys:
                line = ",".join(str(p[i]) for i in range(4))
                f.writelines(line + "\r\n")
                #for p in res_polys:
                    #cv.rectangle(re_im,(p[0],p[1]),(p[2],p[3]),color=(0,0,255),thickness=1)

                #cv.imshow("demo",re_im)
                #cv.imwrite("E:\DataSet\split.jpg",re_im)
                #cv.waitKey(0)
    except:
        print("Error processing {}".format(im_fn))

六、CTPN论文英译汉

https://blog.****.net/Quincuntial/article/details/79475339

参考网址:

https://github.com/eragonruan/text-detection-ctpn/issues/76