Module to work with data in an Experiment Directory Layout (EDL) structure
Project description
EDL - Experiment Directory Layout
This repository contains specifications for the "Experiment Directory Layout" (EDL) storage layout as used by the Syntalos data acquisition tool.
It also contains a Python module, edlio, to easily load and save data in an EDL structure
for simplified raw experiment data management.
Check out the online documentation to learn more about this project!
Usage
You can install edlio using pip:
pip install edlio
You can then use it in your projects to load data, for example for a project
that comntains some camera capture data in a videos group:
import sys
import edlio
import cv2 as cv
# load our data collection
dcoll = edlio.load('/path/to/edl/dataset/directory')
# display some information about this dataset
print('Loaded data collection {}, created on {}, recording length: {}'.format(
dcoll.collection_idname,
dcoll.time_created,
dcoll.attributes.get('recording_length_msec', 'unknown')))
# get reference to the "videos" group
egroup = dcoll.group_by_name('videos')
if not egroup:
print('This dataset did not contain a "videos" group!')
sys.exit(1)
# get the "generic-camera" dataset
dset = egroup.dataset_by_name('generic-camera')
if not dset:
print('Dataset "generic-camera" was not found in {}.'.format(dcoll.collection_idname))
sys.exit(1)
# display all frames from this dataset and their timestamps (if any were found)
for frame in dset.read_data():
print('Frame time: {}'.format(frame.time))
cv.imshow(dset.name, frame.mat)
if cv.waitKey(25) & 0xFF == ord('q'):
break
You can find more examples in the documentation. We also provide full API documentation.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file edlio-0.3.0.tar.gz.
File metadata
- Download URL: edlio-0.3.0.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c6fc5beb8d3a2ebbbf3f628093e13d8644b128909293073fa81690bbb461b86
|
|
| MD5 |
1e2f4e2dfeee75f2c0ce0950a63ff6ba
|
|
| BLAKE2b-256 |
6c1100fb78e3e5098530ec81df63a07af7375c32ca75b62b10c9b030e459d7b8
|
File details
Details for the file edlio-0.3.0-py3-none-any.whl.
File metadata
- Download URL: edlio-0.3.0-py3-none-any.whl
- Upload date:
- Size: 30.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6aa42b18e187b31b733f4a752679975b7cc4d9326afb484e5452588d496768c5
|
|
| MD5 |
700ef385601f003cf2333a1e72ac0504
|
|
| BLAKE2b-256 |
4802ae12f0f3865fcca798c7c7709fc49f77de305733644a2751d888459284e7
|