Simple images cannot be read out

We are currently evaluating Aspose.OCR. At our first attempt, we were shocked at how poorly images were scanned. Are we possibly doing something wrong? Attached is a simple picture …
attemp_2.jpg (269.7 KB)

attemp_1.jpg (177.4 KB)

@swe-1

Can you please share the sample code snippet in text format that you have tried at your end along with the sample images that you are processing. We will further proceed accordingly to investigate the issue and rectify it.

Thank you,

here the source Code. We also use a tmp license now. But the result is the same …

    public static void main( String[] args )
    {
    // Initialize the licensing component
    com.aspose.ocr.License license = new com.aspose.ocr.License();

    // Load the license from file
    license.setLicense("/Users/Thomas/Downloads/Aspose.OCRforJava.lic");

    AsposeOCR api = new AsposeOCR();
    try {
    CarPlateRecognitionSettings rs = new CarPlateRecognitionSettings();
    rs.setLanguage(Language.Deu);
    OcrInput in = new OcrInput(InputType.SingleImage);
    in.add("/Users/Thomas/Downloads/images.jpg");
   
       ArrayList<RecognitionResult> result = api.RecognizeCarPlate(in, rs);
       for (int i = 0; i < result.size(); i++) {
        RecognitionResult r = result.get(i);
        System.out.println(r.GetJson());
       }
       
       System.out.println(result);
    } catch (IOException e) {
       e.printStackTrace();
    }
    }
}

typical pictures …

image1.jpeg (13.7 KB)

IMG_9621.jpg (479.9 KB)

@swe-1

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): OCRJAVA-342

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.