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

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

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

Quantizer.getCbULY介绍

[英]Returns the vertical 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 vertical offset of the code-block partition. Allowable
 * values are 0 and 1, nothing else.
 * */
public int getCbULY() {
  return src.getCbULY();
}

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

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

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

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

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

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

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

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

相关文章