Пример #1
0
 /// <summary>
 /// Starting calibration and start tracking the pen afterwards
 /// </summary>
 public void Start()
 {
     this.IsRunning = true;
     //var filesystemCamera = new FilesystemCamera(new DirectoryInfo(@"c:\temp\aforge\inp"));
     //filesystemCamera.Start();
     //_calibrator = new AForgeDiffCalibrator(_pictureProvider, TODO); // TODO
     _calibrator.CalibrationCompleted += StartTracking;
     _calibrator.Calibrate();
 }
Пример #2
0
 /// <summary>
 /// Starting calibration and start tracking the pen afterwards
 /// </summary>
 public void Start()
 {
     IsRunning = true;
     _calibrator.CalibrationCompleted += StartTracking;
     _calibrator.Calibrate();
 }