Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.49 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.49 KB

Kikuzuki

C# implementation of Tesseract optical character recognition with pre-recongizing image processing and translation.

usage1 usage2

Requirements

  • .NET Framework 4.6.1 runtime

Reference

Develop

Development Requirements

  • Visual Studio 2022
  • Azure account (For Azure translator)

Azure Translator Cofiguration

  • Create an Azure subscription and translator resource. Link
  • Create Secret.cs into csharp\Common folder
  • Fill Secret.cs with these following
namespace Kikuzuki
{
    class TranslatorConfig
    {
        public static readonly string TranslatorKey = <Your Translator Key>;
        public static readonly string TranslatorRegion = <Your Translator Region>;
        public static readonly string TranslatorEndpoint = "https://api.cognitive.microsofttranslator.com/";
    }
}

Author

Panepo