Class for storing the decoding results. More...
Public Member Functions | |
| Result (string data, Point2D center, Point2D[] corners, SymbologyType symbolType, DecodeStatus decodeStatus, Result2D? result2D) | |
| Constructor. | |
Properties | |
| string | Data [get] |
| Decoded data. | |
| Point2D | Center [get] |
| Center coordinates of code. | |
| Point2D[] | Corners [get] |
| Four corner coordinates of code. | |
| SymbologyType | SymbolType [get] |
| Symbol type. | |
| DecodeStatus | DecodeStatus [get] |
| Decoding status. | |
| Result2D? | Result2D [get] |
| Additional results which only applies for 2D codes. | |
Class for storing the decoding results.
This class holds the results of a read code. After executing the decoding process with Decoder.Execute(ImagePlane, int), an IEnumerable with decoding results is returned.
| Result | ( | string | data, |
| Point2D | center, | ||
| Point2D[] | corners, | ||
| SymbologyType | symbolType, | ||
| DecodeStatus | decodeStatus, | ||
| Result2D? | result2D ) |
Constructor.
| data | Decoded data. |
| center | Center coordinates of code. |
| corners | Four corner coordinates of code. |
| symbolType | Symbol type. |
| decodeStatus | Decoding status. |
| result2D | Additional results which only applies for 2D codes. |
|
get |
Four corner coordinates of code.
The corners define the bounding box of the decoded code, listed in clockwise order starting from corner 0. Corner 0 corresponds to the upper-left corner of the code in its standard, unrotated orientation.