类 MapFilter
- java.lang.Object
-
- org.meteoinfo.image.filter.AbstractBufferedImageOp
-
- org.meteoinfo.image.filter.TransformFilter
-
- org.meteoinfo.image.filter.MapFilter
-
- 所有已实现的接口:
BufferedImageOp,Cloneable
public class MapFilter extends TransformFilter
-
-
字段概要
-
从类继承的字段 org.meteoinfo.image.filter.TransformFilter
BILINEAR, CLAMP, edgeAction, interpolation, NEAREST_NEIGHBOUR, originalSpace, RGB_CLAMP, transformedSpace, WRAP, ZERO
-
-
构造器概要
构造器 构造器 说明 MapFilter()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Function2DgetXMapFunction()Function2DgetYMapFunction()voidsetXMapFunction(Function2D xMapFunction)voidsetYMapFunction(Function2D yMapFunction)StringtoString()protected voidtransformInverse(int x, int y, float[] out)Inverse transform a point.-
从类继承的方法 org.meteoinfo.image.filter.TransformFilter
filter, filterPixelsNN, getEdgeAction, getInterpolation, setEdgeAction, setInterpolation, transformSpace
-
从类继承的方法 org.meteoinfo.image.filter.AbstractBufferedImageOp
clone, createCompatibleDestImage, getBounds2D, getPoint2D, getRenderingHints, getRGB, setRGB
-
-
-
-
方法详细资料
-
setXMapFunction
public void setXMapFunction(Function2D xMapFunction)
-
getXMapFunction
public Function2D getXMapFunction()
-
setYMapFunction
public void setYMapFunction(Function2D yMapFunction)
-
getYMapFunction
public Function2D getYMapFunction()
-
transformInverse
protected void transformInverse(int x, int y, float[] out)从类复制的说明:TransformFilterInverse transform a point. This method needs to be overriden by all subclasses.- 指定者:
transformInverse在类中TransformFilter- 参数:
x- the X position of the pixel in the output imagey- the Y position of the pixel in the output imageout- the position of the pixel in the input image
-
-