전체 글(702)
-
byte <-> str 변환
temp = r'abcd' str 변환 : temp.decode() temp = 'abcd' byte 변환 : temp.endcode()
2021.01.02 -
윈도우에서 폰트를 찾지 못하는 에러
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은 윈도우와 사용자계정의 디렉토리 중 해당하는 디렉토리 정보를 ..
2021.01.02 -
OSError: [WinError 17] 시스템은 파일을 다른 디스크 드라이브로 옮길 수 없습니다: '
os.rename(src,dest)으로는 다른 드라이브로 이동 불가능 import shutil shutil.move(src,dest)
2021.01.02 -
파일크기 확인
os.path.getsize(file)
2021.01.01 -
java로 text를 image로 변환하는 샘플
jogeum.net/21
2020.12.31 -
tesseract 실행
# box 파일만 생성 tesseract ./aa/aa.png ./aa/aa -l kor batch.nochop makebox # tif, box 파일 생성 "unicharset_extractor --output_unicharset ./data/font_image/unicharset text2image --text %s --outputbase %s --font '%s' --fonts_dir %s --fontconfig_tmpdir %s" %(train, outputbase, font_name, font_dir,temp) # tr 파일 생성 "tesseract %s %s nobatch box.train" %(tif,outputbase) # unicharset 파일 생성 'unicharset_extracto..
2020.12.31