Skip to main content

Convert3D family of tools from the Penn Image Computing and Science Lab (PICSL)

Project description

Python wrappers for PICSL Convert3D Tools

This project provides a Python interface for the Convert3D tool from the Penn Image Computing and Science Laboratory, developers of ITK-SNAP.

Convert3D is a format conversion and multi-functional processing tool for 3D (also 2D and 4D) medical images. Complex pipelines can be created by putting commands on Convert3D command line in the correct order. Please see Convert3D Reference for complete documentation.

This project makes it possible to interface with Convert3D from Python code. You can execute pipelines as you would on the command line, and you access images on the Convert3D stack as SimpleITK image objects.

Quick Start

Install the package:

pip install picsl_c3d

Download an image to play with (optional of course)

curl -L http://www.nitrc.org/frs/download.php/750/MRI-crop.zip -o MRI-crop.zip
unzip MRI-crop.zip

Do some processing in Python

from picsl_c3d import Convert3D

c = Convert3D()

c.execute('MRIcrop-orig.gipl MRIcrop-seg.gipl -lstat')

SimpleITK Interface

You can read/write images from disk using the command line options passed to the execute command. But if you want to mix Python-based image processing pipelines and Convert3D pipelines, using the disk to store images creates unnecessary overhead. For the users of SimpleITK, additional commands are available to add images to the Convert3D stack and to read images from the stack.

from picsl_c3d import Convert3D
import SimpleITK as sitk

c = Convert3D()

img = sitk.ReadImage('MRIcrop-orig.gipl')       # Load image with SimpleITK
c.push(img)                                     # Put image on the stack
c.execute('-smooth 1vox -resample 50% -slice z 50%')  # Make a thumbnail
img_slice = c.peek(-1)                          # Get the last image on the stack

Capturing and Parsing Text Output

Sometimes you want to capture parts of the output from a Convert3D. This example redirects the output of the execute command to a StringIO buffer, and then uses regular expressions to parse out a piece of information that we want:

from picsl_c3d import Convert3D
import io
import re
import numpy as np

c = Convert3D()
s = io.StringIO()                         # Create an output stream

# Run c3d "pipeline" capturing output
img='MRIcrop-orig.gipl'
c.execute(f'{img} -probe 50%', out=s)     # Run command, capturing output to s
print(f'c3d output: {s.getvalue()}')      # Print the output of the command, returns
                                          # 'Interpolated image value at -39 -55 32 is 21'

# Parse the c3d output
line = s.getvalue().split('\n')[0]        # Take first line from output
matches = re.split('( at | is )', line)   # Split the line on words "at" and "is"
pos = np.fromstring(matches[2], sep=' ')  # Store the position -39 -55 32 as Numpy array
val = float(matches[4])                   # Store the intensity 21

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

picsl_c3d-1.4.4.0-pp310-pypy310_pp73-win_amd64.whl (6.1 MB view details)

Uploaded PyPyWindows x86-64

picsl_c3d-1.4.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (12.0 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

picsl_c3d-1.4.4.0-pp39-pypy39_pp73-win_amd64.whl (6.1 MB view details)

Uploaded PyPyWindows x86-64

picsl_c3d-1.4.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.0 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

picsl_c3d-1.4.4.0-pp38-pypy38_pp73-win_amd64.whl (6.1 MB view details)

Uploaded PyPyWindows x86-64

picsl_c3d-1.4.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (12.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

picsl_c3d-1.4.4.0-cp313-cp313-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.13Windows x86-64

picsl_c3d-1.4.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-cp313-cp313-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picsl_c3d-1.4.4.0-cp313-cp313-macosx_10_13_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

picsl_c3d-1.4.4.0-cp312-cp312-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.12Windows x86-64

picsl_c3d-1.4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-cp312-cp312-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picsl_c3d-1.4.4.0-cp312-cp312-macosx_10_9_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

picsl_c3d-1.4.4.0-cp311-cp311-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.11Windows x86-64

picsl_c3d-1.4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-cp311-cp311-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picsl_c3d-1.4.4.0-cp311-cp311-macosx_10_9_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

picsl_c3d-1.4.4.0-cp310-cp310-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.10Windows x86-64

picsl_c3d-1.4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-cp310-cp310-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picsl_c3d-1.4.4.0-cp310-cp310-macosx_10_9_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

picsl_c3d-1.4.4.0-cp39-cp39-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.9Windows x86-64

picsl_c3d-1.4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-cp39-cp39-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picsl_c3d-1.4.4.0-cp39-cp39-macosx_10_9_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

picsl_c3d-1.4.4.0-cp38-cp38-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.8Windows x86-64

picsl_c3d-1.4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

picsl_c3d-1.4.4.0-cp38-cp38-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

picsl_c3d-1.4.4.0-cp38-cp38-macosx_10_9_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file picsl_c3d-1.4.4.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d7e58c37ba25d0d193a8b1504171fd48cc95d7e5299db8b07b49e137081ad2c7
MD5 6dfe4107d8677302f0761e69f26346ca
BLAKE2b-256 741f057ec8b8611c9e68944ed70ab836cec4ecc23bdcea2e1cbd0958bfa9ef2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edbec285100ad8062c323e7653fe43992249ad88a99681ea0ecada0a35afc851
MD5 de677f1c1f6342fea009114a7853660f
BLAKE2b-256 e4ee914cbbd70005c73f06eb464f508bc1ad7e81db1d540b521c95f7ff56adfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e86c701670ddee88ea8011ab703ed2efa1d948b49650dbe9088203d59380564
MD5 384f50ed29a9300577feac10ccf44308
BLAKE2b-256 940ab18cce76f46b8d134c1107a6fa6284d9a6c0639c0126695892d8b7537d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a3917f86c41e86c1dc0d1f71888b4a6139dd15d5a4d46ecf8db354ba56680d17
MD5 65d46a5ac5f951a773ccee1ed53cd696
BLAKE2b-256 917ba2b8c09c7d08dd893b7b7fdff4fe482b34b206da5e0948d1498c61d439c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 14dd86f27bc58d2c92be382e606550c576c51c729cd6af85b9ad3356604da4d7
MD5 a6c54ba98a45a0a697cbf8cc587bb011
BLAKE2b-256 dc6a96854e4b9233bf16e92815b8c03ca97624a364879615236a52a5817c7038

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc13824b8e592ede681d80ffdc123ee47068faf0352f21d9ae62c5b55fdd7b56
MD5 4f61f60beed83987ec29f672e6436bd4
BLAKE2b-256 70cf212f0b9a9b2125f8c920f248a2548821bfa9c1361fc163d61d9beadf3026

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3206116f96ec243e3fa36c14427bfda4063827bf54683b4bfc89e400235dfded
MD5 5287d828dcb1ebd53db731ed33f8b9ae
BLAKE2b-256 51ba955b7eaad269ab1660e360f83f0219fc1b89e1283be02e3882e8fe0bd05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 619956e7468cc2015c90fc94989d51c91228a25ce3d2165d0e543a96060fc65b
MD5 37b7121b47ec4698ab173c5eddad3d73
BLAKE2b-256 a9affe4ec9a60b8e1e45a74df3d0192e4d205269f217bb283b60dad617935de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2bea43d6a1dc15fa715d60346020db51183964aa985aac6cf7fdbb3bdd695119
MD5 1966eeda6ba668433b0e2ca329282698
BLAKE2b-256 51e18b490daec8dacb14ef2410d99f8a80121a1de98b80a98a8fbcb5f5c6a2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7be26cf53f96ce4235113fd4de6a92fc91b78f9177a5cbe99df86506638d43ad
MD5 f3949f0e94d3e8835d3d788521dc723f
BLAKE2b-256 58a865ca9e6256cff822ede8f6ec1f109734c4269b458e58ab7a95a9e04d954c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7195d7a145690c764647efdfd5829b2c7e86d8e55666e1498314912927bd476e
MD5 84a758edaf7e3542ba7fef38b64f6123
BLAKE2b-256 2db26677c82bc3348851b2f3205341b3ea98c0b3238fdd5013c8b8b2172eaed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d7b37fcaf35525006231225982f21de5b8e4aeb641fe3788b099bc59e70119c
MD5 32240abaf26d639d9bb1ed93647539fd
BLAKE2b-256 eac686fa58216182f0b21a48502311db21384df7e9014b0e9c4987738de47fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1331f8f6dc279c861daf5e3ac47aa14ee6f438bec80a54be82971ba529ed8ca1
MD5 43a9047c19dd54a7f0b8243a2b4ebaa1
BLAKE2b-256 b4aefa74a11a466e528fed90b01378484bddba3f9cd993ba1c23f0300ff520cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a469c43c56ca7892468db60e2eb55cc82efef7182ebf4d869c8178f840090985
MD5 2656240cda0807432b338cdf8a385873
BLAKE2b-256 7e0c23ca63c1190c328690516913ebcf4b2e978eaf6b550339cb84cb3248c6d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f2e97f2c7dcefdc5dce4bfe54303b3ccb128b93278cea21d22a16dd0900fa75
MD5 09c4dbca243733e73a852ac56c02006b
BLAKE2b-256 367e7ea146824ebb0ff4ae79f199920b01026b2ec04673e1eddc9dd1f52aee7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d8c04e628cd39456df4777dfd074852fe18ec94ce0764c506d02fdc6cf594e63
MD5 5cd817e3970f7bea4701e8077272c28d
BLAKE2b-256 8a1d065243fc422c1560e002602daa635e2da8a419e114567fdbde6e0a3fccc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac2c3744054eee085ab780d0dc2d6b84acae62037f3a59ba7582d9dbc80bb712
MD5 86a20c4b57d0e1157a6ecb234c3f4488
BLAKE2b-256 94b5a4da0a5c6ad37934e21f8fa29e1a33b3f0fd011c71a035e69468e8596fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef556989887d7d5040671c3ef972d4fb107af8db18ab1c781ab9ad636fbf3312
MD5 98ee05869ec9dd141b8c8cb3b5632da8
BLAKE2b-256 15c00a404c6d4a3678b30a1f02c87ada63bfcebcb298155ed76a581a274aef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4844170dfc52a392809693d0498d059d7b0a0c4201d2af8cc45ce0e4e7ed1502
MD5 27b6a26d5f2f3a8954de41928f95ace1
BLAKE2b-256 318efdf5af6d6fb6148ec0eb581cf3aa80694fd29bd66dc57ee17fc078a8728c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6ec89525028a78673e9401d84c8df07a926c50771f1d97b0c643df33d65b200
MD5 17727ccd567de020a7ed7ac86264fa97
BLAKE2b-256 792ed590e53f539ad91a39c120964a85f4a21118b41f030d3a7d9bb8b549a2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2f3fa3e1bdf6273ea6a21897aacd42a593ad32d3148c96f72764db58e5e5c797
MD5 6277c78f49370477a2df4ab7f8d86f8f
BLAKE2b-256 84a0fa9fb55df67232260a5a683fd3f3df72749f252df4316fee3ae8e650c58c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78dc445c5c636300e9727b7c623c733cfdd37d5bda7bec208f3a34f8613d82e2
MD5 de7e62e52bd07c8fcc4e39aae5190d84
BLAKE2b-256 432695199f6447194c7e2917b268e373459e849b87ab9e013c80f27ffbc3ab6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f22c2d764d233999a773e24f4969625f542ee53634c90156b1d73db2e5565475
MD5 f3b08a5aa59e79b3472f2604291fd50e
BLAKE2b-256 bf9a78eefe3090dc61a39675dc0f38b3e2c8be0e80d542408c536c5c57df3b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b34421e108d42f01a6d477bd8d5465b3ade59dfe5036f506198f394f45db8b1b
MD5 adf6452cb57b3ac96ff04d23fa511a75
BLAKE2b-256 79fcee6a7c5a69922d5331049e8c53f513d9beace43f9e009773891815096eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6fa498ef2632ca6a9aa99ff38047824f36abfc5de0fba7d473f63dd74b97c70e
MD5 62d51bcf9d0a1363f047c589cea35028
BLAKE2b-256 710ae962239c0c1b912e463cb63c8ae711564eeb487b3c8e36d0766a6f71d40e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f4c7afb65b2e6dbf78b0ab3eaa7dd3e2dbd2e1f5e52aba5fe1edc3ed7287206
MD5 250c0b59cc9729a819777bbc09b7f138
BLAKE2b-256 a32025e156d4eca8294b5a41edd7840093ae64f2b21b75479206bab5f1822c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f31107e5c785fb570054f739e945e0217d3aaa19dcd2cb23d5afc5ec3b03e49f
MD5 6e47871f587bdf4b53e796d43b8c6f2b
BLAKE2b-256 f8d1670ee3e59ee29aec3b38a6b2680d93a117a9a26635a0fc3773be29c5069c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc6489b98720ad0687a7db2283b52ac5445c493434a3c6cbdcc74cb091ac4206
MD5 e0b18eff9cb0224ab0b225fdd63404b4
BLAKE2b-256 89016098a5485cf7f550b15f70299724e28050038bdda64f387f53e73efb549b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: picsl_c3d-1.4.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for picsl_c3d-1.4.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f4bfc8b120a1982c82e487e838ca1ce8c4c20cf19b40a857a3980d7c691384a
MD5 7a516d4efd1ec20ddac88b5c0d225d95
BLAKE2b-256 f441102b149434cb610c3668de7592cfa489590675cdf64f71c2cf29d9fe65e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 deab547bc35fcce4aaa21095bab41f670bd6e33e4ed66bac53d6b9072840187d
MD5 c31354a6a0ef81963506f9bb750a7897
BLAKE2b-256 3506a95499284503aa6f46519e437a80883ec30b23a0fd0eea7fa76e0712b72a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0de4535ab58b8325c6e2306ec0d23a0b4c69b8dddc8b3ed66b748125a55b8a7f
MD5 7d05a4d52a407b8dcd529bd3d82689d6
BLAKE2b-256 d2cb3ebe880d64e688e316d2bb26d83b4dc607ddc10d042639d2df3c3d6d9583

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 285b0e4474b3fb74116ab437efe3e1657ac98128508e6854ad42884a62076546
MD5 ff79c9543e52378fe9aa4c617ecce64d
BLAKE2b-256 b69f9a457a67c82c8977deae7188d96ac1f8e8d8749b3bcfb6fe006217614c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: picsl_c3d-1.4.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for picsl_c3d-1.4.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 89e4632f8674168b7af51cb0a59195afc15edd237bfaa90b1c4e8b4b33278e3c
MD5 4178724f9206304f14f68eef4f9b750a
BLAKE2b-256 e6b42351ee538657b1471b46dee65068717b161cfa965801d9597fc0ed48d60f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1c8312c6705a98dbb366c99a728d2b472d86efd361b89a0b1b474cd7c110a73
MD5 71f00205d97aea8937267302f6b54793
BLAKE2b-256 b80f3b4bde9cb8400093de3b851873164992fdc8ef354afc52bb0bcde12a350b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31a5803d351c78fd62eb1f90f6b3917629fa12ee629f0dce8740ca1c53b53d82
MD5 93f969140f6b2d4988169742e9c4970d
BLAKE2b-256 2c208a90ef3a7918a5d5eba6d838f44986d2f5628a9927a143bcc24f5c52daae

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file picsl_c3d-1.4.4.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 198d608019045ab78a99070be20d88b48c09c84c7e9c33fd78b1136ce1455e12
MD5 650174b757bf3fc5f0814442e7fc3641
BLAKE2b-256 9e7d06ff5f2204882a785afb5cc1b15d445e466301a45990265c120f8951d461

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.4.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/c3d_python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page