Example #1
0
 internal ObjectDetectionResult(int indice, string name, float confidence,
                                global::Interop.MediaVision.Rectangle location)
 {
     Indice     = indice;
     Name       = name;
     Confidence = confidence;
     Location   = location.ToApiStruct();
 }
Example #2
0
 internal FaceDetectionResult(float confidence, global::Interop.MediaVision.Rectangle location)
 {
     Confidence = confidence;
     Location   = location.ToApiStruct();
 }