Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObjectMapOperation.cs
1namespace IdApp.Cv.Objects
2{
6 public static partial class ObjectOperations
7 {
13 public static ObjectMap ObjectMap(this Matrix<float> M, float Threshold)
14 {
15 return new ObjectMap(M, Threshold);
16 }
17
23 public static ObjectMap ObjectMap(this Matrix<int> M, int Threshold)
24 {
25 return new ObjectMap(M, Threshold);
26 }
27 }
28}
Implements a Matrix, basic component for computations in Image Processing and Computer Vision.
Definition: Matrix.cs:12
Contains an object map of contents in an image.
Definition: ObjectMap.cs:11
Static class for Object Operations, implemented as extensions.
static ObjectMap ObjectMap(this Matrix< int > M, int Threshold)
Computes an object map of an image.
static ObjectMap ObjectMap(this Matrix< float > M, float Threshold)
Computes an object map of an image.