←Select platform

EnableDoublePass Property

Summary

Gets or sets a value indicating whether to enable the double pass setting when reading MicroPDF417 symbols.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
public bool EnableDoublePass { get; set; } 
Public Property EnableDoublePass As Boolean 
public bool EnableDoublePass {get; set;} 
@property (nonatomic, assign)          BOOL enableDoublePass 
public boolean getEnableDoublePass() 
public void setEnableDoublePass(boolean value) 
             
 <br/>get_EnableDoublePass();<br/>set_EnableDoublePass(value);<br/>Object.defineProperty('EnableDoublePass');  
public: 
property bool EnableDoublePass { 
   bool get(); 
   void set (    bool ); 
} 

Property Value

true to use double pass when reading MicroPDF417 symbols. Otherwise, false. The default value is false.

Remarks

When reading 2D barcodes, LEADTOOLS can perform internal auto preprocessing on the image and try again if the engine cannot detect the barcode required. This may take extra processing and increase the barcode detection time. Therefore, it is best to set EnableDoublePass to true only in certain situations, as follows:

  • The application is reading barcodes of this type exclusively (for example, a dedicated MicroPDF417 reader is being used). In this case, reading the barcodes is always more important than recognition speed.

  • The application uses barcode detection on a server. In this case, the time spent on the actual barcode detection is most probably less than the time required to send the image to the server and get the result back due to network latency. Thus it makes sense to enable double pass in this situation.

  • The images provided may have a small resolution (DPI) or known to come from a source that does not always provide clean images. For example, a Fax machine or a Scanner. Enabling double pass here ensures that you can read the barcodes regardless on the quality of the input image.

  • The LEADTOOLS .NET C# and VB Barcode demos leave double pass disabled by default. If the engine tries to read a MicroPDF417 barcode but cannot find it, it will then ask the user if DoublePass should be enabled and reading be retried. An approach like that (or an automated one: Read. If failure, enable and read again) can also be used.

Example

For an example, refer to MicroPDF417BarcodeReadOptions.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Barcode Assembly