Decimation#

class tonic.transforms.Decimation(n: int)[source]#

Deterministically drops every nth event for every spatial location x (and potentially y).

Parameters:

n (int) – The event stream for each x/y location is reduced to 1/n.

Example

>>> transform = tonic.transforms.Decimation(n=5)