Ejemplo n.º 1
0
     public PXCMCapture.DeviceModel model; /* Defines the distortion model of the device - different device models may use different distortion models */
 
     public StreamCalibration () {
         focalLength = new PXCMPointF32(); 
         principalPoint = new PXCMPointF32();
         radialDistortion = new Single[3];
         tangentialDistortion = new Single[2];
         model = PXCMCapture.DeviceModel.DEVICE_MODEL_GENERIC;
     }
Ejemplo n.º 2
0
        public PXCMCapture.DeviceModel model;     /* Defines the distortion model of the device - different device models may use different distortion models */

        public StreamCalibration()
        {
            focalLength          = new PXCMPointF32();
            principalPoint       = new PXCMPointF32();
            radialDistortion     = new Single[3];
            tangentialDistortion = new Single[2];
            model = PXCMCapture.DeviceModel.DEVICE_MODEL_GENERIC;
        }
Ejemplo n.º 3
0
 public static String ToString(this PXCMCapture.DeviceModel model)
 {
     return(PXCMCapture.DeviceModelToString(model));
 }