├── .gitignore ├── LICENSE ├── README.md ├── data ├── img │ ├── aps_00.gif │ ├── ev_00.gif │ └── schema_framework.png ├── noise_neg_0.1lux.npy ├── noise_neg_161lux.npy ├── noise_neg_3klux.mat ├── noise_neg_3klux.npy ├── noise_pos_0.1lux.npy ├── noise_pos_161lux.npy ├── noise_pos_3klux.mat └── noise_pos_3klux.npy ├── examples └── 00_video_2_events │ ├── 0_get_video_youtube.py │ ├── 1_example_video_to_events.py │ └── 2_make_video.py ├── simuDVSICNS_Linux.yml ├── simuDVSICNS_Windows.yml └── src ├── arbiter.py ├── dat_files.py ├── dvs_sensor.py ├── event_buffer.py └── event_display.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/README.md -------------------------------------------------------------------------------- /data/img/aps_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/img/aps_00.gif -------------------------------------------------------------------------------- /data/img/ev_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/img/ev_00.gif -------------------------------------------------------------------------------- /data/img/schema_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/img/schema_framework.png -------------------------------------------------------------------------------- /data/noise_neg_0.1lux.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_neg_0.1lux.npy -------------------------------------------------------------------------------- /data/noise_neg_161lux.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_neg_161lux.npy -------------------------------------------------------------------------------- /data/noise_neg_3klux.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_neg_3klux.mat -------------------------------------------------------------------------------- /data/noise_neg_3klux.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_neg_3klux.npy -------------------------------------------------------------------------------- /data/noise_pos_0.1lux.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_pos_0.1lux.npy -------------------------------------------------------------------------------- /data/noise_pos_161lux.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_pos_161lux.npy -------------------------------------------------------------------------------- /data/noise_pos_3klux.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_pos_3klux.mat -------------------------------------------------------------------------------- /data/noise_pos_3klux.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/data/noise_pos_3klux.npy -------------------------------------------------------------------------------- /examples/00_video_2_events/0_get_video_youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/examples/00_video_2_events/0_get_video_youtube.py -------------------------------------------------------------------------------- /examples/00_video_2_events/1_example_video_to_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/examples/00_video_2_events/1_example_video_to_events.py -------------------------------------------------------------------------------- /examples/00_video_2_events/2_make_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/examples/00_video_2_events/2_make_video.py -------------------------------------------------------------------------------- /simuDVSICNS_Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/simuDVSICNS_Linux.yml -------------------------------------------------------------------------------- /simuDVSICNS_Windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/simuDVSICNS_Windows.yml -------------------------------------------------------------------------------- /src/arbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/src/arbiter.py -------------------------------------------------------------------------------- /src/dat_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/src/dat_files.py -------------------------------------------------------------------------------- /src/dvs_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/src/dvs_sensor.py -------------------------------------------------------------------------------- /src/event_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/src/event_buffer.py -------------------------------------------------------------------------------- /src/event_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuromorphicsystems/IEBCS/HEAD/src/event_display.py --------------------------------------------------------------------------------