jj2000.j2k.quantization.quantizer.Quantizer.getAnSubbandTree()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(94)

本文整理了Java中jj2000.j2k.quantization.quantizer.Quantizer.getAnSubbandTree方法的一些代码示例,展示了Quantizer.getAnSubbandTree的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Quantizer.getAnSubbandTree方法的具体详情如下:
包路径:jj2000.j2k.quantization.quantizer.Quantizer
类名称:Quantizer
方法名:getAnSubbandTree

Quantizer.getAnSubbandTree介绍

[英]Returns a reference to the subband tree structure representing the subband decomposition for the specified tile-component.

This method gets the subband tree from the source and then calculates the magnitude bits for each leaf using the method calcSbParams().
[中]返回对表示指定平铺组件的子带分解的子带树结构的引用。
此方法从源中获取子带树,然后使用calcSbParams()方法计算每个叶的幅值位。

代码示例

代码示例来源:origin: com.github.jai-imageio/jai-imageio-jpeg2000

/**
 * Returns a reference to the subband tree structure representing the
 * subband decomposition for the specified tile-component.
 *
 * @param t The index of the tile.
 *
 * @param c The index of the component.
 *
 * @return The subband tree structure, see SubbandAn.
 *
 * @see SubbandAn
 *
 * @see Subband
 * */
public SubbandAn getAnSubbandTree(int t,int c) {
  return src.getAnSubbandTree(t,c);
}

代码示例来源:origin: org.openmicroscopy/ome-jai

/**
 * Returns a reference to the subband tree structure representing the
 * subband decomposition for the specified tile-component.
 *
 * @param t The index of the tile.
 *
 * @param c The index of the component.
 *
 * @return The subband tree structure, see SubbandAn.
 *
 * @see SubbandAn
 *
 * @see Subband
 * */
public SubbandAn getAnSubbandTree(int t,int c) {
  return src.getAnSubbandTree(t,c);
}

代码示例来源:origin: edu.ucar/jj2000

/**
 * Returns a reference to the subband tree structure representing the
 * subband decomposition for the specified tile-component.
 *
 * @param t The index of the tile.
 *
 * @param c The index of the component.
 *
 * @return The subband tree structure, see SubbandAn.
 *
 * @see SubbandAn
 *
 * @see Subband
 * */
public SubbandAn getAnSubbandTree(int t,int c) {
  return src.getAnSubbandTree(t,c);
}

代码示例来源:origin: net.java.dev.jai-imageio/jai-imageio-jpeg2000

/**
 * Returns a reference to the subband tree structure representing the
 * subband decomposition for the specified tile-component.
 *
 * @param t The index of the tile.
 *
 * @param c The index of the component.
 *
 * @return The subband tree structure, see SubbandAn.
 *
 * @see SubbandAn
 *
 * @see Subband
 * */
public SubbandAn getAnSubbandTree(int t,int c) {
  return src.getAnSubbandTree(t,c);
}

代码示例来源:origin: poreid/poreid

/**
 * Returns a reference to the subband tree structure representing the
 * subband decomposition for the specified tile-component.
 *
 * @param t The index of the tile.
 *
 * @param c The index of the component.
 *
 * @return The subband tree structure, see SubbandAn.
 *
 * @see SubbandAn
 *
 * @see Subband
 * */
public SubbandAn getAnSubbandTree(int t,int c) {
  return src.getAnSubbandTree(t,c);
}

代码示例来源:origin: edu.ucar/jj2000

root = src.getAnSubbandTree(tIdx,c);
maxBits = maxMagBits[tIdx][c];
roiInTile = mg.getROIMask(mask,root,maxBits,c);

代码示例来源:origin: net.java.dev.jai-imageio/jai-imageio-jpeg2000

root = src.getAnSubbandTree(tIdx,c);
maxBits = maxMagBits[tIdx][c];
roiInTile = mg.getROIMask(mask,root,maxBits,c);

代码示例来源:origin: com.github.jai-imageio/jai-imageio-jpeg2000

root = src.getAnSubbandTree(tIdx,c);
maxBits = maxMagBits[tIdx][c];
roiInTile = mg.getROIMask(mask,root,maxBits,c);

代码示例来源:origin: org.openmicroscopy/ome-jai

root = src.getAnSubbandTree(tIdx,c);
maxBits = maxMagBits[tIdx][c];
roiInTile = mg.getROIMask(mask,root,maxBits,c);

代码示例来源:origin: poreid/poreid

root = src.getAnSubbandTree(tIdx,c);
maxBits = maxMagBits[tIdx][c];
roiInTile = mg.getROIMask(mask,root,maxBits,c);

相关文章