BarCodeRecognition tif format Code39Extended

Hello

We have problems with recognizing barcodes in tif format. Barcode type is
Code39Extended

50% of the documents are reconized.

Attachted an example that does go wrong. Is is possible to look what is going wrong.

vr gr

Kees

Hi,


Could you please add the MedianSmoothing recognition hints before calling the Read() method as below? It worked at my end for the attached image.

BarCodeReader reader = new BarCodeReader(“harrie.tif”, BarCodeReadType.Code39Standard);
reader.SetHints(RecognitionHints.ImageBinarizationHints.MedianSmoothing);
while (reader.Read() == true)

Works fine

Thankx