Back to FabImage Studio website
You are here: Start » Filter Reference » Computer Vision » Datacodes » DecodeDataMatrix
Module: | Datacodes |
---|
Translates an image of 0 or 255 values to a text in accordance to how DataMatrix codes are encoded.
Applications
Decoding of data matrix codes whose black and white segments have been determined in a non-standard way.
Name | Type | Description | |
---|---|---|---|
![]() |
inImage | Image | Input image of datamatrix image |
![]() |
inAllowMirrored | Bool | Allows reading mirrored/transposed codes |
![]() |
outText | String? | Decoded text or nothing if decoding failed |
![]() |
outType | DataMatrixType? | DataMatrix code type |
Requirements
For input inImage only pixel formats are supported: 1⨯uint8.
Read more about pixel formats in Image documentation.
Description
Supported code types: ECC 200 and ECC 000-140.
Errors
This filter can throw an exception to report error. Read how to deal with errors in Error Handling.
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Not supported inImage pixel format in DecodeDataMatrix. Supported formats: 1xUInt8. |
Complexity Level
This filter is available on Expert Complexity Level.
See Also
- ReadMultipleDatacodes – Detects and recognizes several Data Codes in one image.
- ReadSingleDataMatrixCode
- ReadSingleBarcode – Detects and recognizes a single barcode on the input image.
- ReadMultipleBarcodes – Detects and recognizes multiple barcodes on the input image.
- RecognizeBarcode – Extracts information from a barcode located on the input image at a given position.
- ReadSingleQRCode