/* * CVS identifier: * * $Id: RectROIMaskGenerator.java,v 1.4 2001/02/28 15:33:44 grosbois Exp $ * * Class: RectROIMaskGenerator * * Description: Generates masks when only rectangular ROIs exist * * * * COPYRIGHT: * * This software module was originally developed by Raphaël Grosbois and * Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel * Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David * Bouchard, Félix Henry, Gerard Mozelle and Patrice Onno (Canon Research * Centre France S.A) in the course of development of the JPEG2000 * standard as specified by ISO/IEC 15444 (JPEG 2000 Standard). This * software module is an implementation of a part of the JPEG 2000 * Standard. Swiss Federal Institute of Technology-EPFL, Ericsson Radio * Systems AB and Canon Research Centre France S.A (collectively JJ2000 * Partners) agree not to assert against ISO/IEC and users of the JPEG * 2000 Standard (Users) any of their rights under the copyright, not * including other intellectual property rights, for this software module * with respect to the usage by ISO/IEC and Users of this software module * or modifications thereof for use in hardware or software products * claiming conformance to the JPEG 2000 Standard. Those intending to use * this software module in hardware or software products are advised that * their use may infringe existing patents. The original developers of * this software module, JJ2000 Partners and ISO/IEC assume no liability * for use of this software module or modifications thereof. No license * or right to this software module is granted for non JPEG 2000 Standard * conforming products. JJ2000 Partners have full right to use this * software module for his/her own purpose, assign or donate this * software module to any third party and to inhibit third parties from * using this software module for non JPEG 2000 Standard conforming * products. This copyright notice must be included in all copies or * derivative works of this software module. * * Copyright (c) 1999/2000 JJ2000 Partners. * */ using System; using CSJ2K.j2k.codestream.writer; using CSJ2K.j2k.wavelet.analysis; using CSJ2K.j2k.quantization; using CSJ2K.j2k.wavelet; using CSJ2K.j2k.image; using CSJ2K.j2k.util; using CSJ2K.j2k.roi; namespace CSJ2K.j2k.roi.encoder { /// This class generates the ROI masks when there are only rectangular ROIs in /// the image. The ROI mask generation can then be simplified by only /// calculating the boundaries of the ROI mask in the particular subbands /// ///

The values are calculated from the scaling factors of the ROIs. The /// values with which to scale are equal to u-umin where umin is the lowest /// scaling factor within the block. The umin value is sent to the entropy /// coder to be used for scaling the distortion values. /// ///

To generate and to store the boundaries of the ROIs, the class /// SubbandRectROIMask is used. There is one tree of SubbandMasks for each /// component. /// ///

/// /// /// /// /// /// /// /// /// public class RectROIMaskGenerator:ROIMaskGenerator { /// The upper left xs of the ROIs private int[] ulxs; /// The upper left ys of the ROIs private int[] ulys; /// The lower right xs of the ROIs private int[] lrxs; /// The lower right ys of the ROIs private int[] lrys; /// Number of ROIs private int[] nrROIs; /// The tree of subbandmask. One for each component private SubbandRectROIMask[] sMasks; /// The constructor of the mask generator. The constructor is called with /// the ROI data. This data is stored in arrays that are used to generate /// the SubbandRectROIMask trees for each component. /// /// /// The ROI info. /// /// /// The flag indicating use of Maxshift method. /// /// /// number of components. /// /// public RectROIMaskGenerator(ROI[] ROIs, int nrc):base(ROIs, nrc) { int nr = ROIs.Length; int r; // c removed nrROIs = new int[nrc]; sMasks = new SubbandRectROIMask[nrc]; // Count number of ROIs per component for (r = nr - 1; r >= 0; r--) { nrROIs[ROIs[r].comp]++; } } /// This functions gets a DataBlk the size of the current code-block and /// fills this block with the ROI mask. /// ///

In order to get the mask for a particular Subband, the subband tree /// is traversed and at each decomposition, the ROI masks are computed. The /// roi bondaries for each subband are stored in the SubbandRectROIMask /// tree. /// ///

/// The data block that is to be filled with the mask /// /// /// The root of the subband tree to which db belongs /// /// /// The max number of magnitude bits in any code-block /// /// /// The component for which to get the mask /// /// /// Whether or not a mask was needed for this tile /// /// public override bool getROIMask(DataBlkInt db, Subband sb, int magbits, int c) { int x = db.ulx; int y = db.uly; int w = db.w; int h = db.h; int[] mask = db.DataInt; int i, j, k, r, maxk, maxj; // mink, minj removed int ulx = 0, uly = 0, lrx = 0, lry = 0; int wrap; int maxROI; int[] culxs; int[] culys; int[] clrxs; int[] clrys; SubbandRectROIMask srm; // If the ROI bounds have not been calculated for this tile and // component, do so now. if (!tileMaskMade[c]) { makeMask(sb, magbits, c); tileMaskMade[c] = true; } if (!roiInTile) { return false; } // Find relevant subband mask and get ROI bounds srm = (SubbandRectROIMask) sMasks[c].getSubbandRectROIMask(x, y); culxs = srm.ulxs; culys = srm.ulys; clrxs = srm.lrxs; clrys = srm.lrys; maxROI = culxs.Length - 1; // Make sure that only parts of ROIs within the code-block are used // and make the bounds local to this block the LR bounds are counted // as the distance from the lower right corner of the block x -= srm.ulx; y -= srm.uly; for (r = maxROI; r >= 0; r--) { ulx = culxs[r] - x; if (ulx < 0) { ulx = 0; } else if (ulx >= w) { ulx = w; } uly = culys[r] - y; if (uly < 0) { uly = 0; } else if (uly >= h) { uly = h; } lrx = clrxs[r] - x; if (lrx < 0) { lrx = - 1; } else if (lrx >= w) { lrx = w - 1; } lry = clrys[r] - y; if (lry < 0) { lry = - 1; } else if (lry >= h) { lry = h - 1; } // Add the masks of the ROI i = w * lry + lrx; maxj = (lrx - ulx); wrap = w - maxj - 1; maxk = lry - uly; for (k = maxk; k >= 0; k--) { for (j = maxj; j >= 0; j--, i--) mask[i] = magbits; i -= wrap; } } return true; } /// This function returns the relevant data of the mask generator /// /// public override System.String ToString() { return ("Fast rectangular ROI mask generator"); } /// This function generates the ROI mask for the entire tile. The mask is /// generated for one component. This method is called once for each tile /// and component. /// /// /// The root of the subband tree used in the decomposition /// /// /// component number /// /// public override void makeMask(Subband sb, int magbits, int n) { int nr = nrROIs[n]; int r; int ulx, uly, lrx, lry; int tileulx = sb.ulcx; int tileuly = sb.ulcy; int tilew = sb.w; int tileh = sb.h; ROI[] ROIs = roi_array; // local copy ulxs = new int[nr]; ulys = new int[nr]; lrxs = new int[nr]; lrys = new int[nr]; nr = 0; for (r = ROIs.Length - 1; r >= 0; r--) { if (ROIs[r].comp == n) { ulx = ROIs[r].ulx; uly = ROIs[r].uly; lrx = ROIs[r].w + ulx - 1; lry = ROIs[r].h + uly - 1; if (ulx > (tileulx + tilew - 1) || uly > (tileuly + tileh - 1) || lrx < tileulx || lry < tileuly) // no part of ROI in tile continue; // Check bounds ulx -= tileulx; lrx -= tileulx; uly -= tileuly; lry -= tileuly; ulx = (ulx < 0)?0:ulx; uly = (uly < 0)?0:uly; lrx = (lrx > (tilew - 1))?tilew - 1:lrx; lry = (lry > (tileh - 1))?tileh - 1:lry; ulxs[nr] = ulx; ulys[nr] = uly; lrxs[nr] = lrx; lrys[nr] = lry; nr++; } } if (nr == 0) { roiInTile = false; } else { roiInTile = true; } sMasks[n] = new SubbandRectROIMask(sb, ulxs, ulys, lrxs, lrys, nr); } } }