Class

geotrellis.raster.resample

CubicResample

Related Doc: package resample

Permalink

abstract class CubicResample extends BilinearResample

This abstract class serves as a base class for the family of cubic resample algorithms implemented. As a constructor argument it takes the dimension of the cube. It takes the closest dimension ^ 2 points and then resamples over those points.

If there is less then dimension ^ 2 points obtainable for the current point the implementation falls back on bilinear resample.

Note that this class is single-threaded.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CubicResample
  2. BilinearResample
  3. Resample
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CubicResample(tile: Tile, extent: Extent, dimension: Int)

    Permalink

Abstract Value Members

  1. abstract def cubicResample(t: Tile, x: Double, y: Double): Double

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def bilinearDouble(leftCol: Int, topRow: Int, xRatio: Double, yRatio: Double): Double

    Permalink
    Definition Classes
    BilinearResample
  6. def bilinearInt(leftCol: Int, topRow: Int, xRatio: Double, yRatio: Double): Int

    Permalink
    Definition Classes
    BilinearResample
  7. val cellheight: Double

    Permalink
    Attributes
    protected
    Definition Classes
    Resample
  8. val cellwidth: Double

    Permalink
    Attributes
    protected
    Definition Classes
    Resample
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val cols: Int

    Permalink
    Attributes
    protected
    Definition Classes
    Resample
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. val re: RasterExtent

    Permalink
    Attributes
    protected
    Definition Classes
    Resample
  21. final def resample(x: Double, y: Double): Int

    Permalink
    Definition Classes
    Resample
  22. final def resample(p: Point): Int

    Permalink
    Definition Classes
    Resample
  23. final def resampleDouble(x: Double, y: Double): Double

    Permalink
    Definition Classes
    Resample
  24. final def resampleDouble(p: Point): Double

    Permalink
    Definition Classes
    Resample
  25. def resampleDoubleValid(x: Double, y: Double): Double

    Permalink
    Definition Classes
    CubicResampleBilinearResampleResample
  26. def resampleValid(x: Double, y: Double): Int

    Permalink
    Definition Classes
    CubicResampleBilinearResampleResample
  27. def resolveTopLeftCoordsAndRatios(x: Double, y: Double): (Int, Int, Double, Double)

    Permalink
    Definition Classes
    BilinearResample
  28. val rows: Int

    Permalink
    Attributes
    protected
    Definition Classes
    Resample
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BilinearResample

Inherited from Resample

Inherited from AnyRef

Inherited from Any

Ungrouped