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

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

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

QuantTypeSpec.getSpec介绍

暂无

代码示例

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

/**
 * Check the irreversibility of the whole image.
 *
 * @return Whether or not the whole image is reversible
 * */
public boolean isFullyNonReversible(){
// The whole image is irreversible no tile-component is reversible
for(int t=nTiles-1; t>=0; t--)
  for(int c=nComp-1; c>=0; c--)
  if( ((String)getSpec(t,c)).equals("reversible") )
    return false;
return true;
}

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

/**
 * Check the irreversibility of the whole image.
 *
 * @return Whether or not the whole image is reversible
 * */
public boolean isFullyNonReversible(){
// The whole image is irreversible no tile-component is reversible
for(int t=nTiles-1; t>=0; t--)
  for(int c=nComp-1; c>=0; c--)
  if( ((String)getSpec(t,c)).equals("reversible") )
    return false;
return true;
}

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

/**
 * Check the irreversibility of the whole image.
 *
 * @return Whether or not the whole image is reversible
 * */
public boolean isFullyNonReversible() {
// The whole image is irreversible no tile-component is reversible
for(int t=nTiles-1; t>=0; t--)
  for(int c=nComp-1; c>=0; c--)
  if( ((String)getSpec(t,c)).equals("reversible") )
    return false;
return true;
}

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

/**
 * Check the irreversibility of the whole image.
 *
 * @return Whether or not the whole image is reversible
 * */
public boolean isFullyNonReversible(){
// The whole image is irreversible no tile-component is reversible
for(int t=nTiles-1; t>=0; t--)
  for(int c=nComp-1; c>=0; c--)
  if( ((String)getSpec(t,c)).equals("reversible") )
    return false;
return true;
}

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

/**
 * Check the irreversibility of the whole image.
 *
 * @return Whether or not the whole image is reversible
 * */
public boolean isFullyNonReversible(){
// The whole image is irreversible no tile-component is reversible
for(int t=nTiles-1; t>=0; t--)
  for(int c=nComp-1; c>=0; c--)
  if( ((String)getSpec(t,c)).equals("reversible") )
    return false;
return true;
}

相关文章