CSJ2K.j2k.image.ImgDataJoiner.getNomRangeBits C# (CSharp) Метод

getNomRangeBits() публичный Метод

Returns the number of bits, referred to as the "range bits", corresponding to the nominal range of the data in the specified component. If this number is b then for unsigned data the nominal range is between 0 and 2^b-1, and for signed data it is between -2^(b-1) and 2^(b-1)-1. For floating point data this value is not applicable.
public getNomRangeBits ( int c ) : int
c int The index of the component. /// ///
Результат int
        public virtual int getNomRangeBits(int c)
        {
            return imageData[c].getNomRangeBits(compIdx[c]);
        }