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

picsl_c3d-1.4.2.2-pp310-pypy310_pp73-win_amd64.whl (6.0 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

picsl_c3d-1.4.2.2-pp39-pypy39_pp73-win_amd64.whl (6.0 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

picsl_c3d-1.4.2.2-pp38-pypy38_pp73-win_amd64.whl (6.0 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

picsl_c3d-1.4.2.2-cp313-cp313-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

picsl_c3d-1.4.2.2-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

picsl_c3d-1.4.2.2-cp311-cp311-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

picsl_c3d-1.4.2.2-cp310-cp310-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

picsl_c3d-1.4.2.2-cp39-cp39-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

picsl_c3d-1.4.2.2-cp38-cp38-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d8db0b188a1edeb92e9698b3266428703117d0f4bb64f1c4a049c2ae8f2ad0b3
MD5 8c64c3b8777f399e933ef2c44f6bab96
BLAKE2b-256 244f847482d8696598a9232844e2b39fb8d58673f6ac3829f34d70a35fae32db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fc73f83020fe5f3a6fd09b38ce6801722f7b51270bd6fc187d99cc688a821dc
MD5 d319df45e620e2f186fb34076d953fa7
BLAKE2b-256 77da0119c6fb5538d730e94b6c029c49d6842f8a1e73de7aa1b7204e60e2523c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d8a64a5daefe0ece095dccf7fafe663715fbbc14312617a61f5d0f2b48b0492
MD5 b45aeff7182e70758a44be5014485cc1
BLAKE2b-256 b7a314bdae48954f7d8e5a59d5c2c8a95fbe527e3407ab65dcbe75a74d983112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cf3e7e0f777c1cc2f11a0d9aaf7d1782c19238a1deafb19b57b1642eef5e9ac6
MD5 a70ffc220111e30b86c68dd03214cb26
BLAKE2b-256 6d27e92b05ab458b2d9b0131741ad0e9bc73921eb0469cc032e7afb277d6c8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 544a71405494fdb03f5d68173ecfda7f7526e360eeb396c736e1e453aa6fc39a
MD5 c61e00ca73f5d229155427fde94cf5b7
BLAKE2b-256 8107cd1a03eccb88668a06cb28099bc933ed87cf17c9a1858c2cbe4d6c6f9d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6abb8e8ea8aca46fe94c1c456b3394dfbff8a50e0eb0cbdee40c38c596a595c2
MD5 adb1f3e9a333e0692775b0a758f84a40
BLAKE2b-256 965ece65d1dd68ce1b17aa7b4e8a7e011400421a153fb9dd719ecdfee5719b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b340b1ca8f6aeef4b22504c1667d5ac63e7e6d7effcbfe1dd01f9894b03e46c
MD5 8e0491feea6d99a3b66b5b5e6db97249
BLAKE2b-256 0cce4c97bd65e1fc41d6f3952671c3f957a2c43596bf30df3a03d1e150c32566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43098e338866f05d061baa6732b9f44ad99a107d4ba3932b0b8f7fbefe24a837
MD5 c074895b8939e623095df33bd3d84379
BLAKE2b-256 3cbe10ffc7c60823065e7eefa5422fe8fefb881bb2d55d316f30ddb54fb8e3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da7024f5fc40953acd73b369e1cc6130bbd824f3b3726509f6eaef9f1d4a42c6
MD5 a80d23c8489767d87ec86d4eaebf4ab4
BLAKE2b-256 fd213dff28f149d985629676b8970ce7ca7fd0a82321725b9074ca4c661e63d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d646418c170471802fc4c5f2e1ce7e55cba0d10d1ce84251d3c28a27762c9809
MD5 333406fd71af0bc75ad217ffd85ae92b
BLAKE2b-256 3d5715e064a6e0b384b59a00e6f91adf75660782da1ad79d42d5d52d6a8aee30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e69e1d32a5a47fba8d7c813404e6011ae2b11c21a286b5f678c658f672c99ba9
MD5 78705bd1d2c2c85f6694162c97b35ac6
BLAKE2b-256 29354500cee663725c11ca78db42dfd354db8fca370f49c05b4d073c2a71152b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cacf2bbbaf21d672648aa3ab66d852280172e9a0fbf5c74217e29196ab1a17ed
MD5 852f7140fe4485772a422baf8ab66de9
BLAKE2b-256 848298dbedd0abc655802d3929853baf121192bd34c851f61af7e6f1fc0b9fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20de083fdfcf577b34cc06caa704344404b8aedb19221b00b587ab406ca6da94
MD5 b3c055098b919ad3472a69e8bbc01c74
BLAKE2b-256 3a371b014a11bc8da7e32d4403039b70030ec50c5b426f586f74c0aad10ddbda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c7d92267884bb7971686e857f5bb3bfc8a5e2c95827f8c241885e3f74f3b2ae
MD5 2bfc3e3078a070186a4b270efb8abf1f
BLAKE2b-256 c4b83c84ce82760f5159d4b5911d4f1e83932b26c875fe8dce3e4b379066e45d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edbf23fc86d226d6862019475636d7b91a7a1ef956ebde6807657bcb93d148bf
MD5 7fab33af3f9e6267100a182acb275e28
BLAKE2b-256 acf814d2d83a810130e3bb2d82cbf31f3fb1b7e95f54d8eb2c46084cfaf1584c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f89e27b42f7ae9208ee23cdfb225d44327442d1ea2b23d7581a26325e8007fb3
MD5 ad11f10f4987b0a5f23a8b5c128b4a0a
BLAKE2b-256 ae3b973b7288fa7af99c73b2468ce3434c699c624a314f7da905c300ee1e510a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29ec4309d7459ba792b3d5cbdca7a297ee5786dc62a21f33932623161775ff1d
MD5 4a6e91089f9844ff5107a6196dc79862
BLAKE2b-256 1c7f1ed65dd9e270480f4326f5b430cc7955b2ae4d6f6805031bd555c19c8c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2560e82573031db0f731be2a9077c3432b6190f7a6bd7063aadc4ed78357ea26
MD5 47d2fb9a6f7dce6502d813152646fda8
BLAKE2b-256 a8800fed09ee03e1c31bce850f965f68cfcdefc35296c20439413a31da0476ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 874f4660137d378922c0c95e1f910d8867d244637effc7f2ccb7a97ceeef85d5
MD5 51624b45c76d291165022965f1f2883e
BLAKE2b-256 1a124c4c80888d6d3ded4b2f592e6c38043ef4c326de85a3689d62fd8177c94c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 edb5ffe8c7402edc8c1c58baa23381326247a9be88ed76336116372c7d552f76
MD5 7ff7d89df7a0a08841a57d98b42b274a
BLAKE2b-256 cfaabffc5640f777560330f2dda46508c0792df7a5c7f13b3612eec6d7de7b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d903c156795386484217cb1ca48044c075259b101365286281c8b369a6d8f097
MD5 442f910aa84ed8e83532f6536732d4cb
BLAKE2b-256 38cbae3f335a0c55bd82efb054419ac06bec94a5160ae60961ac00083a6b68aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5636088e124c33cd9cf4465fbd92b9f585db4a0774ce0873913f1dba83d4268
MD5 722072b78df18b7c9ee6b1a3230c4df4
BLAKE2b-256 4756e16ef833534421e53ca23e75c6929a7413fbcf681bd8d493326bd6a13b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00f65e18f31f23f7d2fe651bbebf9f8a18789562aeadf923d6dd492c2ab0eaf3
MD5 f827eb5388335a5c91d114b48d3ec977
BLAKE2b-256 3efb375a1665871b62329b19655b0f50760f2ab0066231ed0861392792b15e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ba8aa71ef9401d98713cfd5a49d5d3425fdf1e4f6a64bfcaaaf5557ed1723a5
MD5 ac362049e92eb8fdee80b16af473e248
BLAKE2b-256 7ab3a5e2cf2cbbf18c54c30a7d9c42c845fd2d9be5045a96a74d406eadfb89ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 259706f4cd500227bba8790594720c52cac1a53ba6aa9a1a027cb9a98c0960d7
MD5 daad205c15125117b6b3fffd353c5d08
BLAKE2b-256 f92c6469ea4bbcb8a574df6e54aa949dbb2bf4c6428f1de44a3a88b3a5555288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9279837b100a2dbac7aae8170c97867ba35fda19ec8269f69499cf63f3d790ae
MD5 d4d2e519e17bca083aa63a4ba1107198
BLAKE2b-256 93802d9169a143ba50de2a7fbe73db3776d93d864d66c20de25f424bdba4c728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56be3ebc7a9a788a84afc5dba0220b6bdfe5f3e4c1519bbbf58aa1aef794a13d
MD5 b48637dd98db740c1c184ee7137b74f0
BLAKE2b-256 908663535da7a4c6aa9901f6d909bddd6b1e65f6231460f37d1a5f8b22cbdd33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 356ee55acb52d0918a90bcd661a98c4e5d86d7806a98732106e1fa898dfdbf22
MD5 99dda06a737cb1db4cf27966481f0cd6
BLAKE2b-256 f8e843d1d268a5d85583d4a5d771a3d3a94d7b4bfcdfefb6f62e42fab6778603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 20c5223fbd9c84f5268bf60d511bfd5b6ef488c77187d0354cc3bdf1eca3dde3
MD5 767827b07ca43d43208ee968503bb2df
BLAKE2b-256 5a6164c502fe2fdcf05f886b99c8b19ed6958c94c326c474f65f1e4819d97c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13e65d7eb84e5e55720b9c19385a1164e5449a0e6bce16319cb7c97583a55b0a
MD5 ec5574fdd2387f06c0219911b5db761c
BLAKE2b-256 df0ad1dc0835cdc01af4ce82a832775597c40b6a2d18e70ffbdbbfe8060e2383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e6f5e36bfda503c175071d15f53203964bd0c272f6eb1b18f00f4056580a3e5
MD5 756f5195eab530a7bd2f4c43cc16e973
BLAKE2b-256 cf5e2ffbed93a25047bbd6a05f1c6317e137f1bb5b1056b89b6c956dba7787f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bd5e08171f33e2c866153791abf29f02802b7301b830aab91d0d43e65b62c9b
MD5 324821f6d140f12831eb1caf632fcf6c
BLAKE2b-256 beaeda0044835e621015be2557eb400b7981c2a95a373638c25d18b964bb23c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 733654b3d0cc8b2d5b3a2acdf3d803df771f1567c20385a1cbcd1025ff165166
MD5 0528953321e224856fa8a939c5517320
BLAKE2b-256 67aff9ed2daef6e1f9d96fec82fa27521a3c422fcbb977b54fb9d4528cb7909d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15466ee132ba982726ccc6d769fe3d5ad2c2ad6d26e1e170a8c091ffc7994bd9
MD5 9360bc29541a4b7815de908fd02963e3
BLAKE2b-256 2e35cc3732a422353dfeb9d348cdc89819ced840579a17a679f0617483ee6b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78489ba415c82026d719780e8094b75ec1879448206b8445c1b1e0a996a1ae2e
MD5 75bddd0b2a010f0499e1e99658be4fec
BLAKE2b-256 9acd7ed257215d9f0efa95a0ef36e102e54766a2812b38ebb3fe3cb773e2ab9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for picsl_c3d-1.4.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1681ddddbd18d80fffc85767982d30fae5c45ecd1c9d0012738418c96117d3f2
MD5 a6027248b095bc78927e7af4f238e00d
BLAKE2b-256 27f0eb07f14c0fe62c1b79d88f41a62be5a500e42775afe1cc516b45c02677ec

See more details on using hashes here.

Supported by

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