Aspose.OCR test

How can I try Aspose.OCR?
I installed the package from NuGet, but when I run api.Recognize, the application freezes.
Do I need a trial license?

@jajiro

You can obtain a temporary license for free from our website to evaluate the API. If issue still persists, please share what file and code snippet are you testing with. We will test the scenario in our environment and address it accordingly.

Here is the code:

Dim api = New OCR.AsposeOcr()

Dim settings As RecognitionSettings = New RecognitionSettings()
settings.Language = Language.Spa
settings.DetectAreasMode = DetectAreasMode.CURVED_TEXT

settings.DetectAreasMode = DetectAreasMode.LEAN
settings.ThreadsCount = 1

Dim filters As PreprocessingFilter = New PreprocessingFilter From {
PreprocessingFilter.ContrastCorrectionFilter(),
PreprocessingFilter.AutoDewarping()
}
Dim photos As OcrInput = New OcrInput(InputType.PDF, filters)
photos.Add(FilePdf)

Dim results As List(Of RecognitionResult) = api.Recognize(photos, settings) ’ Here it stop

It occurs with any pdf file.

@jajiro

Is it still freezing after applying the license? Can you please share the sample PDF as well so that we can test it in our environment and address the issue accordingly?