C# implementation of Tesseract optical character recognition with pre-recongizing image processing and translation.
- .NET Framework 4.6.1 runtime
- Visual Studio 2022
- Azure account (For Azure translator)
- Create an Azure subscription and translator resource. Link
- Create
Secret.cs
intocsharp\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/";
}
}