Project/OCR (3) 썸네일형 리스트형 [Project] E2E_OCR Model Architecture 보호되어 있는 글입니다. [CODE] data image , annotation 형식 맞추기 def main(db_fname): print('START!') db = h5py.File(db_fname, 'r') dsets = sorted(db['data'].keys()) print ("total number of images : ", colorize(Color.RED, len(dsets), highlight=True)) print() for num ,k in enumerate(dsets): #add txt f = open('{}/gt_img_{}.txt'.format(GT_PATH,num),'w') rgb = db['data'][k][...] charBB = db['data'][k].attrs['charBB'] wordBB = db['data'][k].attrs['wordBB'] txt = db.. [CODE] SynthText - Korean ver 응용 https://arxiv.org/pdf/1604.06646.pdf https://github.com/ankush-me/SynthText 조작 간편할 것이라 생각됨 1. 투명도 너무 높거나 지나치게 잘려있는 등 육안으로도 알아보기 힘든 변형 존재 투명도 colorize3_poisson.py op = 0.50 + 0.1*np.random.randn() 2. 여러 줄로 나오는경우 -> 한번에 /n으로 묶어서 처리 (bbox도 마찬가지로 함께 처리) text_utils.py def get_nline_nchar nline = 1 3. 글씨 잘려서 나오는 경우 pygame ver 1.9.6으로 변경 -> 해결 4. 글씨체 제한적 fontlist.txt.에 추가 5. output style 현재 프로젝트에서 기준으로.. 이전 1 다음