Esempio n. 1
0
 public frmVisualDetection(frmDobot Tranceiver)
 {
     InitializeComponent();
     labelTransparent();
     this.Tranceiver = Tranceiver;
     controler       = new Controler(roundBlock, environment, this.Tranceiver);
     try
     {
         capture = new Capture(1);
         capture.ImageGrabbed += ProcessFrame;
     }
     catch (NullReferenceException excpt)
     {
         MessageBox.Show(excpt.Message);
     }
 }
Esempio n. 2
0
 public frmWriteDraw(frmDobot Tranceiver)
 {
     InitializeComponent();
     this.Tranceiver = Tranceiver;
 }
Esempio n. 3
0
 public frmPickUp(frmDobot Tranceiver)
 {
     InitializeComponent();
     this.Tranceiver = Tranceiver;
 }
Esempio n. 4
0
 public Controler(RoundBlock CtrledPlant, Environment environment, frmDobot tranceiver)
 {
     this.CtrledPlant = CtrledPlant;
     this.environment = environment;
     this.tranceiver  = tranceiver;
 }