You are here: Start » FIL.NET » FIS.RecognizeBarcode Method

FIS.RecognizeBarcode Method

Extracts information from a barcode located on the input image at a given position.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void RecognizeBarcode
(
	FilNet.Image inImage,
	FilNet.Rectangle2D inBarcodePosition,
	FilNet.CoordinateSystem2D? inBarcodePositionAlignment,
	FilNet.BarcodeFormat? inBarcodeFormat,
	int inScanCount,
	int inScanWidth,
	float inMinStrength,
	float inSmoothingStdDev,
	FilNet.Polarity inPolarity,
	INullable<string> outDecodedText,
	out FilNet.BarcodeFormat? outBarcodeFormat,
	NullableRef<NullableValue<FilNet.Polarity>> outBarcodePolarity,
	NullableValue<FilNet.Rectangle2D> outAlignedBarcodePosition
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inBarcodePositionFilNet.Rectangle2DPosition of the input image in which the barcode is located.
inBarcodePositionAlignmentFilNet.CoordinateSystem2D?Adjusts the barcode rectangle to the position of the inspected object. Default value: ftl::NIL.
inBarcodeFormatFilNet.BarcodeFormat?EAN13Format of the barcode. Default value: EAN13.
inScanCountint<1, INF>5Number of parallel scans run until first successful read. Default value: 5.
inScanWidthint<1, INF>5Width of the single scan. Default value: 5.
inMinStrengthfloat<0.0f, INF>5.0fMinimal strength of an extracted edge. Default value: 5.0f.
inSmoothingStdDevfloat<0.0f, INF>0.25fStandard deviation of the gaussian smoothing applied to the profile extracted in each scan. Default value: 0.25f.
inPolarityFilNet.PolarityDarkSpecifies whether code is darker or brighter than the background. Default value: Dark.
outDecodedTextFilNet.INullable<string>Decoded barcode text or nothing if all of the scans failed. This parameter cannot be null.
outBarcodeFormatFilNet.BarcodeFormat?Decoded barcode format or nothing if all of the scans failed.
outBarcodePolarityFilNet.NullableRef<FilNet.NullableValue<FilNet.Polarity>>Decoded barcode polarity or nothing if all of the scans failed. Can be null to skip this parameter calculation.
outAlignedBarcodePositionFilNet.NullableValue<FilNet.Rectangle2D> Can be null to skip this parameter calculation.

Function Overrides

See also