jj2000.j2k.quantization.QuantTypeSpec.getTileCompVal()方法的使用及代码示例

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

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

QuantTypeSpec.getTileCompVal介绍

暂无

代码示例

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

/**
 * Check the reversibility of the given tile-component.
 *
 * @param t The index of the tile
 *
 * @param c The index of the component
 *
 * @return Whether or not the tile-component is reversible
 * */
public boolean isReversible(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("reversible") )
  return true;
else
  return false;
}

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

/**
 * Returns true if given tile-component uses derived quantization step
 * size.
 *
 * @param t Tile index
 *
 * @param c Component index
 *
 * @return True if derived quantization step size
 * */
public boolean isDerived(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("derived") )
  return true;
else
  return false;
}

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

/**
 * Returns true if given tile-component uses derived quantization step
 * size.
 *
 * @param t Tile index
 *
 * @param c Component index
 *
 * @return True if derived quantization step size
 * */
public boolean isDerived(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("derived") )
  return true;
else
  return false;
}

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

/**
 * Returns true if given tile-component uses derived quantization step
 * size.
 *
 * @param t Tile index
 *
 * @param c Component index
 *
 * @return True if derived quantization step size
 * */
public boolean isDerived(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("derived") )
  return true;
else
  return false;
}

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

/**
 * Check the reversibility of the given tile-component.
 *
 * @param t The index of the tile
 *
 * @param c The index of the component
 *
 * @return Whether or not the tile-component is reversible
 * */
public boolean isReversible(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("reversible") )
  return true;
else
  return false;
}

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

/**
 * Check the reversibility of the given tile-component.
 *
 * @param t The index of the tile
 *
 * @param c The index of the component
 *
 * @return Whether or not the tile-component is reversible
 * */
public boolean isReversible(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("reversible") )
  return true;
else
  return false;
}

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

/**
 * Returns true if given tile-component uses derived quantization step
 * size.
 *
 * @param t Tile index
 *
 * @param c Component index
 *
 * @return True if derived quantization step size
 * */
public boolean isDerived(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("derived") )
  return true;
else
  return false;
}

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

/** 
 * Returns true if given tile-component uses derived quantization step
 * size.
 *
 * @param t Tile index
 *
 * @param c Component index
 *
 * @return True if derived quantization step size
 * */ 
public boolean isDerived(int t,int c) {
if( ((String)getTileCompVal(t,c)).equals("derived") ) {
  return true;
} else {
  return false;
  }
}

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

/**
 * Check the reversibility of the given tile-component.
 *
 * @param t The index of the tile
 *
 * @param c The index of the component
 *
 * @return Whether or not the tile-component is reversible
 * */
public boolean isReversible(int t,int c){
if( ((String)getTileCompVal(t,c)).equals("reversible") )
  return true;
else
  return false;
}

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

/**
 * Check the reversibility of the given tile-component.
 *
 * @param t The index of the tile
 *
 * @param c The index of the component
 *
 * @return Whether or not the tile-component is reversible
 * */
public boolean isReversible(int t,int c) {
if( ((String)getTileCompVal(t,c)).equals("reversible") ) {
  return true;
} else {
  return false;
  }
}

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

setDefault(getTileCompVal(0,0));
switch(specValType[0][0]){
case SPEC_TILE_DEF:

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

setDefault(getTileCompVal(0,0));
switch(specValType[0][0]){
case SPEC_TILE_DEF:

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

for(int c=0; c<nc && notFound; c++) {
  tmpI = ((Integer)encSpec.dls.getTileCompVal(tIdx,c)).intValue();
  tmpStr = (String)encSpec.qts.getTileCompVal(tIdx,c);
  if(tmpI==mrl && tmpStr.equals(qType)) {
    compIdx = c;

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

for(int c=0; c<nc && notFound; c++) {
  tmpI = ((Integer)encSpec.dls.getTileCompVal(t,c)).intValue();
  tmpStr = (String)encSpec.qts.getTileCompVal(t,c);
  if(tmpI==mrl && tmpStr.equals(qType)) {
    tIdx = t;

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

for(int c=0; c<nc && notFound; c++) {
  tmpI = ((Integer)encSpec.dls.getTileCompVal(t,c)).intValue();
  tmpStr = (String)encSpec.qts.getTileCompVal(t,c);
  if(tmpI==mrl && tmpStr.equals(qType)) {
    tcIdx[0] = t; tcIdx[1] = c;

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

String qType = (String)wp.getQuantizationType().getTileCompVal(t,compIdx);
float baseStep = ((Float)wp.getQuantizationStep().getTileCompVal(t,compIdx)).
  floatValue();

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

String qType = (String)wp.getQuantizationType().getTileCompVal(t,compIdx);
float baseStep = ((Float)wp.getQuantizationStep().getTileCompVal(t,compIdx)).
  floatValue();

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

String qType = (String)wp.getQuantizationType().getTileCompVal(t,compIdx);
float baseStep = ((Float)wp.getQuantizationStep().getTileCompVal(t,compIdx)).
  floatValue();

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

for(int c=0; c<nc && notFound; c++) {
  tmpI = ((Integer)wp.getDecompositionLevel().getTileCompVal(t,c)).intValue();
  tmpStr = (String)wp.getQuantizationType().getTileCompVal(t,c);
  if(tmpI==mrl && tmpStr.equals(qType)) {
    tcIdx[0] = t; tcIdx[1] = c;

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

for(int c=0; c<nc && notFound; c++) {
  tmpI = ((Integer)wp.getDecompositionLevel().getTileCompVal(t,c)).intValue();
  tmpStr = (String)wp.getQuantizationType().getTileCompVal(t,c);
  if(tmpI==mrl && tmpStr.equals(qType)) {
    tcIdx[0] = t; tcIdx[1] = c;

相关文章