PointProcessFilters

Documentation for PointProcessFilters. A package for working filtering point processes. Currently only provides bandpass filters for a variety of spatial regions. The basic version is provided by an extension of the filter function.

Base.filterMethod
filter(X::PointSet{D,T}, r::SpatialFilter{D}) where {D,T}

Applies a given spatial filter r to a point set. The output can be evaluated as a function.

Example

r = RegionPassFilter(Ball(Point(0.3,0.3),0.1))
X = PointSet(Point.(rand(10), rand(10)))
Y = filter(X, r)
Y(1.0,1.0)
u = (1.0,1.0)
Y(u)
source

However, convenience functions are provided for some common choices of region, see Available Regions.