public Grab(GrabStatus status, int index, int x, int y, int dx, int dy)
 {
     this.index  = index;
     this.status = status;
     this.x      = x;
     this.y      = y;
     this.dx     = dx;
     this.dy     = this.dy;
 }
Esempio n. 2
0
 public void Grap()
 {
     if (DalsaMemObj.Xfer != null)
     {
         StatusGrab = GrabStatus.Grab;
         DalsaMemObj.Xfer.Grab();
         ProfileTimer.Start();
     }
 }
Esempio n. 3
0
 public void Freeze()
 {
     if (DalsaMemObj.Xfer != null)
     {
         StatusGrab = GrabStatus.Frea;
         DalsaMemObj.Xfer.Freeze();
         DalsaMemObj.Xfer.Wait(800);
         ProfileTimer.Stop();
     }
 }
Esempio n. 4
0
 void CheckGrabStatus()
 {
     if (StatusGrab == GrabStatus.Frea)
     {
         if (DalsaMemObj.Xfer != null)
         {
             StatusGrab = GrabStatus.Grab;
             DalsaMemObj.Xfer.Grab();
         }
     }
 }