Interactive N-dimensional numpy array viewer with FFT support
Project description
ndslice
Quick interactive visualization for N-dimensional NumPy arrays
A python package for browsing slices, applying FFTs, and inspecting data.
Quickly checking multi-dimensional data usually means writing the same matplotlib boilerplate over and over. This tool lets you just call ndslice(data) and interactively explore what you've got.
Usage
from ndslice import ndslice
import numpy as np
# Create some data
x = np.linspace(-5, 5, 100)
y = np.linspace(-5, 5, 100)
z = np.linspace(-5, 5, 50)
X, Y, Z = np.meshgrid(x, y, z, indexing='ij')
mag = np.exp(-(X**2 + Y**2 + Z**2) / 10)
pha = np.pi/4 * (X + Y + Z)
complex_data = mag * np.exp(1j * pha)
ndslice(complex_data, title='3D Complex Gaussian')
Features
Data slicing and dimension selection should be intuitive: click the two dimensions you want to show and slice using the spinboxes.
Centered FFT - Click dimension labels to apply centered 1D FFT transforms. Useful for checking k-space data in MRI reconstructions or analyzing frequency content.
Line plot - See 1D slices through your data. Shift+scroll for Y zoom, Ctrl+scroll for X zoom:
Scaling
Log scaling is often good for k-space visualization. Symmetric log scaling is an extension of the log scale which supports negative values.
Colormap Change colormap:
Ctrl+1GrayscaleCtrl+2ViridisCtrl+3PlasmaCtrl+4Rainbow
Installation
From PyPI
pip install ndslice
From source
git clone https://github.com/henricryden/ndslice.git
cd ndslice
pip install -e .
Requirements
- Python >= 3.8
- NumPy >= 1.20.0
- PyQtGraph >= 0.12.0
- PyQt5 >= 5.15.0
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Acknowledgments
Built with PyQtGraph for high-performance visualization.
Henric Rydén
Karolinska University Hospital
Stockholm, Sweden
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 ndslice-0.1.2.tar.gz.
File metadata
- Download URL: ndslice-0.1.2.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dfdc942718236421510fa804f6cce30b849d275417c36e3f111fc88186b6183
|
|
| MD5 |
f7a34577a1f78ef2c41cc335116049d1
|
|
| BLAKE2b-256 |
ff6d55ea52e3e343c27dc3a2b16d48329f037df7f38d8968ceaa362981e1a09f
|
File details
Details for the file ndslice-0.1.2-py3-none-any.whl.
File metadata
- Download URL: ndslice-0.1.2-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36f5058bdda91853c42bff218cfb38c3f76e740602519914b657b01bc81529da
|
|
| MD5 |
a891877c09ae380a3587c7e2e0fea42b
|
|
| BLAKE2b-256 |
721c541f971f2384dde36b84ef093df0b230e2bec43477c10062cd1d629d3361
|