CSJ2K.j2k.roi.encoder.ROIScaler.isReversible C# (CSharp) 메소드

isReversible() 공개 메소드

Since ROI scaling is always a reversible operation, it calls isReversible() method of it source (the quantizer module).
public isReversible ( int t, int c ) : bool
t int The tile to test for reversibility /// ///
c int The component to test for reversibility /// ///
리턴 bool
        public virtual bool isReversible(int t, int c)
        {
            return src.isReversible(t, c);
        }