Example #1
0
 public Calibration(IComponentConfiguration componentConfiguration, IChessboardCornersDetector cornersDetector,
     IStereoCalibration stereoCalibration)
 {
     stereo = stereoCalibration;
     detector = cornersDetector;
     configuration = componentConfiguration;
     configuration.CalibrationStatusChanged += OnCalibrationStatusChanged;
 }
 public CameraMovementDetector(ICameraImageConverter imageConverter, IChessboardCornersDetector detector,
     IVectorsCalculator calculator, IComponentConfiguration componentConfiguration)
 {
     converter = imageConverter;
     vectorsCalculator = calculator;
     cornersDetector = detector;
     configuration = componentConfiguration;
 }