OCR(5)
-
[ OCR ] Google Cloud Vision API 를 이용한 OCR 개발 - Python
Google 에서는 매우 정확하게 이미지의 정보를 추출할 수 있는 API 제공합니다. Google Cloud Vision API는 많은 기능이 존재하지만 이 글에서는 이미지에서 텍스트의 영역을 감지하고 문자 인식(OCR)을 수행하는 API에 대해 설명드리도록 하겠습니다. 아래 글 참고 https://cloud.google.com/vision/docs/libraries?hl=ko#windows Vision 클라이언트 라이브러리 | Cloud Vision API | Google Cloud C#, Go, 자바, Node.js, PHP, Python 또는 Ruby로 Vision 코드 작성을 시작하세요. cloud.google.com 1. Google Cloud Vision API 키 발급 먼저 Google Cl..
2022.06.14 -
4. PaddleOCR - 테스트 1
from paddleocr import PaddleOCR,draw_ocr # Paddleocr supports Chinese, English, French, German, Korean and Japanese. # You can set the parameter `lang` as `ch`, `en`, `french`, `german`, `korean`, `japan` # to switch the language model in order. ocr = PaddleOCR(use_angle_cls=True, lang='en') # need to run only once to download and load model into memory img_path = 'PaddleOCR-release-2.5/doc/imgs..
2022.06.13 -
3. PaddleOCR - 샘플코드 실행
아래 코드를 실행 from paddleocr import PaddleOCR,draw_ocr # Paddleocr supports Chinese, English, French, German, Korean and Japanese. # You can set the parameter `lang` as `ch`, `en`, `french`, `german`, `korean`, `japan` # to switch the language model in order. ocr = PaddleOCR(use_angle_cls=True, lang='korean') # need to run only once to download and load model into memory img_path = 'example/0.jpg' r..
2022.06.13 -
2. PaddleOCR - 패키지설치
1. Installation conda activate paddle_env 1.1 Install PaddlePaddle If you do not have a Python environment, please refer to Environment Preparation. If you have CUDA 9 or CUDA 10 installed on your machine, please run the following command to install python3 -m pip install paddlepaddle-gpu If you have no available GPU on your machine, please run the following command to install the CPU version py..
2022.06.13 -
1. PaddleOCR - 개발환경 구성
https://github.com/PaddlePaddle PaddlePaddle PaddlePaddle has 82 repositories available. Follow their code on GitHub. github.com 1.개발환경 구성 파이썬 설치 아나콘다 설치 가상환경 만들기 https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.5/doc/doc_en/environment_en.md GitHub - PaddlePaddle/PaddleOCR: Awesome multilingual OCR toolkits based on PaddlePaddle (practical ultra lightweight OCR system Awesome multilingu..
2022.06.13