윈도우에서 폰트를 찾지 못하는 에러

2021. 1. 2. 13:35파이썬/OCR

text2image --text ./data/train.txt --outputbase ./data/font_image/kor.12lottemartdreambold.exp0 --font '12LotteMartDreamBold' --fonts_dir C:\ppData\Local\Microsoft\Windows\Fonts --fontconfig_tmpdir ./data/tmp
Could not find font named '12LotteMartDreamBold'.
Please correct --font arg.

fonts_dir값의 '\'문자를 '/'로 변환 필요
font_dir = font_dir.replace('\', '/')

fonts_dir은 윈도우와 사용자계정의 디렉토리 중 해당하는 디렉토리 정보를 넣어야 함

'파이썬 > OCR' 카테고리의 다른 글

mftraining 처리할 수 있는 tr 갯수 제한 있음  (0) 2021.01.04
shapeclustering 효과 없음  (0) 2021.01.03
java로 text를 image로 변환하는 샘플  (0) 2020.12.31
tesseract 실행  (0) 2020.12.31
OCR 현대 한글의 모든 글자  (0) 2020.12.31