You are here: Start » FIL.NET » Function Reference » Computer Vision » Datacodes » FIL.DecodeDataMatrix
Translates an image of 0 or 255 values to a text in accordance to how DataMatrix codes are encoded.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void DecodeDataMatrix ( FilNet.Image inImage, bool inAllowMirrored, INullable<string> outText, out FilNet.DataMatrixType? outType )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image of datamatrix image. | ||
![]() | inAllowMirrored | bool | Allows reading mirrored/transposed codes. | ||
![]() | outText | FilNet.INullable<string> | Decoded text or nothing if decoding failed. This parameter cannot be null. | ||
![]() | outType | FilNet.DataMatrixType? | DataMatrix code type. |
Description
Supported code types: ECC 200 and ECC 000-140.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Not supported inImage pixel format in DecodeDataMatrix. Supported formats: 1xUInt8. |