You are here: Start » FIL.NET » Invoke.ReadMultipleBarcodes

Invoke.ReadMultipleBarcodes

Detects and recognizes multiple barcodes on the input image.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ReadMultipleBarcodes
(
	Fil.Image inImage,
	Optional<Fil.ShapeRegion> inRoi,
	Optional<Fil.CoordinateSystem2D> inRoiAlignment,
	Fil.BarcodeParams inBarcodeParams,
	Fil.BarcodeDecodingParams inDecodingParams,
	int inMaxBarcodeCount,
	List<Fil.Barcode> outBarcodes,
	Optional<List<Fil.Rectangle2D>> outBarcodeCandidates,
	Optional<Fil.ShapeRegion> outAlignedRoi,
	Diagnostic<Fil.Image> diagGradientImage,
	Diagnostic<List<List<Fil.Segment2D>>> diagScheduledScanSegments
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.ShapeRegion>Region of interest. Default value: ftl::NIL.
inRoiAlignmentFtl.Optional<Fil.CoordinateSystem2D>Adjusts the region of interest to the position of the inspected object. Default value: ftl::NIL.
inBarcodeParamsFil.BarcodeParamsSpecification of barcodes that can be detected.
inDecodingParamsFil.BarcodeDecodingParamsParameters of the barcode decoding algorithm.
inMaxBarcodeCountint<1, INF>2Maximum number of barcodes in one image. Default value: 2.
outBarcodesSystem.Collections.Generic.List<Fil.Barcode>List of barcodes that have been correctly detected and decoded.
outBarcodeCandidatesFtl.Optional<System.Collections.Generic.List<Fil.Rectangle2D>>Places with high gradient values that are further investigated.
outAlignedRoiFtl.Optional<Fil.ShapeRegion>Input ROI after transformation (in the image coordinates).
diagGradientImageFil.Diagnostic<Fil.Image>Image of gradient directions.
diagScheduledScanSegmentsFil.Diagnostic<System.Collections.Generic.List<System.Collections.Generic.List<Fil.Segment2D>>>Scheduled scan segments.

See also