CellCounter


Maxima

Namespace: CounterFunctions

Contains wavelet transformation and local maxima finding.

Functions and values

Function or valueDescription
C3DWT marr image
Signature: marr:(type) -> image:^a [,] -> float [,]
Type parameters: ^a

Calculates the wavelet transformation for every pixel with the given wavelet. marr is a MarrWavelet, which can be created by the marrWaveletCreator. image is the image which should be transformed with the marr wavelet. The output is the transformed image.

findLocalMaxima dist image
Signature: dist:int -> image:float [,] -> (float * float) list

Calculates the local maxima in the given 2DArray. image is the image in which the local maxima should be found. dist is the radius for points around the checked point which should also belong to the local maximum. The returned tuple list contains the coordinates of the found maxima.

Fork me on GitHub