Assets.Parsing.CameraCalibration.CameraCalibration C# (CSharp) Method

CameraCalibration() public method

public CameraCalibration ( Matrix4x4 colorCameraMatrix, Matrix4x4 colorLensDistortion, Matrix4x4 depthCameraMatrix, Matrix4x4 depthLensDistortion, Matrix4x4 depthToColorTransform ) : System
colorCameraMatrix UnityEngine.Matrix4x4
colorLensDistortion UnityEngine.Matrix4x4
depthCameraMatrix UnityEngine.Matrix4x4
depthLensDistortion UnityEngine.Matrix4x4
depthToColorTransform UnityEngine.Matrix4x4
return System
        public CameraCalibration(Matrix4x4 colorCameraMatrix,
                                 Matrix4x4 colorLensDistortion,
                                 Matrix4x4 depthCameraMatrix,
                                 Matrix4x4 depthLensDistortion,
                                 Matrix4x4 depthToColorTransform)
        {
            this.colorCameraMatrix = colorCameraMatrix;
            this.colorLensDistortion = colorLensDistortion;
            this.depthCameraMatrix = depthCameraMatrix;
            this.depthLensDistortion = depthLensDistortion;
            this.depthToColorTransform = depthToColorTransform;
        }
CameraCalibration