com.supermap.data
类 PyramidResampleType

java.lang.Object
  继承者 com.supermap.data.Enum
      继承者 com.supermap.data.PyramidResampleType

public class PyramidResampleType
extends Enum

建立影像金字塔时所采用的重采样方式。


字段摘要
static PyramidResampleType AVERAGE
          平均值法,计算所有有效值的均值进行重采样计算。
static PyramidResampleType AVERAGE_MAGPHASE
          平均联合数据法,在一个magphase空间中平均联合数据,用于复数数据空间的图像的重采样方式。
static PyramidResampleType BILINEAR
          双线性法。
static PyramidResampleType CUBIC
          三次卷积法。
static PyramidResampleType CUBICSPLINE
          三次线性法。
static PyramidResampleType GAUSS
          高斯内核计算法。
static PyramidResampleType LANCZOS
          Lanczos 兰佐斯窗口正弦重采样。
static PyramidResampleType MODE
          模式重采样。
static PyramidResampleType NEAREST
          最临近法,一种简单的采样方式。
static PyramidResampleType NONE
          不进行重采样。
 
方法摘要
 
从类 com.supermap.data.Enum 继承的方法
equals, getEnums, getNameByValue, getNames, getPredefineValues, getValueByName, getValues, hashCode, isDefined, isDefined, name, parse, parse, toString, value
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

字段详细信息

NONE

public static final PyramidResampleType NONE
不进行重采样。


NEAREST

public static final PyramidResampleType NEAREST
最临近法,一种简单的采样方式。


AVERAGE

public static final PyramidResampleType AVERAGE
平均值法,计算所有有效值的均值进行重采样计算。


GAUSS

public static final PyramidResampleType GAUSS
高斯内核计算法。使用高斯内核计算的方式进行重采样,这种对于高对比度和图案边界比较明显的图像效果比较好。


AVERAGE_MAGPHASE

public static final PyramidResampleType AVERAGE_MAGPHASE
平均联合数据法,在一个magphase空间中平均联合数据,用于复数数据空间的图像的重采样方式。


BILINEAR

public static final PyramidResampleType BILINEAR
双线性法。


CUBIC

public static final PyramidResampleType CUBIC
三次卷积法。


CUBICSPLINE

public static final PyramidResampleType CUBICSPLINE
三次线性法。


LANCZOS

public static final PyramidResampleType LANCZOS
Lanczos 兰佐斯窗口正弦重采样。


MODE

public static final PyramidResampleType MODE
模式重采样。