Hello,
I have a problem with function ProcessImage :
String sourceFilePath = "C:\CINPROCESSING\nom.jpg";
string language = "Arabic";
ProcessingSettings settings;
settings.SetLanguage("Arabic");
OcrSdkTask task=restClient.ProcessImage(sourceFilePath, settings );
String outputFileBase = "C:\\new\\text.txt";
task = waitForTask(task, restClient);
I still have ERROR : Utilisation d'une variable locale non assignée 'settings' ??
How can i fix it?
Thanks,