You are here: Start » AVL.NET » AVL.DetectSingleBarcode(AvlNet.Image, AvlNet.BarcodeFormat?, float, int, int, int, float, float, AvlNet.Rectangle2D?)

AVL.DetectSingleBarcode(AvlNet.Image, AvlNet.BarcodeFormat?, float, int, int, int, float, float, AvlNet.Rectangle2D?)

Determines the position of a single barcode on the input image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void DetectSingleBarcode(
	AvlNet.Image inImage,
	AvlNet.BarcodeFormat? inFormat,
	float inMinGradientLength,
	int inBaseBarWidth,
	int inScanCount,
	int inScanWidth,
	float inMinStrength,
	float inSmoothingStdDev,
	out AvlNet.Rectangle2D? outBarcodePosition
)

Parameters

inImage
Type: AvlNet.Image
Input image
inFormat
Type: System.Nullable<AvlNet.BarcodeFormat>
Format of the barcode, or null.
inMinGradientLength
Type: System.Single
Minimal gradient length of edge pixels used for detecting barcodes
inBaseBarWidth
Type: System.Int32
Estimated width of the thinnest bar
inScanCount
Type: System.Int32
Number of scan lines used in detecting barcode
inScanWidth
Type: System.Int32
Width of the single scan
inMinStrength
Type: System.Single
Minimal strength of an extracted edge
inSmoothingStdDev
Type: System.Single
Standard deviation of the gaussian smoothing applied to the profile extracted in each scan
outBarcodePosition
Type: System.Nullable<AvlNet.Rectangle2D>
Position of the found barcode

See also