read and write files from neuromorphic cameras
Project description
Loris
read and write different file formats from neuromorphic cameras such as .dat, .es or .csv and also amazing animal
If you're planning to read .aedat files, take a look at dv-python
Supported formats
version | read | write | |
---|---|---|---|
.dat | n/a | ☑ | ☐ |
.es | 2.x | ☑ | ☑ |
.csv | - | ☑ | ☐ |
Install
pip install loris
How to loris
Read a file, for example a .dat file and loop over all events
import loris
my_file = loris.read_file("/path/to/my-file.dat")
events = my_file['events']
for event in events:
print("ts:", event.t, "x:", event.x, "y:", event.y, "p:", event.p)
Write events from an array to an .es file
ordering = "xytp" # corresponds to the order in your array
loris.write_events_to_file(event_array, "/path/to/my-file.es", ordering)
Write structured events (with dtypes) to an .es file
loris.write_events_to_file(structured_event_array, "/path/to/my-file.es")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
loris-0.4.0.tar.gz
(8.8 MB
view details)
File details
Details for the file loris-0.4.0.tar.gz
.
File metadata
- Download URL: loris-0.4.0.tar.gz
- Upload date:
- Size: 8.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.33.0 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62e5eb410b99a2e977840bffc43ac1544dadb1c45ddc0f6cf86edea72e9e273f |
|
MD5 | 402ed27294fb1e4ba9ebe17e13e56da9 |
|
BLAKE2b-256 | 40bfa98d85f88a9158234c35512ed23b8163e63350cef8c1c035088d5cf211c6 |