A library for reading ".aedat" files for logging outputs from DVS event-based cameras.
pip install aerpy
import aer
# read all at once
events = aer.AEData("mylogfile.aedat")
# read only the first 1000 events in the file
events = aer.AEData("mylogfile.aedat", n=1000)
MIT