public override void Display()
        {
            base.Display();
            DisplayEventManager.OnBoolQuestion(this);
            double confidence = (Math.Round(double.Parse(Confidence.ToString()) * 100 * 100)) / 100;

            DisplayEventManager.OnDisplayQuestion(string.Format("I am {0}% confident this is a correct detection of a human in the bounding box. Can you please verify my detection?", confidence));
        }
 public override void Display()
 {
     base.Display();
     DisplayEventManager.OnDisplayQuestion(
         "Is this a double detection?");
 }