Python library for Neurovolume. Build VDBs for scientific visualizations
Project description
Neurovolume is a Python library for manipulating and visualizing volumetric data. It includes a custom-built, scientific data-focused, VDB writer. The VDB writer is written in Zig with no external dependencies.
While this project focuses on neuroscience, it includes ndarray to VDB to support virtually any volumetric data pipeline.
This project is under active development and might not have everything you need. Please reference reference our roadmap to see what is in the works!
This project is available as a pre-release alpha on pypi. Presently it is only available for arm64. More operating systems coming soon!
🏗️ Building
If you are building locally, we use uv to build and test the project:
uv run python -m ziglang build && uv run pytest tests -s
This is how you might overlay a BOLD sequence onto an anatomical scan:
# acquire arrays and fps from the nibable image (see test_integration.py)
bold_diff = nv.Channel(
"bold",
sub(nv.prep_ndarray(bold_arr)),
transform=bold_affine,
source_fps=fps,
playback_fps=24,
speed=1,
interpolation=nv.modes.Interpolation.direct,
)
t1 = nv.Channel(
"t1",
nv.prep_ndarray(t1_arr),
transform=t1_affine,
num_source_frames=bold_diff.num_output_frames,
interpolation=nv.modes.Interpolation.frozen,
prune=np.float32(0.1),
)
save_config = nv.SaveConfig("fmri_bold_sub_fade", folder=vdb_out / "fmri_seq")
fmri = nv.Sequence([bold_diff, t1], save_config)
fmri.write()
See tests/test_integration.py for
Higher sparsity amounts will result in better performance and lower disk space usage. However, after a certain point, they begin to degrade the VDB quality.
📀 Projects
- BoldViz: a Blender plugin for fMRI and MRI visualizations. It was used to create the renders in this README. A great place to start if you don't want to deal with writing any Python.
- Neurovolume Examples and Physarum include some good starting points for how one might use this library with numpy.
- The nibabel example shows how to use an external NIfTI parser, which could be of use for not-yet-supported filetypes. We're moving away from native file parsing as everyone seems to use numpy, but please reach out if this is something that you'd want!
☁️ Why VDB?
VDBs are a highly performant, art-directable, sparse volumetric data structure. Our volume-based approach aims to provide easy access to the original density data throughout the visualization and analysis pipeline. Unlike the openVDB repo, our smaller version is much more readable and does not need to be run in a docker container.
🧠 Dataset Citation
This software was tested using the following datasets.
Isaac David and Victor Olalde-Mathieu and Ana Y. Martínez and Lluviana Rodríguez-Vidal and Fernando A. Barrios (2021). Emotion Category and Face Perception Task Optimized for Multivariate Pattern Analysis. OpenNeuro. [Dataset] doi: 10.18112/openneuro.ds003548.v1.0.1
Direct Download Link for T1 Anat test file
Direct Download Link for BOLD test file
The MNI Template can be found Here
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 neurovolume-0.1.0a19.tar.gz.
File metadata
- Download URL: neurovolume-0.1.0a19.tar.gz
- Upload date:
- Size: 522.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d05f22546db94c56dce09d939748f7ce93e79677b64e7cd016141a8b79732d1
|
|
| MD5 |
df8933856f2decbb14c259c97f0c8e56
|
|
| BLAKE2b-256 |
8eed08abebdf325af8a8ac466fa5964ab7bfff2a2b4cacb377f048405acd3531
|
File details
Details for the file neurovolume-0.1.0a19-py3-none-any.whl.
File metadata
- Download URL: neurovolume-0.1.0a19-py3-none-any.whl
- Upload date:
- Size: 521.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
368aed341696e20a30fe602324e023144018b8ca12dcf75abfccc01b28d8ff9b
|
|
| MD5 |
6f2ced69b00f6e95ce80c4ff2055f5fb
|
|
| BLAKE2b-256 |
d93a3384ec902cec56f18c2e50b7dd506fbdadac5c96ae1186eb415d89900035
|