CSJ2K.j2k.wavelet.analysis.ForwWTFull.isReversible C# (CSharp) Метод

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

Returns the reversibility of the wavelet transform for the specified component and tile. A wavelet transform is reversible when it is suitable for lossless and lossy-to-lossless compression.
public isReversible ( int t, int c ) : bool
t int The index of the tile. /// ///
c int The index of the component. /// ///
Результат bool
        public override bool isReversible(int t, int c)
        {
            return filters.isReversible(t, c);
        }