Coverage for src/evutils/filtering/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.15.1, created at 2026-07-18 05:24 +0000

1"""Event stream filtering. 

2 

3Operations that select or drop events by spatial region or content: spatial 

4masking today, with denoising, ROI and downsampling to follow. (Timestamp 

5normalization is a time *transform*, not a filter -- see 

6:mod:`evutils.transforms`.) 

7""" 

8 

9from ._masking import mask_events 

10 

11__all__ = [ 

12 'mask_events', 

13]