Evezerest / PPOCRLabel

PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, with built-in PP-OCR model to automatically detect and re-recognize data. It is written in Python 3 and PyQT5, supporting rectangular box annotation and four-point annotation modes. Annotations can be directly used for the training of PP-OCR detection and recognition models.
175 stars 41 forks source link

PPOCRLabel保存识别结果时可否将合并保存改为单独保存? #36

Closed sls463 closed 2 years ago

sls463 commented 3 years ago

当前PPOCRLabel 点“保存识别结果” 后会将所有图片识别出来的文本保存到一个 rec_gt.txt 文件中,请问能不能设置为各个图片识别出来的文本进行单独保存呢?谢谢 例如:001.jpg、002.jpg、003.jpg、004.jpg、005.jpg 识别结果保存为:001.txt、002.txt、003.txt、004.txt、005.txt

Evezerest commented 3 years ago

目前不可以,因为现有的输出格式是直接用于PaddleOCR训练的。当然也可以自己再写个脚本处理一下。