New package
Project description
Bob IO Stream
This package is part of the signal-processing and machine learning toolbox Bob.
Motivation
This package provides a way to define efficient processing pipelines, based on the concept of “streams”, to load and process or save video data stored in hdf5 files. The stream abstraction allows to define pipelines of processing steps with an easy syntax, and provides a way to access the processed data with a “numpy-like” api. It was designed to minimize computation and disk access by loading only necessary data and buffering video frames and processed data.
Installation
Complete bob’s installation instructions. Then, to install this package, run:
$ conda install bob.io.stream
Example
Here is an example of how to use the package to load data recorded with 3 different cameras, build a processing pipeline and finally load the data.
# Import Stream and StreamFile classes
# Processing filters are available through the Stream class
from bob.io.stream import StreamFile, Stream
# Open a Streamfile to a hdf5 file containing video data.
f = StreamFile("input_example.h5", face_streams.json")
# Define processing pipeline by chaining streams:
# First define the streams to load the data from the file (color, left and right), and add some processing
color = Stream("color", f)
nir_left = Stream("nir_left_stereo", f).adjust(color).normalize()
nir_right = Stream("nir_right_stereo", f).adjust(color).normalize()
all_swir = nir_left.stack(nir_right)
# Now that the pipeline is defined, the processed data can be accessed as if indexing in a numpy array:
all_streams[0] # Loads data and apply processing to provide the first frame of the reprojected stream.
all_streams[2:10] # Loads several frames, etc...
Contact
For questions or reporting issues to this software package, contact our development mailing list.
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
File details
Details for the file bob.io.stream-1.0.1.zip
.
File metadata
- Download URL: bob.io.stream-1.0.1.zip
- Upload date:
- Size: 36.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.7.1 requests/2.26.0 setuptools/58.0.4 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81817bcdc9531971d6ec4eb15aafe97e5c1c8e3528abe4b755d76d69d903416a |
|
MD5 | 6312218c17c26932d046e12c1984760a |
|
BLAKE2b-256 | 0608ec2764f50932f595d27cf1df788b0527e3f1605efca5893ce07853b18fc0 |