javax.media.jai.iterator.RectIter.nextBand()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(72)

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

RectIter.nextBand介绍

暂无

代码示例

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

/** Sets the iterator to the next band in the image. */
public void nextBand() {
  src.nextBand();
  dst.nextBand();
}

代码示例来源:origin: Geomatys/geotoolkit

final float pa = a.getSampleFloat();
  assertEquals(pe, pa, SAMPLE_TOLERANCE);
  a.nextBand();
} while (!e.nextBandDone());
assertTrue(a.finishedBands());

代码示例来源:origin: org.geotools/gt2-coverageio

/**
 * Sets the iterator to the first band of the image.
 */
public void startBands() {
  bandIndex = 0;
  iterator.startBands();
  for (int skip=sourceBands[0]; --skip>=0;) {
    iterator.nextBand();
  }
}

代码示例来源:origin: org.geotools/gt-coverage

/**
 * Sets the iterator to the next band in the image.
 */
public void nextBand() {
  src.nextBand();
  dst.nextBand();
}

代码示例来源:origin: org.geotools/gt2-coverage

/**
 * Sets the iterator to the next band in the image.
 */
public void nextBand() {
  src.nextBand();
  dst.nextBand();
}

代码示例来源:origin: Geomatys/geotoolkit

/**
 * Sets the iterator to the next band in the image.
 */
@Override
public void nextBand() {
  src.nextBand();
  dst.nextBand();
}

代码示例来源:origin: it.geosolutions.jaiext.piecewise/jt-piecewise

for (int i = 0; i < bandIndex; i++) {
  dstIter.nextBand();
  srcIter.nextBand();

代码示例来源:origin: geosolutions-it/jai-ext

for (int i = 0; i < bandIndex; i++) {
  dstIter.nextBand();
  srcIter.nextBand();

代码示例来源:origin: geosolutions-it/jai-ext

for (int i = 0; i < bandIndex; i++) {
  dstIter.nextBand();
  srcIter.nextBand();

代码示例来源:origin: it.geosolutions.jaiext.piecewise/jt-piecewise

for (int i = 0; i < bandIndex; i++) {
  dstIter.nextBand();
  srcIter.nextBand();

相关文章