CSJ2K.j2k.wavelet.synthesis.InvWTFull.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.

The returned value corresponds to the nominal dynamic range of the reconstructed image data, as long as the getNomRangeBits() method of the source returns a value corresponding to the nominal dynamic range of the image data and not not of the wavelet coefficients.

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.

public getNomRangeBits ( int c ) : int
c int The index of the component. /// ///
Результат int
        public override int getNomRangeBits(int c)
        {
            return src.getNomRangeBits(c);
        }