https://github.com/innolitics/hdav
High Dimensionality Algorithm Viewer
https://github.com/innolitics/hdav
Last synced: about 1 year ago
JSON representation
High Dimensionality Algorithm Viewer
- Host: GitHub
- URL: https://github.com/innolitics/hdav
- Owner: innolitics
- License: mit
- Created: 2018-02-20T21:21:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-06T17:50:30.000Z (about 8 years ago)
- Last Synced: 2025-01-28T04:25:36.745Z (over 1 year ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# High Dimensional Algorithm Viewer (HDAV)
Hdav is a python library that facilitates viewing 2- and 3-D multi-layered image data.
## Example Use Case
```python
import hdav
hdav.view(layers=[
{
'name': 'CT',
'data': ct_voxels_preop,
'visible': True,
},
{
'name': 'MRI',
'data': mri_voxels_preop,
'visible': True
}
], interactive=True, window_id='pre operative')
hdav.view(layers=[
{
'name': 'CT',
'data': ct_voxels_postop,
'visible': True,
},
{
'name': 'MRI',
'data': mri_voxels_postop,
'visible': True
}
], interactive=True, window_id='post operative')
```