object Kernel extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Kernel
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(nbhd: Neighborhood): Kernel
  2. def circle(size: Int, cellWidth: Double, rad: Int): Kernel

    Creates a Circle kernel.

    Creates a Circle kernel. Can be used with the Convolve or KernelDensity operations.

    size

    Number of rows in the resulting tile.

    cellWidth

    Cell width of the resutling tile.

    rad

    Radius of the circle.

    Note

    Tile will be IntConstantNoDataCellType

  3. def gaussian(size: Int, sigma: Double, amp: Double): Kernel

    Creates a Gaussian kernel.

    Creates a Gaussian kernel. Can be used with the Convolve or KernelDensity operations.

    size

    Number of rows of the resulting tile.

    sigma

    Sigma parameter for Gaussian

    amp

    Amplitude for Gaussian. Will be the value at the center of the resulting tile.

    Note

    Tile will be IntConstantNoDataCellType

  4. implicit def tile2Kernel(r: Tile): Kernel