WenmuZhou / PytorchOCR

基于Pytorch的OCR工具库,支持常用的文字检测和识别算法

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rec dataset split error

morestart opened this issue · comments

params = m_line.split(' ')

in document, txt use \t to split data.....

and img path is error too

m_image_name ='/home/Work/DataSet/360/images/'+ m_image_name

how to solve it?please help me . I have the same question!!!

@bowenliu1996

params = m_line.split('\t')
m_image_name = m_image_name

Thanks