BidimensionalGaussianLayer

open class BidimensionalGaussianLayer<P : Position2D<P>> @JvmOverloads constructor(baseline: Double, centerX: Double, centerY: Double, norm: Double, sigmaX: Double, sigmaY: Double) : Layer<Double, P>

A Layer based on a 2D gaussian function and an optional baseline value.

Parameters

centerX

x coord of the layer's center.

centerY

y coord of the layer's center.

Constructors

Link copied to clipboard
fun BidimensionalGaussianLayer(baseline: Double = 0.0, centerX: Double, centerY: Double, norm: Double, sigmaX: Double, sigmaY: Double = sigmaX)

Functions

Link copied to clipboard
open override fun getValue(p: P): Double

Properties

Link copied to clipboard
val centerX: Double
Link copied to clipboard
val centerY: Double
Link copied to clipboard
val function: BidimensionalGaussian

The function on which the layer is based.