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

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

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

Quantizer.getCbULX介绍

[英]Returns the horizontal offset of the code-block partition. Allowable values are 0 and 1, nothing else.
[中]返回代码块分区的水平偏移量。允许的值是0和1,没有其他值。

代码示例

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

/**
 * Returns the horizontal offset of the code-block partition. Allowable
 * values are 0 and 1, nothing else.
 * */
public int getCbULX() {
  return src.getCbULX();
}

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

/**
 * Returns the horizontal offset of the code-block partition. Allowable
 * values are 0 and 1, nothing else.
 * */
public int getCbULX() {
  return src.getCbULX();
}

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

/**
 * Returns the horizontal offset of the code-block partition. Allowable
 * values are 0 and 1, nothing else.
 * */
public int getCbULX() {
  return src.getCbULX();
}

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

/**
 * Returns the horizontal offset of the code-block partition. Allowable
 * values are 0 and 1, nothing else.
 * */
public int getCbULX() {
  return src.getCbULX();
}

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

/**
 * Returns the horizontal offset of the code-block partition. Allowable
 * values are 0 and 1, nothing else.
 * */
public int getCbULX() {
  return src.getCbULX();
}

相关文章