[Open CV C++] 자동차 번호판 ROI 크롭 후 OCR로 텍스트 출력하기
*OpenCV 라이브러리 설치 순서
Releases
OpenCV is the world’s biggest computer vision library. It’s open source, contains over 2500 algorithms and is operated by the non-profit Open Source Vision Foundation. Support OpenCV
opencv.org
-C/C++ -> 추가 포함 디렉터리
-링커-> 입력 -> 추가 종속성
각각 아래의 폴더 위치 안에 있음.
C:\opencv-4.5.0\build\x64\vc15\bin![]() |
C:\opencv-4.5.0\build\x64\vc15\lib![]() |
OCR 변환 Tesserart 라이브러리 설치법
https://bigmacgood.tistory.com/2
Visual Studio에서 Tesseract-OCR 사용해보기
Tesseract-OCR 설치하는 방법 https://github.com/UB-Mannheim/tesseract/wiki 위의 사이트에서 tesseract-ocr-w64-setup-v5.0.1.20220118.exe 파일을 다운로드 하고 설치합니다. 설치할 때 korean 파일을 추가해줍니다. 1단계 :
bigmacgood.tistory.com
Getting started with Tesseract optical character recognition (OCR) library in Visual Studio – technical-recipes.com
Getting started with Tesseract optical character recognition (OCR) library in Visual Studio Getting started with Tesseract optical character recognition (OCR) library in Visual Studio Andy 25 April 2021 C++ / MFC / STL, Image Detection This post is a how-t
www.technical-recipes.com
작성한 코드는 아래에 있습니다.
자동차 번호판 ROI 영역 설정해서 crop 후 파일로 저장하는 코드가 main.cpp
크롭된 이미지 read해서 OCR로 변환해주는 코드가 PlateToText.cpp
입니다.
https://github.com/woochang0110/CarPlateReader
GitHub - woochang0110/CarPlateReader: [OpenCV] 자동차 번호판 ROI 크롭 후 OCR로 텍스트 출력
[OpenCV] 자동차 번호판 ROI 크롭 후 OCR로 텍스트 출력. Contribute to woochang0110/CarPlateReader development by creating an account on GitHub.
github.com
https://www.youtube.com/watch?v=7xuHN38yGcE
'Project' 카테고리의 다른 글
[Project] STM32를 활용한 엘리베이터 만들기 (0) | 2024.02.07 |
---|---|
[Project] STM32를 활용한 세탁기 만들기 (0) | 2024.02.07 |
[Project] 불완전하게 분리수거 된 재활용품에 대한 최종분류 시스템 (0) | 2024.02.07 |
[Project] 영상처리 라이브러리를 활용한 프로그램 만들기 (0) | 2024.02.07 |