Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Rect.cs
1namespace IdApp.Cv.Basic
2{
6 public struct Rect
7 {
11 public int Left;
12
16 public int Top;
17
21 public int Width;
22
26 public int Height;
27 }
28}
Represents a rectangle in an image.
Definition: Rect.cs:7
int Top
Top Y-Coordinate
Definition: Rect.cs:16
int Height
Height of rectangle.
Definition: Rect.cs:26
int Left
Top X-Coordinate
Definition: Rect.cs:11
int Width
Width of rectangle.
Definition: Rect.cs:21