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.6.0-pp310-pypy310_pp73-win_amd64.whl (6.1 MB view details)

Uploaded PyPyWindows x86-64

picsl_c3d-1.4.6.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.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-pp39-pypy39_pp73-win_amd64.whl (6.1 MB view details)

Uploaded PyPyWindows x86-64

picsl_c3d-1.4.6.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.6.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-pp38-pypy38_pp73-win_amd64.whl (6.1 MB view details)

Uploaded PyPyWindows x86-64

picsl_c3d-1.4.6.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.6.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-cp313-cp313-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.13Windows x86-64

picsl_c3d-1.4.6.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.6.0-cp313-cp313-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-cp312-cp312-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.12Windows x86-64

picsl_c3d-1.4.6.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.6.0-cp312-cp312-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-cp311-cp311-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.11Windows x86-64

picsl_c3d-1.4.6.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.6.0-cp311-cp311-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-cp310-cp310-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.10Windows x86-64

picsl_c3d-1.4.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-cp39-cp39-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.9Windows x86-64

picsl_c3d-1.4.6.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.6.0-cp39-cp39-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-cp38-cp38-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.8Windows x86-64

picsl_c3d-1.4.6.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.6.0-cp38-cp38-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

picsl_c3d-1.4.6.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.6.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d95aba025e3a1f77c211388f82b5fb2a540ef9334fd48bf37cfaba6b4b9c442
MD5 68b32d3f8630bf2b0f4b6be40c0afde1
BLAKE2b-256 d5e0110c5fa9990c05958af9d70d59f7619870cc32e50e259e9a13690d031fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4879654df71eccc5a6a41dc4ae2853eaeb5e5c939021cd6402a00f2817f8d1fb
MD5 c617cd0b5a9c35bddd8437f4e950cfed
BLAKE2b-256 9d2520ae0be938c1c1d00db85f6ffa2667b80ff044839d346c81e11885b19faa

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74d3fa6cf4e99ddfb1c4e4ec4673ddaeb40316eead9b49edead71ee3c256ce3e
MD5 f3db367876fb0bb9148433d9e7ec0995
BLAKE2b-256 eb6a4122c4be61271f252830c0dfa740126afe3996a260f87086a6a6d07d20cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 609f01c6bb55123e05666481e71071d6baed408081dd0a80eeec377b72d366a7
MD5 ae1d6467bfffb205c4e577e8101c2de9
BLAKE2b-256 e2df1946c09c7f9d299dd2767fb37c5f0375b4fdd51851115664a8f1eacc0ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8bf0b00c2e666fa66c1a9a5c997e8d6d76d1168516d5f24021c816daf63c3c38
MD5 d130f4f30bdaab3159c6367747780ff1
BLAKE2b-256 3e23d2c1e9651dfebc8a0bd87fe7ac3b8d88e965434c0d6333f84447951a876d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3a0faf9511bdd36a32ea15a93cd5cfae5787d43d59dbd62f4c9ba2f52eeb6be
MD5 49419344b86089db933ecb4b1321a41a
BLAKE2b-256 207f98f025291f7c253d5a10c6408dab23bab5e233e38a6421c2967210758d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab2b21a4dc351a4ef76b0b4a49901228e93dca4bb8ead4be045ecd5489f3974e
MD5 68857a63f8ba24b1292c2abe8ad10df3
BLAKE2b-256 7dfedf62387aeb04cbfc9e548bac725f0f048fb4d2418036c63282f68f286299

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9fbb1e2f3ed6a7f4e43c15e4a1984aab7717befdcb2e4ff15dd7088b35563a1a
MD5 b10d395b210183fd5f21daaf41b038fa
BLAKE2b-256 dde4bfe0763daffe28a246c7178d890f8991e7f979872d677299f23d8daf07f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6551f2aa378e3d863aff26c05fa39b4f1f172578bdfff8d3d892adfd86f51884
MD5 64a9d8920d02bfe53834b74d676f1c48
BLAKE2b-256 8fa3f49d851cc27d088b56e7278ef063d9dddee7292b74de066c54bc07cfe426

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fdec7566e166ff678e6e09dcdeb8ce7d85c8aef7486ef47f70587ab7b14e6c6
MD5 abc603a8ea76d35d09442b956561f8da
BLAKE2b-256 03b1d4b83971ad83227f73a8a4ded91b78ef73cd619ce7f5c4641498ad86ae15

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27b025668eb4028a47a1ea9f7d8532d5996fb9e5b8a9a7d5404d79e3c6732f1a
MD5 e1ce00633cc927a4e5823d6c83946862
BLAKE2b-256 1399ea54888a66d54399560c7feb05b2c91c31f1c41b2ac379f3a40cec8154b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 994404a078e498a353c41b1f4f794cd07ba1e0110212b4a622eade161dd6594a
MD5 b08a42c1f930ef2560042c28bd59b227
BLAKE2b-256 040b6c91b82b5ba07cdc3100ce0aa031f32b5c417a6d6b1afa76ee3fecb3e28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4e99711cf48fe2151fc33247cfd1371e7c3741526aab382eaac1e4e0ea78b2d
MD5 a39423e26bf85bc8a48bfee347512604
BLAKE2b-256 a0e1aafcec814e5e2dfc9cfd75ec612af3318aafccee30c1181a256eb07c5f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 649c9ea227c3b75398947076ff4316639b8a17a621ce32d46f3c6cb5ded0f0da
MD5 c2c829d33eab0e0e3d13bbdac3c42488
BLAKE2b-256 eb2fdc501dd96533162340c05b3696defb79654ff35a834fa24c17a79b9c4d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec1f9733cf72dba02944ddd3d421e27ba3d7a55bfa751fcf4e196b79db8fd040
MD5 214da53b49e42de149073ac418381863
BLAKE2b-256 7b32122655a87feeaeb38d98bf0b633a7fc780baeb425d841e3d61e86ac87595

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ee78904307f1a53caeceee8676f0f34194e8be2b732df7b8e0acc44cd6aa2049
MD5 ee9853394311a304571a8874a4363a88
BLAKE2b-256 5ef0321593332cecc3a561cbc0ea1363f238134f69d8178b5f72318c058a016e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5271d9f05484f75ccd8f45c7b8c78eed15b92e14b3ea4b11593a7b03555e337
MD5 d1e0776ee0f93eefa35ad38a5235550d
BLAKE2b-256 127c6067210d33a4c5e76b7b253acb88b494b8fe1960046e3fe320f4d997d75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0dac584bcb6e316b5d5e7976735f009dda7c3dd0490262217cf4acd31dd9172
MD5 810591871e52710feda01148b2231980
BLAKE2b-256 a2633bd722d9883eec08ccdbe4bbf3f91e8dc3a3c39bd79a488b2c023a39c674

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6033d9fa2b72430c779ebf77ccad2581959735f35eb4747dc334ef09e666196
MD5 e490cae0f2c7f383320f841dd1f9efd8
BLAKE2b-256 51c418954724965e2d812480f36ef217d39bf4c9ff43eed990968fd42594c2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 881623766a229a70d6f3671baadd5367cd111242c3ba80be2f5f3fbd5f2534f4
MD5 17f99a0be166d4a6c751e3edd9559876
BLAKE2b-256 27239566be01dfc932fdc9f91af00ffb3e48e782ebb459914ac53d900c118b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e1caa06073eeda117f85301efa72d4bbfe243c69e552d9e2fcded2ccdd7d46b1
MD5 1611b3760c662a48275b3154a8d6aac4
BLAKE2b-256 634fd54db7125f7862ac290f8e3be9f8f3651a74099801db38814f5d03aac60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8f75c10c1c012fd0216c62987dc9ec13656f5c3bd0f95637e1aba442a85044a
MD5 f84fa5e00b3cb5fd0d5befbafe36ca65
BLAKE2b-256 d2bb06302afdf1ee7dbdbee8c9fc273e3ccf1bc0bc3d4b80d0d6573c2bb80582

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5931fc124f5b4683da060692bf6d0216899ef54f4bbdf46c6444eb1f8abc4a01
MD5 d83159e3a4ad24a89bbc0a2962da1255
BLAKE2b-256 3a7b130aae161dd54cc83955b81ad3ef7a550b98647bca5fcb543cdc684bc8f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57af2595ee3f3f51542d21e07cb3601d6dbdb3be0e43f150beefae76ece058d9
MD5 292527dfcc008f631bebdaec41756161
BLAKE2b-256 b32ee96709a289787022925fabab41868b761039bca5abb6f0606bcd99a0cd94

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1266d373ca17b461ca5738177532adebba957c7f6ef2b7fc76a72382fc1c0de9
MD5 0416dfcf10f9a2cda5f101067e52c9d1
BLAKE2b-256 2208fab88d6ff36ed78eb95ee562acf115d932d9f536332644824df7e4d2706d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fb9cde92af16c7cd80324e78dd0fd10e42bd460169a94e20019da9d78c93c6d
MD5 2f8a422f6da5fc5af52efd5d26883f4e
BLAKE2b-256 93be1c86dd5f2775a11eadfd93d956b905d9382090b134897943c69e2a83e2d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9622dab4b4569358f486d483819091921d6bd9317a03a421dbc809636cc67ea0
MD5 d0bb305462638ce8c299e56ff1f85ca4
BLAKE2b-256 c832c97e28414f171855e468898babc3c2b62f9dee3629143935643782f884ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fd46a7234d1556408aa0f72640bafcae70f309a65460b31fba047be28eb0d81
MD5 2815b76e86ff03f0f70369079275e05f
BLAKE2b-256 b87223259590348817831abb056815d12bac4d14e3be0b781bcb93952d44e473

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: picsl_c3d-1.4.6.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.13.7

File hashes

Hashes for picsl_c3d-1.4.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3219a6b28e466b87f04d0e360863f7728a864300a6b2f81ce9369af2b7d22141
MD5 ae040bde14b78745c324f4ea44efec31
BLAKE2b-256 a6e23795ea43d5224872535486fab4066fbf5971e7ee574d67987263d2a4d781

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 443b6ed38c4b0fdc23071c79b53366247522dacb67b642d9a1d082502ab6c64a
MD5 a7102ce6a4e2cd485a59f055f7bc7289
BLAKE2b-256 7206a896d4822099a146bd9aaaa5a1e391cbedf3eecce0929770daea753d1a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a42e6181f02ef5b43bfa76db212a38ae7deee5d82a9169b3c3d80d5dab87ce
MD5 359e46daf95df7d6d26d67e2a9a825a3
BLAKE2b-256 4f87f4c21c5e62e5241a5d3e344a622d5805691ee6d498e40429e144440c4eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4899f1beb654e8b8c0b0e4bac00608b1e16c22d7ccbaa93aea9c7804d0e044a5
MD5 cdcb3184b4d104a657dfa5c9aec40ee0
BLAKE2b-256 f3327e1839114fb74e3a87c15fee19b09db953efa221530f313dd183965bfd3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: picsl_c3d-1.4.6.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.13.7

File hashes

Hashes for picsl_c3d-1.4.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 04c37a8244d3ac5197797ae50d9bba307395b33c1f4fea7312af7e4abd587cef
MD5 2c32a76b7397bcd1d56363f26ecbfd6d
BLAKE2b-256 fd5c08aef78aa269f0d13097e8dd9f78354fcdcb00bad957ad302e326f77416e

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94ea76fff4320d825b33bd8de287d2e1f27c62e84d596a1f9ea5b68e12f806ff
MD5 4234c4ac364445dce1956c7c0e3b8f2d
BLAKE2b-256 9b3c20ce063fe31ad91261fc3d8cf638909352bb8d49ce2e502c41c85cb82027

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8232b4c7249fc28e44574cc3766905f03ac57218fc30edd2bf6fb2752031bca2
MD5 6587a081ebb90be196c0e6cd7cbbe949
BLAKE2b-256 62a9bc9d2620c878dea0047c5951ffcbb4abf6a6b7912b3e04bc022ea42b95ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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.6.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for picsl_c3d-1.4.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bff115da6f328cb799cebce045d1c602f8e0e636272ff03b2de28cc48b2dbed
MD5 2145412454f12d566f7f262af1d72a63
BLAKE2b-256 dbd9179ead361bebd2e7cfa7a0f05b8e3f3442977cf8834c797616dcbf1b5ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_c3d-1.4.6.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