object Kernel extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Kernel
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- def apply(nbhd: Neighborhood): Kernel
-
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
-
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
- implicit def tile2Kernel(r: Tile): Kernel