Example #1
0
 /// <summary> Initializes this object with the given source of wavelet
 /// coefficients. It initializes the resolution level for full resolutioin
 /// reconstruction (i.e. the maximum resolution available from the 'src'
 /// source).
 ///
 /// <p>It is assumed here that all tiles and components have the same
 /// reconstruction resolution level. If that was not the case it should be
 /// the value for the current tile of the source.</p>
 ///
 /// </summary>
 /// <param name="src">from where the wavelet coefficinets should be obtained.
 ///
 /// </param>
 /// <param name="decSpec">The decoder specifications
 ///
 /// </param>
 public InverseWT(MultiResImgData src, DecoderSpecs decSpec)
     : base(src, decSpec)
 {
 }
Example #2
0
		/// <summary> Instantiates the 'InvWTAdapter' object using the specified
		/// 'MultiResImgData' source. The reconstruction resolution level is set to
		/// full resolution (i.e. the maximum resolution level).
		/// 
		/// </summary>
		/// <param name="src">From where to obtain the values to return
		/// 
		/// </param>
		/// <param name="decSpec">The decoder specifications
		/// 
		/// </param>
		protected internal InvWTAdapter(MultiResImgData src, DecoderSpecs decSpec)
		{
			mressrc = src;
			this.decSpec = decSpec;
			maxImgRes = decSpec.dls.Min;
		}
Example #3
0
 /// <summary> Instantiates the 'InvWTAdapter' object using the specified
 /// 'MultiResImgData' source. The reconstruction resolution level is set to
 /// full resolution (i.e. the maximum resolution level).
 ///
 /// </summary>
 /// <param name="src">From where to obtain the values to return
 ///
 /// </param>
 /// <param name="decSpec">The decoder specifications
 ///
 /// </param>
 protected internal InvWTAdapter(MultiResImgData src, DecoderSpecs decSpec)
 {
     mressrc      = src;
     this.decSpec = decSpec;
     maxImgRes    = decSpec.dls.Min;
 }
 /// <summary> Instantiates the MultiResImgDataAdapter object specifying the
 /// MultiResImgData source.
 ///
 /// </summary>
 /// <param name="src">From where to obrtain the MultiResImgData values.
 ///
 /// </param>
 protected internal MultiResImgDataAdapter(MultiResImgData src)
 {
     mressrc = src;
 }
		/// <summary> Instantiates the MultiResImgDataAdapter object specifying the
		/// MultiResImgData source.
		/// 
		/// </summary>
		/// <param name="src">From where to obrtain the MultiResImgData values.
		/// 
		/// </param>
		protected internal MultiResImgDataAdapter(MultiResImgData src)
		{
			mressrc = src;
		}
Example #6
0
 /// <summary> Initializes this object with the given source of wavelet
 /// coefficients. It initializes the resolution level for full resolutioin
 /// reconstruction (i.e. the maximum resolution available from the 'src'
 /// source).
 /// 
 /// <p>It is assumed here that all tiles and components have the same
 /// reconstruction resolution level. If that was not the case it should be
 /// the value for the current tile of the source.</p>
 /// 
 /// </summary>
 /// <param name="src">from where the wavelet coefficinets should be obtained.
 /// 
 /// </param>
 /// <param name="decSpec">The decoder specifications
 /// 
 /// </param>
 public InverseWT(MultiResImgData src, DecoderSpecs decSpec)
     : base(src, decSpec)
 {
 }