Beispiel #1
0
 public CameraInfo(Header header, uint height, uint width, string distortion_model, double[] D, double[] K, double[] R, double[] P, uint binning_x, uint binning_y, RegionOfInterest roi)
 {
     this.header           = header;
     this.height           = height;
     this.width            = width;
     this.distortion_model = distortion_model;
     this.D         = D;
     this.K         = K;
     this.R         = R;
     this.P         = P;
     this.binning_x = binning_x;
     this.binning_y = binning_y;
     this.roi       = roi;
 }
Beispiel #2
0
 public CameraInfo()
 {
     this.header           = new Header();
     this.height           = 0;
     this.width            = 0;
     this.distortion_model = "";
     this.D         = new double[0];
     this.K         = new double[9];
     this.R         = new double[9];
     this.P         = new double[12];
     this.binning_x = 0;
     this.binning_y = 0;
     this.roi       = new RegionOfInterest();
 }