├── .idea ├── .gitignore ├── aedat4to2.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── other.xml ├── runConfigurations │ ├── test_multiple_conversions.xml │ ├── test_noarg_filebrowser.xml │ ├── test_single_conversion.xml │ ├── test_single_no_frame.xml │ ├── test_single_no_imu_no_frames.xml │ └── test_usage.xml └── vcs.xml ├── LICENSE ├── README.md ├── aedat4to2 ├── __init__.py └── aedat4to2.py ├── requirements.txt ├── sample-jaer-output.png └── setup.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/aedat4to2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/aedat4to2.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test_multiple_conversions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/runConfigurations/test_multiple_conversions.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test_noarg_filebrowser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/runConfigurations/test_noarg_filebrowser.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test_single_conversion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/runConfigurations/test_single_conversion.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test_single_no_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/runConfigurations/test_single_no_frame.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test_single_no_imu_no_frames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/runConfigurations/test_single_no_imu_no_frames.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test_usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/runConfigurations/test_usage.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/README.md -------------------------------------------------------------------------------- /aedat4to2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aedat4to2/aedat4to2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/aedat4to2/aedat4to2.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample-jaer-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/sample-jaer-output.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsINI/aedat4to2/HEAD/setup.py --------------------------------------------------------------------------------