Beispiel #1
0
        public override void DoFrameAction()
        {
            ActionBase = FilteredMat.Clone();
            Cv2.Rectangle(ActionBase, new Rect(CurrentColorCoord.X - 1, CurrentColorCoord.Y - 1, 3, 3), new Scalar(0, 255, 0), 1);

            if (UseCastableDetection())
            {
                Info1 = this.IsCastable() ? "IS CASTABLE" : "";
                Vec3b color = CasteableDetection.At <Vec3b>(0, 0);
                Info2 = color[0].ToString() + ", " + color[1].ToString() + ", " + color[2].ToString();
            }
        }
Beispiel #2
0
 public override void DoFrameAction()
 {
     ActionBase = FilteredMat.Clone();
     this.determinePercentage();
     Info1 = barPercent.ToString();
 }