Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Representation.cs
2{
6 public abstract class Representation
7 {
16 byte[] ImageData)
17 {
18 this.ImageDataType = ImageDataType;
19 this.Width = Width;
20 this.Height = Height;
21 this.ImageData = ImageData;
22 }
23
28
32 public int Width { get; }
33
37 public int Height { get; }
38
42 public byte[] ImageData { get; }
43 }
44}
Contains a representation of biometric data.
Representation(ImageDataType ImageDataType, int Width, int Height, byte[] ImageData)
Contains a representation of biometric data.
ImageDataType
ICAO 9303 / ISO 19794-5 image data type.
Definition: ImageDataType.cs:7