You are here: Start » AVL.NET » AVL.RecognizeBarcode(AvlNet.Image, AvlNet.Rectangle2D, AvlNet.CoordinateSystem2D?, AvlNet.BarcodeFormat?, int, int, float, float, string, AvlNet.BarcodeFormat?, AvlNet.Rectangle2D, AvlNet.Segment2D[])

AVL.RecognizeBarcode(AvlNet.Image, AvlNet.Rectangle2D, AvlNet.CoordinateSystem2D?, AvlNet.BarcodeFormat?, int, int, float, float, string, AvlNet.BarcodeFormat?, AvlNet.Rectangle2D, AvlNet.Segment2D[])

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void RecognizeBarcode(
	AvlNet.Image inImage,
	AvlNet.Rectangle2D inBarcodePosition,
	AvlNet.CoordinateSystem2D? inBarcodePositionAlignment,
	AvlNet.BarcodeFormat? inBarcodeFormat,
	int inScanCount,
	int inScanWidth,
	float inMinStrength,
	float inSmoothingStdDev,
	out string outDecodedText,
	out AvlNet.BarcodeFormat? outBarcodeFormat,
	out AvlNet.Rectangle2D outAlignedBarcodePosition,
	out AvlNet.Segment2D[] diagScheduledScanSegments
)

Parameters

inImage
Type: AvlNet.Image
inBarcodePosition
Type: AvlNet.Rectangle2D
inBarcodePositionAlignment
Type: System.Nullable<AvlNet.CoordinateSystem2D>
inBarcodeFormat
Type: System.Nullable<AvlNet.BarcodeFormat>
inScanCount
Type: System.Int32
inScanWidth
Type: System.Int32
inMinStrength
Type: System.Single
inSmoothingStdDev
Type: System.Single
outDecodedText
Type: System.String
outBarcodeFormat
Type: System.Nullable<AvlNet.BarcodeFormat>
outAlignedBarcodePosition
Type: AvlNet.Rectangle2D
diagScheduledScanSegments
Type: AvlNet.Segment2D

Examples

Rotated barcode.

Low quality barcode printed on plastic foil.

Barcode on package wrapped in plastic foil.

Barcode on blurry image.

Barcode on standard 330ml can.

Barcode on reflective and wrapped surface.

EAN-13 with add-on 2 used to indicate a book edition.

EAN-13 with add-on 5 to give a suggestion for the price.

Remarks

Minimal bar width requirement

To provide precise detection of the barcode width of the thinnest bar should be at least 1.5 pixels.

Depending on the barcode format guard or start/end code patterns must be readable.

Pharmacode usage

The pharmacode barcode type can be read correctly in both directions. To get results from both directions use a Pharmacode and PharmacodeInversed barcode types.

Before decoding a Pharmacode the code orientation angle is normalized to a range from -45° to 135° what makes the code decoding more stable

Results of reading using a different Pharmacode directions: Pharmacode = 23 and PharmacodeInversed = 16.

Using a relative coordinate systems

For more information about local coordinate systems please refer to the following article.

See also