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

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

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

RectIter.getPixel介绍

暂无

代码示例

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

/** Returns the samples of the current pixel from the image in an array of float. */
public float[] getPixel(float[] array) {
  return src.getPixel(array);
}

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

/** Returns the samples of the current pixel from the image in an array of int. */
public int[] getPixel(int[] array) {
  return src.getPixel(array);
}

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

/** Returns the samples of the current pixel from the image in an array of double. */
public double[] getPixel(double[] array) {
  return src.getPixel(array);
}

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

iterator.getPixel(temp);
for (double d : temp) {

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

/**
 * Returns the samples of the current pixel from the image in an array of int.
 */
public int[] getPixel(int[] array) {
  return src.getPixel(array);
}

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

/**
 * Returns the samples of the current pixel from the image in an array of float.
 */
public float[] getPixel(float[] array) {
  return src.getPixel(array);
}

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

/**
 * Returns the samples of the current pixel from the image in an array of int.
 */
public int[] getPixel(int[] array) {
  return src.getPixel(array);
}

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

/**
 * Returns the samples of the current pixel from the image in an array of int.
 *
 * @param  array The array where to store the sample values.
 * @return The array of sample values.
 */
@Override
public int[] getPixel(int[] array) {
  return src.getPixel(array);
}

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

/**
* Returns the samples of the current pixel from the image in an array of double.
*/
public double[] getPixel(double[] array) {
  return src.getPixel(array);
}

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

/**
 * Returns the samples of the current pixel from the image in an array of float.
 */
public float[] getPixel(float[] array) {
  return src.getPixel(array);
}

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

/**
* Returns the samples of the current pixel from the image in an array of double.
 *
 * @param  array The array where to store the sample values.
 * @return The array of sample values.
*/
@Override
public double[] getPixel(double[] array) {
  return src.getPixel(array);
}

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

/**
* Returns the samples of the current pixel from the image in an array of double.
*/
public double[] getPixel(double[] array) {
  return src.getPixel(array);
}

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

/**
 * Returns the samples of the current pixel from the image in an array of float.
 *
 * @param  array The array where to store the sample values.
 * @return The array of sample values.
 */
@Override
public float[] getPixel(float[] array) {
  return src.getPixel(array);
}

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

iterator.getPixel(temp);
for(double d:temp){

代码示例来源:origin: org.geoserver/gs-wcs2_0

case DataBuffer.TYPE_SHORT:
case DataBuffer.TYPE_USHORT:
  iterator.getPixel(valuesI);
  for (int i = 0; i < numBands; i++) {
case DataBuffer.TYPE_DOUBLE:
case DataBuffer.TYPE_FLOAT:
  iterator.getPixel(valuesD);
  for (int i = 0; i < numBands; i++) {

相关文章