You are here: Start » FIL.NET » FIL.ReadMultipleDataMatrixCodes
Detects and recognizes several Data Matrix codes.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void ReadMultipleDataMatrixCodes ( FilNet.Image inImage, FilNet.Rectangle2D? inRoi, FilNet.CoordinateSystem2D? inRoiAlignment, FilNet.DataMatrixCodeParams inCodeParams, FilNet.DataMatrixDetectionParams inDetectionParams, int inMaxCodeCount, bool inAllowMultipleScales, IList<FilNet.DataCode> outDataMatrixCodes, IList<FilNet.Path> outCandidates, NullableValue<FilNet.Rectangle2D> outAlignedRoi )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inRoi | FilNet.Rectangle2D? | Region of interest. Default value: ftl::NIL. | ||
![]() | inRoiAlignment | FilNet.CoordinateSystem2D? | Coordinate system for the region of interest. Default value: ftl::NIL. | ||
![]() | inCodeParams | FilNet.DataMatrixCodeParams | Specification of codes that can be detected. | ||
![]() | inDetectionParams | FilNet.DataMatrixDetectionParams | Specification of the way the codes are being detected. | ||
![]() | inMaxCodeCount | int | <0, INF> | 2 | Maximum number of codes to be found. Default value: 2. |
![]() | inAllowMultipleScales | bool | False | Specifies whether codes of different module sizes are expected. Default value: False. | |
![]() | outDataMatrixCodes | System.Collections.Generic.IList<FilNet.DataCode> | |||
![]() | outCandidates | System.Collections.Generic.IList<FilNet.Path> | Diagnostic information about detection results. | ||
![]() | outAlignedRoi | FilNet.NullableValue<FilNet.Rectangle2D> | Input ROI after transformation (in the image coordinates). Can be null to skip this parameter calculation. |
Description
This filter detects and recognizes data matrix codes on an image.
Supported code types: ECC 200 and ECC 000-140.
Examples
![]() DataMatrix on blurry image. |
![]() Low quality DataMatrix code. |
![]() DataMatrix on chip. |
![]() Rectangular DataMatrix code. |
Remarks
Read more about Local Coordinate Systems in Machine Vision Guide: Local Coordinate Systems.
Function Overrides
- ReadMultipleDataMatrixCodes(Image, DataMatrixCodeParams, DataMatrixDetectionParams, Int32, Boolean, IList<DataCode>, IList<Path>)
- ReadMultipleDataMatrixCodes(Image, DataMatrixCodeParams, DataMatrixDetectionParams, Int32, Boolean, IList<DataCode>, IList<Path>, NullableValue<Rectangle2D>)
- ReadMultipleDataMatrixCodes(Image, Nullable<Rectangle2D>, Nullable<CoordinateSystem2D>, DataMatrixCodeParams, DataMatrixDetectionParams, Int32, Boolean, IList<DataCode>, IList<Path>)
- ReadMultipleDataMatrixCodes(Image, Nullable<Rectangle2D>, Nullable<CoordinateSystem2D>, DataMatrixCodeParams, DataMatrixDetectionParams, Int32, Boolean, IList<DataCode>, IList<Path>, Rectangle2D)