Package

scalismo.image

filter

Permalink

package filter

Visibility
  1. Public
  2. All

Type Members

  1. case class BoxedFilter[D <: Dim](width: Float)(implicit evidence$1: NDSpace[D]) extends Filter[D] with Product with Serializable

    Permalink

    D- dimensional box Blurring Filter to be used in a convolution.

    D- dimensional box Blurring Filter to be used in a convolution. The filter has a value 1 in its support and 0 otherwise

    width

    Defines the width of the filter support

  2. trait Filter[D <: Dim] extends (Point[D]) ⇒ Float

    Permalink

    Trait for filters to be used in a convolution

  3. case class GaussianFilter1D(stddev: Double) extends Filter[_1D] with Product with Serializable

    Permalink

    One dimensional Gaussian Blur Filter to be used in a convolution

    One dimensional Gaussian Blur Filter to be used in a convolution

    stddev

    Standard deviation of the Gaussian to be used. The extent of the support of the Filter is fixed to be 6 times the standard deviation (3 stddev on each direction)

  4. case class GaussianFilter2D(stddev: Double) extends Filter[_2D] with Product with Serializable

    Permalink

    2 dimensional Gaussian blur filter.

    2 dimensional Gaussian blur filter. See GaussianFilter1D

  5. case class GaussianFilter3D(stddev: Double) extends Filter[_3D] with Product with Serializable

    Permalink

    3 dimensional Gaussian blur filter.

    3 dimensional Gaussian blur filter. See GaussianFilter1D

Value Members

  1. object DiscreteImageFilter

    Permalink

Ungrouped