Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.36 KB

README.MD

File metadata and controls

35 lines (22 loc) · 1.36 KB

Screen Translator

Screen Translator for Windows, detects the text in your screen using Emgu CV for instant translation via Google Translate.
Builds can be found here


Requeriments

OCR Training Data

This software requires OCR training data for screen text recognition in the folder “tessdata”.
Training data samples for different languages can be found here

.NET Framework 4.5.2

This software requires .NET Framework 4.5.2 or adove.

languages.json

You need to create a file called langueges.json containing the languages info

Example 1

[{"name":"Spanish","gTranslateKey":"es","ocrKey":"spa"},{"name":"English","gTranslateKey":"en","ocrKey":"eng"}]

Example 2

[{"name":"Spanish","gTranslateKey":"es”},{"name":"English","gTranslateKey":"en","ocrKey":"eng"}]

Where

  • Name: Unique long language name.
  • gTranslateKey: Represents the language supported by google translate API.
  • orcKey: Represents the language supported by openCV placed in “tessdata” folder.