Recent Releases of https://github.com/seu-allen-codebase/v3d-py-helper
https://github.com/seu-allen-codebase/v3d-py-helper - v0.4.0
Adding build for MacOS 13 & 14
- Cython
Published by zzhmark almost 2 years ago
https://github.com/seu-allen-codebase/v3d-py-helper - v0.3.14
Adding build for MacOS 13 & 14
- Cython
Published by zzhmark almost 2 years ago
https://github.com/seu-allen-codebase/v3d-py-helper - v0.3.0
New Features
- Added Terafly tiff3D loading.
- For issue #2 , wheels for both windows and linux platforms are published to PyPI.
Terafly loading usage:
```python from v3dpy.terafly import TeraflyInterface import numpy as np
t = TeraflyInterface('teraconvertpath') x, y, z, c = t.getdim()
center block
size = np.array(t.getdim()[:3]) halfblocksize = np.array([128, 128, 64]) // 2 start = size // 2 - halfblocksize end = size // 2 + halfblock_size - 1
4D image, indexed by c, z, y, x
img = t.getsubvolume(start[0], end[0], start[1], end[1], start[2], end[2]) ```
- Cython
Published by zzhmark over 2 years ago
https://github.com/seu-allen-codebase/v3d-py-helper - v0.2.40
New Features
- Added Terafly tiff3D loading.
- For issue #2 , wheels for both windows and linux platforms are published to PyPI.
Terafly loading usage:
```python from v3dpy.terafly import TeraflyInterface import numpy as np
t = TeraflyInterface('teraconvertpath') x, y, z, c = t.getdim()
center block
size = np.array(t.getdim()[:3]) halfblocksize = np.array([128, 128, 64]) // 2 start = size // 2 - halfblocksize end = size // 2 + halfblock_size - 1
4D image, indexed by c, z, y, x
img = t.getsubvolume(start[0], end[0], start[1], end[1], start[2], end[2]) ```
- Cython
Published by zzhmark over 2 years ago
https://github.com/seu-allen-codebase/v3d-py-helper -
- Cython
Published by zzhmark about 3 years ago