Skip to main content

Image-guided surgery functions, in C++, using OpenCV and wrapped in Python.

Project description

scikit-surgeryopencvcpp

Image-guided surgery functions, in C++, using OpenCV, wrapped in Python.

Part of the SNAPPY software project, developed at the Wellcome EPSRC Centre for Interventional and Surgical Sciences, University College London (UCL).

Features

  • Stereo triangulation (Hartley/Zisserman SVD method and midpoint-of-shortest-distance)
  • Calibration dot/fiducial detection
  • Point masking utilities

Installing

pip install scikit-surgeryopencvcpp

Building from source

Requires CMake 3.15+ and a C++17 compiler. All dependencies (OpenCV, pybind11) are fetched automatically via CMake FetchContent.

Build a wheel (for pip install)

pip install build
python -m build --wheel

This produces a wheel in dist/ that you can install with:

pip install dist/scikit_surgeryopencvcpp-*.whl

For a faster development cycle (reuses your existing build artifacts):

pip wheel . -v --no-build-isolation

C++ development (no Python)

cmake -B build -DBUILD_TESTING=ON -DBUILD_PYTHON_BINDINGS=OFF -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --parallel
ctest --test-dir build --build-config Release --output-on-failure

Full build with Python bindings

Requires NumPy and pybind11 in your environment:

pip install numpy pybind11
cmake -B build -DBUILD_TESTING=ON -DBUILD_PYTHON_BINDINGS=ON -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --parallel
ctest --test-dir build --build-config Release --output-on-failure

Python API

import numpy as np
import sksurgeryopencvpython as sks

# Triangulate stereo point pairs
points_3d = sks.triangulate_points_using_hartley(
    image_points,       # Nx4 array (left_x, left_y, right_x, right_y)
    left_intrinsics,    # 3x3 camera matrix
    right_intrinsics,   # 3x3 camera matrix
    rotation_matrix,    # 3x3 left-to-right rotation
    translation_vector  # 3x1 left-to-right translation
)

Contributing

  1. Raise an issue on GitHub
  2. Fork the repository
  3. Create a feature branch: <issue-number>-<short-description>
  4. Submit a pull request

License

Copyright 2018 University College London. Released under the BSD-3 license.

Acknowledgements

Supported by Wellcome and the EPSRC.

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.

scikit_surgeryopencvcpp-0.1.0-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

scikit_surgeryopencvcpp-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

scikit_surgeryopencvcpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

scikit_surgeryopencvcpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

scikit_surgeryopencvcpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

scikit_surgeryopencvcpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55a8a33f31e7f86d886c38174123cb6599d03bca15020e4a59ee76ce67a98dab
MD5 304fd095b513a930406ac3354346d286
BLAKE2b-256 c5b47fbaddcd9e5afdd0d8f022ce5c423207ee4b849800284f7bcee77a0bf0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17925aec99d7dc40bc79f3f92edab24c9b061e11c17fed49761efcbcf9b28cf4
MD5 bab98bf85adc06ef34e8745d65999d7f
BLAKE2b-256 59b93919ed9067f0186a81acb80d3e25dcfe4a72e2c3e4a42f49c7b00f6a0b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c857324db5522952cd4a82b677160420313ce9abe80949d30de0ae3d39bfd4d3
MD5 c26d5ffe940f933bba9424c1adf35b9c
BLAKE2b-256 f79fe0bfde7f6e83ed29d47fdc17dab33aa32e0a12fb7cfaf28e9b3b43bac10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3378331396cb39240993e86c3fcd123d1f628482b51f179dd2a826e00849b89b
MD5 10a00f261419f61d39622b16926406b9
BLAKE2b-256 8df7c53b67b485a16a713ff9c8359347006f2bbd273a3a5f14f1fcab7dcdd080

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ba809a8f3f93662e5dc2ae6d583ad43cc5faca0870551522d2a1f76ae424e4e
MD5 048883d8345facaf755652d969a05710
BLAKE2b-256 ea62f789f198e0034162550ed6df8406197e61a1155d9a9f9ba462e00d1282ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0670332d63c230e417904ffd4b6141633e5d859310b6c4135bccf50f3c49de4
MD5 e886bf9219adf64a8be8798debbbeac5
BLAKE2b-256 974c95c38fb36440b16e18248b4f3f9b88465678edaf6787a9883a98ab49bfa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f16ec459ba02f8328532d7e71e458cc58f26de959118b5c0c68c4867e35167
MD5 775be5f446983e3a80531dcddf265226
BLAKE2b-256 15c1c84e8c1783b7b7f79d0cad20469fbf2b4977494e4151aeec81011ee066dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b3021e5c62b26129021efe2ffa6ea0f9d4b95cf26328c35c79bd6b210c77333
MD5 84d7e814bde32efd674a2de174399f9b
BLAKE2b-256 3ca5ee8fe46bb577b9e260526dddd3fa4109a13722bf4579ee4de1e92ce998f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63fe0952c803ecb1d7a316169bc275fbe2b87b7de5a23237902c3bcdf60fa52e
MD5 28b805ca7a918b8ac4f7502953f7a03a
BLAKE2b-256 70774622a667604a9bcd4a881cbaba103e492938f8be41eef1306866e2673351

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c565db325946676ea8011b113bdd86c0d103010a918152b74e64be7152617fb
MD5 e0a5752fa9e2cf4d744ecb19d57c94a8
BLAKE2b-256 882ebaec70392e7bdb084c699d0bbaabac3288d872097db0afaafa9c600270e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70fbcb284041d9fc95a2a87e36226ca8b97dcdfac077ce3dbb0079d06be88cb0
MD5 ac19d3f372c524c6eb4b8ba3da0380db
BLAKE2b-256 62919c2317d8128ae99bced9414741336fc091da9eea51430ab88cd9a384f7dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cf67d8f5c4268714877f5379dc9366d40fd63484de5d253d9a4c38d23972d74
MD5 79d683385fe0f2177a636c5675af9852
BLAKE2b-256 7202fe0647abbc1d6b9d07d2b7c6cce3e3532aa5f7e3a9dac448b973a98ccafc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67a4fa7014e1452ceafb4eaabff900f843343795f4961d4a36c36cec0fae4dce
MD5 eec9602cd6899c62546acef2a1a9ab49
BLAKE2b-256 a99b8ba1efbe631830a405ded5170ff886a30066f98076e09337ed4fbe4e330a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea1ba1a96323b8e1a3203473063b6f9f0ac7b5c16ef695285ee604f9dff8e6a1
MD5 2439d593d2603d606a2c9a96a97328d0
BLAKE2b-256 386388f10bf313c7e8fdad9efd8b108463a90e649684602230938189d766a54f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c8c422c831c1edc283d81f157731e03186c4316fcb9995518457c0272a093b3
MD5 fd1f2c9ef18208f5e1fe908f45b9cbdc
BLAKE2b-256 082a852a01ca721ce955ef979aa59f2795b991ecd423e09373f4b4b06f4380b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbeebe73f167749014a3b488437abb9c29cd8ad33ebb965cacda60435c2d71f2
MD5 2d6df543f6a1d4ed7515ed64751ee685
BLAKE2b-256 d03472c4fe628f6c52d4f8f17743e19bd4faeedeb2db5f24eeedab39c8a94111

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ba6c2fa1acfe2ccd256e2763be7c234a4efaf5751e2e5f5fc083b19ceb9708e6
MD5 50ebb5ff1ae03768178cff39450fead7
BLAKE2b-256 de1c3eee828ccea9661237702a1590f6f96d3e8bc0c15d9f927b9587e2c27db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a158ba02e5d1996823d28a790ade29c6bc25ec9c409c8d810d4c51aebcb249c
MD5 3b687ee367d5753a80b695cc6bf83e92
BLAKE2b-256 e483065284cde2846d1f60764196160b084f25a1e19506c927dbaf1af76a68b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9896c14646e81dcf76333d70574e4df07f92bba844d452f3b851019fa14d8923
MD5 4dcb935063897ec2bb4e36471560ff0a
BLAKE2b-256 396e9ed344be6d6ff1885894dd56036be1b3dedfeeb60b9693c7fabd28aa329d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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

File details

Details for the file scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6acfc71bfc51519ace46640862444fc49b021a634245ffc0a4287c6451c5d49
MD5 943c2acf5be6bb75149552a248788114
BLAKE2b-256 265829eec8caebbecb1dcfd4b95bc40da718f77b8ab364d623b4de301dac4a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_surgeryopencvcpp-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on SciKit-Surgery/scikit-surgeryopencvcpp

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