Skip to main content

A Python package for detecting circles in 2D point sets.

Project description

circle_detection

A Python Package for Detecting Circles in 2D Point Sets.

pypi-image License: MIT CI coverage PyPI - Python Version

The package allows to detect circles in a set of 2D points. Currently, the package implements the following circle detection methods:

Get started

The package can be installed via pip:

python -m pip install circle-detection

The package provides MEstimator and Ransac classes, which can be used as follows:

from circle_detection import MEstimator, Ransac
import numpy as np

xy = np.array([[-1, 0], [1, 0], [0, -1], [0, 1]], dtype=np.float64)

m_estimator = MEstimator(bandwidth=0.05)
m_estimator.detect(xy)
m_estimator.filter(max_circles=1)

print("Circles detected by M-Estimator method:", np.round(m_estimator.circles, 2))
print("Fitting scores:", m_estimator.fitting_scores)

ransac = Ransac(bandwidth=0.05)
ransac.detect(xy)
ransac.filter(max_circles=1)

print("Circles detected by RANSAC method:", np.round(ransac.circles, 2))
print("Fitting scores:", ransac.fitting_scores)

# Retrieve parameters of the detected circles
if len(ransac.circles) > 0:
    circle_center_x, circle_center_y, circle_radius = ransac.circles[0]

The package also supports batch processing, i.e. the parallel detection of circles in separate sets of points. For batch processing, the points of all input point sets must be stored in a flat array. Points that belong to the same point set must be stored consecutively. The number of points per point set must then be specified using the batch_lengths parameter:

from circle_detection import Ransac
import numpy as np

xy = np.array(
    [
        [-1, 0],
        [1, 0],
        [0, -1],
        [0, 1],
        [0, 1],
        [2, 1],
        [1, 0],
        [1, 2],
        [1 + np.sqrt(2), 1 + np.sqrt(2)],
    ],
    dtype=np.float64,
)
batch_lengths = np.array([4, 5], dtype=np.int64)

circle_detector = Ransac(bandwidth=0.05)
circle_detector.detect(xy, batch_lengths=batch_lengths)
circle_detector.filter(max_circles=1)

print("Circles:", np.round(circle_detector.circles, 2))
print("Fitting scores:", circle_detector.fitting_scores)
print("Number of circles detected in each point set:", circle_detector.batch_lengths_circles)

Package Documentation

The package documentation is available here.

Project details


Download files

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

Source Distribution

circle_detection-1.0.0.tar.gz (203.5 kB view details)

Uploaded Source

Built Distributions

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

circle_detection-1.0.0-cp314-cp314t-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

circle_detection-1.0.0-cp314-cp314t-win_amd64.whl (324.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

circle_detection-1.0.0-cp314-cp314t-win32.whl (304.0 kB view details)

Uploaded CPython 3.14tWindows x86

circle_detection-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (396.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (880.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

circle_detection-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (909.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

circle_detection-1.0.0-cp314-cp314-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows ARM64

circle_detection-1.0.0-cp314-cp314-win_amd64.whl (309.8 kB view details)

Uploaded CPython 3.14Windows x86-64

circle_detection-1.0.0-cp314-cp314-win32.whl (293.7 kB view details)

Uploaded CPython 3.14Windows x86

circle_detection-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (424.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (393.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (871.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

circle_detection-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (902.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

circle_detection-1.0.0-cp313-cp313t-win_arm64.whl (972.2 kB view details)

Uploaded CPython 3.13tWindows ARM64

circle_detection-1.0.0-cp313-cp313t-win_amd64.whl (314.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

circle_detection-1.0.0-cp313-cp313t-win32.whl (296.0 kB view details)

Uploaded CPython 3.13tWindows x86

circle_detection-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (396.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl (880.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

circle_detection-1.0.0-cp313-cp313t-macosx_10_13_x86_64.whl (909.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

circle_detection-1.0.0-cp313-cp313-win_arm64.whl (966.3 kB view details)

Uploaded CPython 3.13Windows ARM64

circle_detection-1.0.0-cp313-cp313-win_amd64.whl (302.8 kB view details)

Uploaded CPython 3.13Windows x86-64

circle_detection-1.0.0-cp313-cp313-win32.whl (287.1 kB view details)

Uploaded CPython 3.13Windows x86

circle_detection-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (424.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (392.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (871.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

circle_detection-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (901.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

circle_detection-1.0.0-cp312-cp312-win_arm64.whl (966.6 kB view details)

Uploaded CPython 3.12Windows ARM64

circle_detection-1.0.0-cp312-cp312-win_amd64.whl (302.8 kB view details)

Uploaded CPython 3.12Windows x86-64

circle_detection-1.0.0-cp312-cp312-win32.whl (287.2 kB view details)

Uploaded CPython 3.12Windows x86

circle_detection-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (424.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (393.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (870.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circle_detection-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (901.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

circle_detection-1.0.0-cp311-cp311-win_arm64.whl (963.5 kB view details)

Uploaded CPython 3.11Windows ARM64

circle_detection-1.0.0-cp311-cp311-win_amd64.whl (300.4 kB view details)

Uploaded CPython 3.11Windows x86-64

circle_detection-1.0.0-cp311-cp311-win32.whl (285.8 kB view details)

Uploaded CPython 3.11Windows x86

circle_detection-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (421.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (390.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (870.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

circle_detection-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (902.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

circle_detection-1.0.0-cp310-cp310-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.10Windows x86-64

circle_detection-1.0.0-cp310-cp310-win32.whl (283.8 kB view details)

Uploaded CPython 3.10Windows x86

circle_detection-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (418.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (387.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (868.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

circle_detection-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (899.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

circle_detection-1.0.0-cp39-cp39-win_amd64.whl (301.1 kB view details)

Uploaded CPython 3.9Windows x86-64

circle_detection-1.0.0-cp39-cp39-win32.whl (283.9 kB view details)

Uploaded CPython 3.9Windows x86

circle_detection-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

circle_detection-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

circle_detection-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (418.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

circle_detection-1.0.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (389.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

circle_detection-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (868.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

circle_detection-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (900.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file circle_detection-1.0.0.tar.gz.

File metadata

  • Download URL: circle_detection-1.0.0.tar.gz
  • Upload date:
  • Size: 203.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for circle_detection-1.0.0.tar.gz
Algorithm Hash digest
SHA256 929d6e587e68bcd64d07a85873f007257ff8a7175671c7594afaff50cb311517
MD5 9519b3dc57488cee7d6dec721a43858a
BLAKE2b-256 c31ecf0514cccd220c4708718c25b224fc964da382f90e71ffc5513b6945520c

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9bbaf1774eb2fda36c05861239fa5df0550c02402ec5d77dfa38716f61a2c9da
MD5 0a0f9176eb40c64221a1e91898163079
BLAKE2b-256 fc0c33768514c3d74cd372a98f4ed35d82a86fe7a9243591db6096723d5da99f

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f41c60a6a412073e24f1928495737a29295124d685651dc3b55dcb288e5b0bf8
MD5 cd02713e53775682d588c833e0b2ceaa
BLAKE2b-256 2a0d9bd9c6946700dfb3f72c1bbf1a03a83afa8351de265d68258d0894275f1b

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 31d9d53b3687e67bb52bf8bd32249cef6f2873203a7a1cbfbc97b16975e11ed5
MD5 d8fe0cb447eba553a499ed5f52d4ea8e
BLAKE2b-256 f18a42861a67ce636649eb0bce31afb70f819d16d7281614c38e407702bdf4b2

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ce800d4a6a5e5373ec7ac3a687196d67b61ee019660946934b4ded34bc86b2e
MD5 7abcba6c0f255d8de29cd49d484babb4
BLAKE2b-256 65ed021d15ce949586b6b0e7433b3753b9546f5058a2a3f3cdaaddf4c7c88095

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 086d0a838cb18ef87aac3bf7450b47211407f70ecead3668cd783a67c85a0029
MD5 75ec2fe9c9e7421eb091acc7f271b644
BLAKE2b-256 9f8650188853b57ee074c9a08d97b60571b54cef7ee8440c8db2072af5f584de

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d168802358893dd13b3f64c8d21d9b99f9a179825b31606bf9234a5e7934b262
MD5 f66cd1522341a7fe8a0077a8f02bfd23
BLAKE2b-256 ebbbb75af246ec3c033d200cebc3b96db5686cf842affd585297131e082537d1

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 452d2d80e7380533ede7d037369171cd8fe2ac89a1026ff88a6796f7c1f4d7dd
MD5 b2a3139f02ea938ef00222f1667fd2da
BLAKE2b-256 6b2b2aca0f43e9c683a6a86ca4797e401f25a618a6c18b72403f3d7fb50eba60

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f6b3069b2bd934ec56ad154b55dd0708f66c43ad84a8af460de415a5ab1d201
MD5 92886d80a6f080d3ba24f48ac90c02f7
BLAKE2b-256 61fab9fe91cf813b29aa03c3a477932134f490fb4605793d56c328080e0bbc42

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b4c87069beb11e167fb6eb3fedb4619e6b51f031848db13f59c025d4d0e0d374
MD5 0c9aaf0b2a368bad6afa8c6ff544a792
BLAKE2b-256 e5f6d088d652d16f96d3d40e61ccd9b7b03dd833044dc42f357003e8eb21bf07

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c6c24f9ed084bf719bdd0ce415c3c4c8d67a24f938d2f2e626b6a5dc347179e8
MD5 6a31b9d8863dbaf4ed866103140b9802
BLAKE2b-256 8c7b30888f709ee6d2bdfd8258cb5f68192e5298143d32f71f9b2d33daa53740

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ca95e692a50c7a75d42623c8f0ea32a8666b693d05a93feb734ae65ae958b9d2
MD5 7c8b8ef072302eda29371641853f02e1
BLAKE2b-256 2066bb9f68f2173b88410376babd27c673b1fb79d3508ca4a2075ca95a540c00

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9e0b0f2010253b383727bdb74566d9a45a3b47ac5f0e194d7e7c2b6bff9cd029
MD5 94a7bb16d9843da76a6f4c59090da4e6
BLAKE2b-256 d5f5c3b0bcd3d634de09219c4dd324b40e436c36c79b9fc9e8b8f41d9baf1d58

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3862a2986cd0d7885bcbc965c2581d380d4845440d06c7e2e6fc05c275a83086
MD5 5b1e24ccc5196e5fea78b9654e378b92
BLAKE2b-256 73f2d74f5a3fb66888e2b93296cb0dc3aca32832e966be8b5258041a05fae418

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a47cc60214e9c2f87a2088b7137cbe9936122ba64fc2bcc1e3ad8c460a6c1d97
MD5 3e5e54f2e24d26b72984616bbf7f6171
BLAKE2b-256 9047640ca38aab47d390e799f59b514aa9d3aaf47c983e51c21332cb65a4d1e8

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a3d6bda01e9ff39a2d20f06ee0907a10ca661acc51878ddd2335fb9c7bf45f9
MD5 99c332e6357ef110df6f6824431e1ae0
BLAKE2b-256 9acc13af57fe38470322bc67254944ef3bdafa74ad6706278802ffb16e2d5f2d

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a52ed8177a48307b51e709d8ddb1285c9cea2feb49a197416aad9d90f25d2771
MD5 f77c53df4ecfccc69c4a976b4af789c5
BLAKE2b-256 f206689400a1994c16a8ecf2a118d4dbbf23f13abd1d6329a37bf3ea65f415ce

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ec2127632cab541f66f9258c3417ec2fcdec07c29478daaedbd462c612c79f4
MD5 522cc48dadae3e3b059d90495682881d
BLAKE2b-256 50cb89b1a6cc1a7688bfeea5b315a60c1264598d11e7aadc0703b1a41f96626d

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 df5430dfd31af56c2364f78ab8f744d907b600635f810154c7bac461b643c913
MD5 4d33da2712b5ae81fa273b89574847a4
BLAKE2b-256 583b3c2f30b40f3e20f56148ef27a8420499463cb403c28d995370672d898cff

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 74fcd427cda8c1c21c07fd9de241f3fa8d43b7ee902afdbec8c7fffad1bd5345
MD5 5967acc846e9b6e5136ea55d0c3b81b8
BLAKE2b-256 37200aa9cf00813912c094eead8d8c8bc9e3f7cfadb34c91815abb40716932c3

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f7bda0f9a82f67f2d6987288d71a7a1a9fd230f228402bba4dd0cafce3d667f6
MD5 a52cdb54c41bee0f8f451e1d08cb1a91
BLAKE2b-256 d74d9c823e62ed9f489710d6847d6764a3341689a89871f55bc2409167042522

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 373a4d5b2627b73ab2e7e688e8ecf45b5fb636ffb19a48a1dbde0d7f21792de6
MD5 0e57bf979e7f46b0b3a519cfdd878d78
BLAKE2b-256 ffba7fb6c12bf30f6de77ad2a7551ef1c7da05e83d71cddf8810dbf0fb1037b2

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f55abccd084c1e56ec2e9db3d788560efe319f10696fb1a445aca9cecf9528c5
MD5 75c58f4c01a44d47447faf13f91c50fd
BLAKE2b-256 490010330b16e08c939dd1acc31beb2420f1a71e6a0eefc74c679c7e29f147aa

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 542f19df99041432bfd9483efdcea93b82d224d41bfa71407cf76312b79e0fc4
MD5 d55a4e2f6984c90fbd3c393b988d1215
BLAKE2b-256 5981dca6b72adc219a0f3e1bb72c864521d40a0f50eb2e0019777f105f925c4e

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08d9c700b2b40d457f9159abf240743745b769a45e756169fc947f1e4d2708f4
MD5 c6e8f293f5868fde9d57ac6b30eb9334
BLAKE2b-256 0127cc1a35da48ace93ea50d6799f553bf96253c4eb382f23feffce15dcba4dc

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe2df246b84d61d32fc8af09bfa9043649d90eb78e46801169f315475b08f482
MD5 9900cc71971636f561eff51d898ca509
BLAKE2b-256 e5161e3f6b149027ae1d253d5ca06f5db2a2a67f08efdc34a055b35de9d3e802

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7759e0251fa2ba4769b9287c9c4361749e8a6596cf819ee164eec84ea08e38e2
MD5 b6ab71b049f5f7165a0836ee0a619baf
BLAKE2b-256 5848937e8f31bbce7bcd4a85624ae961d09c32e51220ae38d0b9088bb7dedb54

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 40c4b39005d012c967b2e89ba2b5b0083563275c3bd9fb1577f28cb70e823572
MD5 4706cb41e93db8b8a9bbed52999ba652
BLAKE2b-256 a72576babf2537d671a30386345c6932831db007c7ef18ae785f940220f608b8

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8d2c65a4ff5a47d2742d7a8a3eff107708b6c9ed3db9766598d1de6370995181
MD5 e33f71f30a3de8e613f759e89e96d8b8
BLAKE2b-256 b78bae3628309c77dc4685db342b126c8c524800f1f5c5351bb9dd5799e68b26

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2dbde51b62c6dcbd8c9b8def1e4c546e93f65c5111b2fd2549381d4bacdc1956
MD5 3315c50d237aac41a2c05de9b8655674
BLAKE2b-256 e85de6ca047e6cc64e55411d75781950f9e549f6eb2eefc1361a1d4c65c0eac4

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2d0dc558529c3f73d9ef4d556b1bec07b5ed2d9fcd67d75b025f00883214d573
MD5 21e4ba6afeecd1a9f9ca5c9062b4df92
BLAKE2b-256 2c06ff82e48e08e404e161c1f7d37de4765008004eb18ef3af050369b9d44388

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bd6c77332151a208c34c8406e65a5f2d01a1770a3fbc487c5f3634720d56062
MD5 f3ffaebd94ac0769be028c87d552a5dd
BLAKE2b-256 7bc63b568b912fd5f0839be97d64936fe369487297267520c5435588470a377d

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0cf906e9a0078e8c35871be153c3bcee7926616cac28ee04488b7be999d67f2
MD5 5011fa10a018d98c3f4eed566b6b721b
BLAKE2b-256 b0e6fd262d1448ea5b27f88d331d68838bf116e82a39fee0f95d7737be9624fe

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27506e1cc285fa1b44d4bc94d40a7a224876816e7492658d68611c78aa5a974a
MD5 e45ad1c8dfd56f809ed155a9bdb4f096
BLAKE2b-256 f63626fe6f864b3ad96282ed036216f1574feef7377ccfd6dbec43c35728d8cf

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13989ca573b25d9cf89076d5002d9eb740a6e00c56b35eef8128507fdedb0bf3
MD5 8a5424ecbe35f31d04964278c0ca9b2e
BLAKE2b-256 2b5d45d18a98878c2fe7b76a44d241c16087fddabcb4483ef3ff9220fdfc66f1

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e78245a86f2dd7f62795040fed3fdc806d34dd256299a7d86ec10b28b94f8b8b
MD5 3acc6a947bbd5f58e3be0949f6d1b085
BLAKE2b-256 3a68ab2319c681f7f19b5fb96dec52856978c3987926851fde3896d0a455b459

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a25bfe5b19c7e4e45d1a0dcfc361a87a52a15320c1b86188c7f27d44326a49a3
MD5 25ef7369d241f6cdec2500587299683c
BLAKE2b-256 edb6cb37d86f2c2444cf467411305314df572330b4d53603016c517cd966a490

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a80ee808798b0e3ca425992309800cbb4000502477951680b5101690e93e1657
MD5 182a9019568d9d1e09dde1ba570d6d3c
BLAKE2b-256 4c8b70700fbf99f175f402b3e3ba87c468dca6731b447095375fba130293330a

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 700edaa3ca29b95e5817238d3ec367403040638452fdcbd2ca677dc3c885ccf7
MD5 1e30e706ebed492dc092bcf5c681b3ff
BLAKE2b-256 db3991493b1e39d0c6c110c11c88e646a1fa448eb49812e6ad1f55e14bc8b7f0

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 15fdbc7e64708c2a510941039dc56fa86dc5d2e51ce3ab4f54e9c47e6f77e8f1
MD5 1e756652cb2a1425d5d47b3509045ebd
BLAKE2b-256 0583bccc35e9029c6e4b7d2078f4651f74fc7ec8ce63718f01b5db5f6d648cbe

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e130846a8e1e2b157b6e28dd41e3d49e1dabaf2fc65de7d06e1ba8ada6bc074
MD5 55cf2b280c601743a6f5cc13a661d9c4
BLAKE2b-256 d968e8bb3c6d1fc7ca58a3c585892d98017eb707679e61f91c957aced63c95e6

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a429871edf5cd3053b5e81ad8a397775d4c1017b6825ccfe29dc520b816c9eb0
MD5 1624c31f634dc3e26404fb50202c2e3d
BLAKE2b-256 e0b2debaf827c78c90320fe739a6d7cc9ce6115a3b248f574431db65d8f9912b

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef131805d7cae52827fd5e9bd4b406701ae9313e92d314a7e1f993e242665151
MD5 49e75adc607ae361321006eca7640012
BLAKE2b-256 4097b3022e39fc6b77fb19ee9822d47938aabc79d2f3225b75ca0c19b38e1ca0

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce1638b90262552edc70d8f71653df48e8eee7798e10a82ace32874a000ad0fa
MD5 0a7414932c95d94044165e251dde267c
BLAKE2b-256 4e3c8c13d63c85a2e883f224d77b7bdcd3759153b7b27345bb497b69b8287382

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1213ea8f549578300dda8d513bc08b4ebf9768938ccb86ca34db0c0e850bca8
MD5 8c14e505bd3722860d848cc4aad379e4
BLAKE2b-256 b92780efa77dc4547fca7fce765c819a186834cd06bdcabd132b2c4523a76584

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f141aaa61b7fc683870954850e941f314c80ddc39e4f877b0f8acf3b634d1b6
MD5 ffb5ce5b6535d79dd6cceffb39e90511
BLAKE2b-256 c0e8d690f8cc8f84d1b008b8a5ff7bcdee3b15d540b9a6c8a6e73147dcfe3782

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f74e0852c1fb3d5f5aa0cd709af1dd4fd2eb8dc22d1fc2fbe63c690b9477287e
MD5 029bec8db3720daa7244672e887e1dbc
BLAKE2b-256 5b1d06a602a82dc2707f74991bb7ac87aff82e2425f2ec889ea1427b5ef53d04

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d41de7c38894aa77ea0c5519f3210414ffd12d5c81446e5f7b466bb606ee4fb7
MD5 cba5f5c94b6dbddd455e6899ce317182
BLAKE2b-256 ce3d6f43660c536f34f4d1e243c792a1df20fb4521035028b3b91930eb869d66

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 673f71e63f355fc1f4d16b1cd265c49f1869163dd5cb4c02cd1e587847a5c173
MD5 7d306bba814adc482798ca4c612ce85c
BLAKE2b-256 3b55f1003554ca592f80b8425360e36b47d20a103e7737d7cf7c2d4a12c4940f

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22977283fb1346d791a116dc9dd7d222422f040e15db4a86d07ac7d4ea8aea4e
MD5 c3048ea6cd6244ddbd1f06cbbca27433
BLAKE2b-256 9753d75ac71997aec5c39bacb6da9f7ff48e537d991e50269f0c7cc5adaf9304

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08a8bbbeaeebaabf8e94d77223f60b6a4da0dff0eaeabae4fa748b721910b8f0
MD5 b8ac3b9ab5d18138509cf3498955bbea
BLAKE2b-256 c800f6a75a16de14aee3d11e002d7f779e6d3d8b7d1dab758e519dca9c380905

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a76bc4b2c4e5074880ea569169b3ed0f2c9b7adfc4b1352091ac44d6fc6e9e2a
MD5 f0b55b719fa1fbbb1427a7b1857bda43
BLAKE2b-256 77efd0ddb2b3f615ee8b343b69c65806ff92b3d32a6742eff494ac79f3f835f4

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44c7c7baa3b596e8ce63cedaa550802afb28ddebe3dad43906c08530cd1a424d
MD5 dfb4f4f2a1ca480b1dd836e0a5f73dba
BLAKE2b-256 a3323c6d517c3a02135d30d9b79a11a60d35eea6cb979840f3e6f8ed1eb94f59

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 857211b1e12687b4c716437a6ce44f55858c416d68ce2fe53c244147b0ae4f82
MD5 a8635d799b3089d615c9de873c4eb5b3
BLAKE2b-256 e0ef381a5b4ab214337a41446fc9bf14a0cd7fa118b24e772e600b7f66cb8208

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b00868cf491f854248769ffbf50802348d3084471c2a427da2e330f01f3bfb67
MD5 4a120f23d65048e2b1717307937ed771
BLAKE2b-256 cc46c38d6549fd85f789fec61d5d2bd0980980bc495a38da4593a10f1112bf0b

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca04ff68bc684c0c96c120b2ef561e9b43b6079bc3f7bca9b719468cbf639cc8
MD5 c400eff90d0b240ed734c26c1d9f1b87
BLAKE2b-256 d930354bc1a93957e5e9d04bc32f5b357e8953e70e97f7fb70cee90d5631e093

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2e905fe6e3354da9fe8add8051f6169bad3b9616535643e5b97068e7b4df84d8
MD5 1e6224b01be32ace03690650a0b8ecac
BLAKE2b-256 3a3b4fcddfae7bfa1e6bceb96595a527f21c5ed3bafe4819c9a7bb3cab0db597

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a221d77d0aec767f6d40d14d7decd087b816da053b69d9a66f699b77c8ae4aab
MD5 c26e9df9de9ae5297775832bba410990
BLAKE2b-256 877b667de998a1dce3427ae494add695ed360ddfdc89e641869b13e02266118b

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 446b6626c128fc51b018a3530a2e80c290e0a3e9225beaea9a31a20c7abc173b
MD5 26250051c8d6335773acce00ce449341
BLAKE2b-256 047d85060115ff34103ea2fcf80c86c1385eca502b22bcb44528b546bf98ba4e

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0e49d40cac897eea0c34c0758695f073531ff2f45996af545c7ae482789a4ba
MD5 f6434f07a855dfc37d95971331083c38
BLAKE2b-256 b044dfc8b4bcd09bff4cedc7dc6bea00d6e8c31d6b81bb57f621870ec64c07ec

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df6e63dbb02083c0d220a1d6c90f60dc7fec64abf4e37714e5ebc7a308b72ba0
MD5 87a8953e1124ce1ca036ce059bb1043d
BLAKE2b-256 c93e4821b29c3a682ddd11aab67233934b790f846f828e6993d3935a6554f4bd

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4df496aec82472c46649415f150b55e9186f638883685b0aa41f1ca43fb0eb05
MD5 4f63f597497c89e2b1094f476b3a000d
BLAKE2b-256 f137655134fa6f389b66f79308ed7d2959204afe0639436f79ac7c5199f85cad

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 401b8685d30ce11c736d898d14dfe7a1a343db57d04300004e2a6b6c34ecc63e
MD5 413ba51bafb9ad2545576e87c776bd18
BLAKE2b-256 6a6e37027c84955f197241fce9d3769f59715591b3636c7676870098f0a90fb8

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b0810ad01407f03e460aa47df3b4443a53984cffd0bdc820bb3930083b55c7a7
MD5 df3acd6bd1202fee415356314d2431c9
BLAKE2b-256 d71e170c81949a1cc336ae5c2389ad6670c98c4e8c28879e22bd31b030806b8c

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 260b7739bf656e548d217415c9d376a893611c496fb2b0b425804dc6ba271b18
MD5 2875ace73df280fe2a8e53410ae103fc
BLAKE2b-256 84568fa29bf9a2f30073da2224d1b9d3d3378d8ac8f554ab042fa0c9c159aadc

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fd3c0da580c1ef1416316f0b2e46b0097b2fc812cb87ebfe55ad7800033f41e
MD5 fde22c19c4223cb6e7dc756866a0b250
BLAKE2b-256 0047ca715227838c23cf9b4f1ecce523eb664996784a8625792736d325374a36

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f096a51dae3911f92610b3caacd44c941fd59d983d0323fc5297232ebcc24a9b
MD5 c4bb7d1af0ad03a8d78699ff4ba4838f
BLAKE2b-256 8b66cd3593122231920223c07035ddf744c4d9bd8a851a3cb695e1566ab186b8

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92ad7d8ca4d587a7ffd24da2e326e8cf9d25bbf02912552e239952545b702fb0
MD5 1fe409eabafb53ec98e10d8f4427ced8
BLAKE2b-256 55361823905f3b1dbc0529d6f03c46cf16f0bf1aff1a57b9f3c23fda36dfad19

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67ab3de50869fd6fb83571efaafbb76df9c267ebf8d903fcf09711c7c7c380ee
MD5 e5e59a11baa3b2679b3afc84b9d47d23
BLAKE2b-256 2c23a03fd8181b02b260ba5ed6d4cba7902f802d35afeba08804ad5a170b91a5

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a04fbc7ffa97599c4a07a1144ed5673a43a534b5e6d570c7a11ed2264c31efd
MD5 31c504539b7c3f20b8966529031b28bd
BLAKE2b-256 6f16e547d1478f5d9dae3ae5e009dd134c275f6e7d5196495ce694da46dcecdd

See more details on using hashes here.

File details

Details for the file circle_detection-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for circle_detection-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 686a564b02c4b23701659a6d724ed84892c4d41aff08826c7d1b2404219ab99a
MD5 badef147866b5e4e11f6aa47c40acfe6
BLAKE2b-256 67a19be80468ede9520e6c517eacbb1e6b66b6081b4e4c834a54f0c708af6f69

See more details on using hashes here.

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