public GeometricCalibrator(GeometricCalibrator.Settings settings, MarkerDetector.Settings detectorSettings, MarkedPlane markedPlane, ProjectiveDevice projectiveDevice)
 {
   base.\u002Ector();
   GeometricCalibrator geometricCalibrator1 = this;
   this.allObjectMarkers = new LinkedList();
   this.allImageMarkers = new LinkedList();
   this.tempImage = (object) null;
   this.lastDetectedMarkers = (Marker[]) null;
   GeometricCalibrator geometricCalibrator2 = this;
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core$CvMat");
 }
Пример #2
0
 public MarkerDetector(MarkerDetector.Settings settings)
 {
   base.\u002Ector();
   MarkerDetector markerDetector1 = this;
   this.tracker = (object) null;
   this.width = 0;
   this.height = 0;
   this.depth = 0;
   this.channels = 0;
   MarkerDetector markerDetector2 = this;
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core$CvMat");
 }
 public ProCamGeometricCalibrator(ProCamGeometricCalibrator.Settings settings, MarkerDetector.Settings detectorSettings, MarkedPlane boardPlane, MarkedPlane projectorPlane, GeometricCalibrator[] cameraCalibrators, GeometricCalibrator projectorCalibrator)
 {
   base.\u002Ector();
   ProCamGeometricCalibrator geometricCalibrator1 = this;
   this.MSB_IMAGE_SHIFT = 8;
   this.LSB_IMAGE_SHIFT = 7;
   this.updatePrewarp = false;
   this.settings = settings;
   this.detectorSettings = detectorSettings;
   this.boardPlane = boardPlane;
   this.projectorPlane = projectorPlane;
   this.cameraCalibrators = cameraCalibrators;
   int length = cameraCalibrators.Length;
   this.markerDetectors = new MarkerDetector[length];
   this.allImagedBoardMarkers = new LinkedList[length];
   ProCamGeometricCalibrator geometricCalibrator2 = this;
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core$IplImage");
 }
 public ProCamColorCalibrator(ProCamColorCalibrator.Settings settings, MarkerDetector.Settings detectorSettings, MarkedPlane boardPlane, CameraDevice camera, ProjectorDevice projector)
 {
   base.\u002Ector();
   ProCamColorCalibrator camColorCalibrator1 = this;
   this.markerDetector = (MarkerDetector) null;
   this.boardPlane = (MarkedPlane) null;
   this.camera = (CameraDevice) null;
   this.projector = (ProjectorDevice) null;
   this.projectorColors = (Color[]) null;
   this.cameraColors = (Color[]) null;
   this.counter = 0;
   this.settings = settings;
   this.markerDetector = new MarkerDetector(detectorSettings);
   this.boardPlane = boardPlane;
   this.camera = camera;
   this.projector = projector;
   Marker[] markers = boardPlane.getMarkers();
   ProCamColorCalibrator camColorCalibrator2 = this;
   int num = 4 + markers.Length * 4;
   throw new NoClassDefFoundError("com.googlecode.javacv.cpp.opencv_core$CvMat");
 }
 public ProCamGeometricCalibrator(ProCamGeometricCalibrator.Settings settings, MarkerDetector.Settings detectorSettings, MarkedPlane boardPlane, MarkedPlane projectorPlane, ProjectiveDevice camera, ProjectiveDevice projector)
 {
   ProCamGeometricCalibrator.Settings settings1 = settings;
   MarkerDetector.Settings detectorSettings1 = detectorSettings;
   MarkedPlane boardPlane1 = boardPlane;
   MarkedPlane projectorPlane1 = projectorPlane;
   GeometricCalibrator[] cameraCalibrators = new GeometricCalibrator[1];
   int index = 0;
   GeometricCalibrator geometricCalibrator = new GeometricCalibrator((GeometricCalibrator.Settings) settings, detectorSettings, boardPlane, camera);
   cameraCalibrators[index] = geometricCalibrator;
   GeometricCalibrator projectorCalibrator = new GeometricCalibrator((GeometricCalibrator.Settings) settings, detectorSettings, projectorPlane, projector);
   // ISSUE: explicit constructor call
   this.\u002Ector(settings1, detectorSettings1, boardPlane1, projectorPlane1, cameraCalibrators, projectorCalibrator);
 }
Пример #6
0
 public virtual void setSettings(MarkerDetector.Settings settings)
 {
   this.settings = settings;
   this.subPixelSize = opencv_core.cvSize(settings.subPixelWindow / 2, settings.subPixelWindow / 2);
   this.subPixelZeroZone = opencv_core.cvSize(-1, -1);
   this.subPixelTermCriteria = opencv_core.cvTermCriteria(2, 100, 0.001);
 }