CVB.Net 15.0
Loading...
Searching...
No Matches

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.
 
Result2DResult2D [get]
 Additional results which only applies for 2D codes.
 

Detailed Description

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.

Note
A detailed description of the decoding and a code example can be found here.

Constructor & Destructor Documentation

◆ Result()

Result ( string data,
Point2D center,
Point2D[] corners,
SymbologyType symbolType,
DecodeStatus decodeStatus,
Result2D? result2D )

Constructor.

Parameters
dataDecoded data.
centerCenter coordinates of code.
cornersFour corner coordinates of code.
symbolTypeSymbol type.
decodeStatusDecoding status.
result2DAdditional results which only applies for 2D codes.