Accord.Imaging.MatrixH.MatrixH C# (CSharp) Method

MatrixH() public method

Creates a new projective matrix.
public MatrixH ( ) : System
return System
        public MatrixH()
        {
            // Start as the identity matrix
            this.elements = new float[] { 1, 0, 0, 0, 1, 0, 0, 0 };
        }

Same methods

MatrixH::MatrixH ( double matrix ) : System
MatrixH::MatrixH ( float elements ) : System
MatrixH::MatrixH ( float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32 ) : System
MatrixH::MatrixH ( float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32, float m33 ) : System