Esempio n. 1
0
 public void DrawLater(DetectionList target)
 {
     DrawLater(target?.Detection);
 }
Esempio n. 2
0
 /// <param name="threshold">
 ///   Score threshold. This value must be between 0 and 1.
 ///   This will affect the rectangle's color. For example, if the score is below the threshold, the rectangle will be transparent.
 ///   The default value is 0.
 /// </param>
 public void Draw(DetectionList target, float threshold = 0.0f)
 {
     Draw(target?.Detection, threshold);
 }
Esempio n. 3
0
 public void DrawNow(DetectionList target)
 {
     DrawNow(target?.Detection);
 }