파이썬 기초 활용편 #문자인식 #이미지보정 #tesseract #opencv
다른 강의자료는 www.codingnow.co.kr/ 여기를 참고해주세요.!!
코딩나우
프로그래밍 교육및 개발의뢰 받습니다.
www.codingnow.co.kr
[소스코드]
아래 파일을 참고하거나 홈페이지에 깃서버 주소를 참고해주세요.
OCR 엔진을 활용한 글자 인식
⭐tesseract 프로그램 설치
https://github.com/UB-Mannheim/tesseract/wiki
GitHub - UB-Mannheim/tesseract: Tesseract Open Source OCR Engine (main repository)
Tesseract Open Source OCR Engine (main repository) - GitHub - UB-Mannheim/tesseract: Tesseract Open Source OCR Engine (main repository)
github.com
설치시에 한글 데이타 가져오기
⭐설치시에 한글누락 되었거나, 업데이트 할 때
다운 받아야하는 학습된 한글 데이터 파일명: kor.traineddata
파일 위치: tesseract가 설치된 경로 C:\Program Files\Tesseract-OCR\tessdata
https://github.com/tesseract-ocr/tessdata/
GitHub - tesseract-ocr/tessdata: Trained models with support for legacy and LSTM OCR engine
Trained models with support for legacy and LSTM OCR engine - GitHub - tesseract-ocr/tessdata: Trained models with support for legacy and LSTM OCR engine
github.com
⭐tesseract 환경변수 등록
⭐cmd로 tesseract 설치 확인
⭐라이브러리 패키지 설치
pip install pillow
pip install pytesseract
pip install opencv-python