CSJ2K.j2k.image.invcomptransf.InvCompTransf.InvCompTransf C# (CSharp) Метод

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

Constructs a new ForwCompTransf object that operates on the specified source of image data.
public InvCompTransf ( BlkImgDataSrc imgSrc, DecoderSpecs decSpec, int utdepth, CSJ2K.j2k.util.ParameterList pl ) : System
imgSrc BlkImgDataSrc The source from where to get the data to be /// transformed /// ///
decSpec CSJ2K.j2k.decoder.DecoderSpecs The decoder specifications /// ///
utdepth int The bit depth of the un-transformed components /// ///
pl CSJ2K.j2k.util.ParameterList The command line optinons of the decoder /// ///
Результат System
        public InvCompTransf(BlkImgDataSrc imgSrc, DecoderSpecs decSpec, int[] utdepth, ParameterList pl)
            : base(imgSrc)
        {
            this.cts = decSpec.cts;
            this.wfs = decSpec.wfs;
            src = imgSrc;
            this.utdepth = utdepth;
            noCompTransf = !(pl.getBooleanParameter("comp_transf"));
        }