├── .gitignore ├── README.md ├── tools ├── add_hdf5_attribute.py ├── event_packagers.py ├── h5_to_memmap.py ├── read_events.py ├── rosbag_to_h5.py └── txt_to_h5.py └── utils ├── event_utils.py ├── events_cmax.py ├── objectives.py └── warps.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/README.md -------------------------------------------------------------------------------- /tools/add_hdf5_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/tools/add_hdf5_attribute.py -------------------------------------------------------------------------------- /tools/event_packagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/tools/event_packagers.py -------------------------------------------------------------------------------- /tools/h5_to_memmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/tools/h5_to_memmap.py -------------------------------------------------------------------------------- /tools/read_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/tools/read_events.py -------------------------------------------------------------------------------- /tools/rosbag_to_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/tools/rosbag_to_h5.py -------------------------------------------------------------------------------- /tools/txt_to_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/tools/txt_to_h5.py -------------------------------------------------------------------------------- /utils/event_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/utils/event_utils.py -------------------------------------------------------------------------------- /utils/events_cmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/utils/events_cmax.py -------------------------------------------------------------------------------- /utils/objectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/utils/objectives.py -------------------------------------------------------------------------------- /utils/warps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimoStoff/events_contrast_maximization/HEAD/utils/warps.py --------------------------------------------------------------------------------