Roboflex util jpeg Library
Project description
roboflex.util.jpeg
Roboflex support for jpeg compression to file and memory, and jpeg decompression from memory.
Useful for compressing images over slow transports (wifi, etc).
System Dependencies
None! We build jpeg-compression from source...
pip install
pip install roboflex.util.jpeg
Import
import roboflex.util.jpeg as ruj
Nodes
There are two complementary nodes: JPEGCompressor, which can turn rgb tensors into jpegs in memory, and JPEGDecompressor, which does the opposite. Useful either for writing rgb tensors to files, or compressing them (NOTE jpeg is lossy).
# all parameters are optional
c = ruj.JPEGCompressor(
# in the incoming message, where to find the rgb tensor
image_key = "rgb",
# in the outgoing message, where to place the jpeg data
output_key = "jpeg",
# If this is provided, will ALSO write jpeg files with this
# prefix, with a variation of the date and time as the suffix.
filename_prefix = "",
# name of the node
name = "JPEGCompressor",
# prints internal info
debug = False,
)
... and ...
c = ruj.JPEGDecompressor(
# in the incoming message, where to find the jpeg data as a blob
input_key = "jpeg",
# in the outgoing message, where to place the rgb data as a tensor
output_key = "rgb",
# name of the node
name = "JPEGDecompressor",
# prints internal info
debug = False,
)
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 roboflex_util_jpeg-0.1.5.tar.gz.
File metadata
- Download URL: roboflex_util_jpeg-0.1.5.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
198cb1a148a5c83bbe5ce09de678c02a4481fa3762f425832f20dfd73f211826
|
|
| MD5 |
96f1f69bc9179f286207aea77d0e6c03
|
|
| BLAKE2b-256 |
14504cc1dbcd83d6d55e7ec704020ca6baeedeedfbc11a8f4de199643e35c1d8
|
File details
Details for the file roboflex_util_jpeg-0.1.5-cp311-cp311-macosx_15_0_arm64.whl.
File metadata
- Download URL: roboflex_util_jpeg-0.1.5-cp311-cp311-macosx_15_0_arm64.whl
- Upload date:
- Size: 252.0 kB
- Tags: CPython 3.11, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbf5795f0b6f860ab4bb387842d63f876775ac07cb03badfe6d05a9735968ad8
|
|
| MD5 |
d768a45d32bd753cc6818425ebcbc81f
|
|
| BLAKE2b-256 |
428bedebd96dfd0f01a69355dfb490dbc797ff348d8331cbea545cddf5c6526f
|