Hi, We are using evaluation to test the barcode recognition and it seems that it takes 3-4 seconds to recognize an image 1900x2400 pixels for CODE_39 barcode. Is this normal?
Here are some of the settings we were trying to apply:
BufferedImage imageToOCR = ImageIO.read(new File(“C:\GRO.png”));
BarCodeReader reader = new BarCodeReader(imageToOCR);
reader.setBarCodeReadType( DecodeType.CODE_39_STANDARD);
reader.setQualitySettings(QualitySettings.getHighPerformance());
reader.getQualitySettings().setAllowOneDFastBarcodesDetector(true);
reader.getQualitySettings().setMedianSmoothingWindowSize(4);
reader.getQualitySettings().setAllowOneDFastBarcodesDetector(true);
reader.getQualitySettings().setMedianSmoothingWindowSize(4);