Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Create Video OCR? [closed]

I am working in win form C# application. Application grabs the images from video device like (TV/Camera or input video file). Then processed it and save it in the text document.

My question is, "How to create Digital Video OCR ?"

please suggest me any tutorial/link/source code.

like image 940
user2634551 Avatar asked Oct 07 '13 11:10

user2634551


2 Answers

Google Cloud provides video OCR API. https://cloud.google.com/video-intelligence/docs/text-detection

You can directly call this API with your video. It will return text bounding box and it's timestamp associated with your video.

like image 178
Geoffrey Wu Avatar answered Oct 02 '22 20:10

Geoffrey Wu


Start with the tesseract-ocr .net engine for the OCR part and Emgu CV for the camera methods. Good luck.

like image 31
Boyko Perfanov Avatar answered Oct 02 '22 21:10

Boyko Perfanov