Skip to content

Releases: SEU-ALLEN-codebase/v3d-py-helper

v0.4.1

26 Aug 03:34

Choose a tag to compare

Removed unnecessary compiling

v0.4.0

20 Aug 20:20
2fb876a

Choose a tag to compare

Adding build for MacOS 13 & 14

v0.3.0

29 Feb 14:33

Choose a tag to compare

New Features

  1. Added Terafly tiff3D loading.
  2. For issue #2 , wheels for both windows and linux platforms are published to PyPI.

Terafly loading usage:

from v3dpy.terafly import TeraflyInterface
import numpy as np

t = TeraflyInterface('teraconvert_path')
x, y, z, c = t.get_dim()
# center block
size = np.array(t.get_dim()[:3])
half_block_size = np.array([128, 128, 64]) // 2
start = size // 2 - half_block_size
end = size // 2 + half_block_size - 1

# 4D image, indexed by c, z, y, x 
img = t.get_sub_volume(start[0], end[0], start[1], end[1], start[2], end[2])

v0.1.0

19 Apr 09:54
29352cf

Choose a tag to compare

Update static.yml