CSJ2K.j2k.image.input.ImgReaderPGM.isOrigSigned C# (CSharp) Method

isOrigSigned() public method

Returns true if the data read was originally signed in the specified component, false if not. This method returns always false since PGM data is always unsigned.
public isOrigSigned ( int c ) : bool
c int The index of the component, from 0 to N-1. /// ///
return bool
        public override bool isOrigSigned(int c)
        {
            // Check component index
            if (c != 0)
                throw new System.ArgumentException();
            return false;
        }