Skip to main content

Edge extraction for triangle meshes

Project description

fast-edges-extraction

Cython implementation of edges extraction from triangles as well as adjacency information (edge degrees and adjacent points/triangles for manifold and boundary edges).

pip install fast-edges-extraction

Example

  • Extract the edges from the triangles
from fast_edges_extraction import extract_edges

triangles = [
    [0, 1, 2],
    [1, 2, 3],
]

edges = extract_edges(triangles)
print(edges)

Out:

[[0 1]
 [0 2]
 [1 2]
 [1 3]
 [2 3]]
  • Also extract adjacency information
# Extract edges, degrees, and adjacency information (triangles and points)
edges, degrees, t_a, p_a = extract_edges(triangles, return_adjacency=True)

# Extract manifold (2 adjacent triangles) and boundary (1 adjacent triangle) edges
manifold_edges = edges[degrees == 2]
boundary_edges = edges[degrees == 1]
other = edges[degrees > 2]

# For each manifold edge, extract the adjacent triangles and points
manifold_adjacent_triangles = t_a[degrees == 2]
manifold_adjacent_points = p_a[degrees == 2]

# For each boundary edge, extract the adjacent triangle and point
boundary_adjacent_triangles = t_a[degrees == 1][:, 0]
boundary_adjacent_points = p_a[degrees == 1][:, 0]

print("Number of manifold edges:", len(manifold_edges))
print("Number of boundary edges:", len(boundary_edges))
print("Number of other edges:", len(other))
print()

print("Manifold edges:\n---------------")

for i in range(len(manifold_edges)):

    adjacent_triangles_indices = manifold_adjacent_triangles[i]
    adjacent_points_indices = manifold_adjacent_points[i]

    adjacent_triangles = [triangles[i] for i in adjacent_triangles_indices]

    print(f"Edge {manifold_edges[i]}, ", end="")
    print(f"adjacent triangles: {adjacent_triangles}, ", end="")
    print(f"adjacent points: {adjacent_points_indices}")

print("\nBoundary edges:\n---------------")

for i in range(len(boundary_edges)):

    adjacent_triangle_indice = boundary_adjacent_triangles[i]
    adjacent_point_indice = boundary_adjacent_points[i]
    adjacent_triangle = triangles[adjacent_triangle_indice]

    print(f"Edge {boundary_edges[i],}", end=" ")
    print(f"adjacent triangles: {adjacent_triangle},", end=" ")
    print(f"adjacent points: {adjacent_point_indice}")

Out:

Number of manifold edges: 1
Number of boundary edges: 4
Number of other edges: 0

Manifold edges:
---------------
Edge [1 2], adjacent triangles: [[0, 1, 2], [1, 2, 3]], adjacent points: [0 2]

Boundary edges:
---------------
Edge (array([0, 1]),) adjacent triangles: [0, 1, 2], adjacent points: 2
Edge (array([0, 2]),) adjacent triangles: [0, 1, 2], adjacent points: 1
Edge (array([1, 3]),) adjacent triangles: [1, 2, 3], adjacent points: 1
Edge (array([2, 3]),) adjacent triangles: [1, 2, 3], adjacent points: 0

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

fast_edges_extraction-0.1.4.tar.gz (160.8 kB view details)

Uploaded Source

Built Distributions

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

fast_edges_extraction-0.1.4-cp313-cp313-win_amd64.whl (239.5 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_edges_extraction-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (244.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_edges_extraction-0.1.4-cp312-cp312-win_amd64.whl (239.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (245.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_edges_extraction-0.1.4-cp311-cp311-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (683.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (678.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (245.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_edges_extraction-0.1.4-cp310-cp310-win_amd64.whl (241.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (650.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (643.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (245.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_edges_extraction-0.1.4-cp39-cp39-win_amd64.whl (241.6 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (652.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (245.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file fast_edges_extraction-0.1.4.tar.gz.

File metadata

  • Download URL: fast_edges_extraction-0.1.4.tar.gz
  • Upload date:
  • Size: 160.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for fast_edges_extraction-0.1.4.tar.gz
Algorithm Hash digest
SHA256 38f918b2b49b22aafa86572fbc76d633d4b8283d0271141de572eb4cc4e18ed8
MD5 422bdc610466a05867277340f11692f6
BLAKE2b-256 6a4d1b60447c664eafad26cc72427b48f6976082bea0c55153cd42a097364cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4.tar.gz:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed7cfcbf0b2dd66832e568dbd809d3fc3d3cd85bb4b9f7394faa3962db4cbc79
MD5 ea72afbbc5c56be8f3c43fe531153c4d
BLAKE2b-256 5e1d2e17e2db08bf56e4c5f5423f3eb386d4e761c10d06e166f7c411bfdc994f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcf24e5e9e894e8170b82f67dceab507df6eca2e45fee91791954dbe05de933a
MD5 febab8b990815961fb12626958455ce6
BLAKE2b-256 c24f9b77759cd58632884dca2b3728dde4e721d911178ec3caf5c74606c0300e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0f29e3bf0cf0264d7592b7e6757c9de3295cc75f6fe20103db43887bbcf72a0
MD5 cfc190ddcded65723bda0f172e8fc05a
BLAKE2b-256 4ab0f17736cad8b6739fb4e37eba2ce1d519a8a8fe1af03bd4ec3fd4a5c03dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45cf54855a6529fbcb836e5a0697699cbee4a02b5e1ad0abca6ee88d0210c60f
MD5 3829dd5111fddb6739e09862330dce54
BLAKE2b-256 3016a67ba08a159c78266b65b2dbf06880de2d902b66ffe0baacc089e19c30db

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da513f864e877cbe7db8dd6f4b6b68c97d6665b64a5a2a43d225142057f11cd3
MD5 1f99b8b3f157b2bb87f96cc3aa3ce738
BLAKE2b-256 faf6f7e9bcec007a68a4f51abd71f0cbed32051dab68994273adfa7d72591a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5dc3a5bbf1b40fe7f86f29ad76d940861ef54ccc850fe679a42f2abb20cc6af
MD5 82bb7a55d2b6c64f89bf805894e1de0e
BLAKE2b-256 3c39d8688415e6e85911b6290d10ab3064bd76ae46ff1d2a1527574002012b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 801155c352fc5023b5877192ae18f24f5308d99cd017a35322a286e8e2a86e6d
MD5 a6d460a2c1407b2aa909a30f3c1d8aa5
BLAKE2b-256 f78fbe8f1f9c13c3a28786f505b8710fdb50d6db6c98c9413e79ffa49c45d902

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3dff8e519f39d2f5ed5dcc040b62ff6286fc4c37f76b39b4a77af495aaefd607
MD5 7aca9c0b0bf8e30097f9598bbe5bc3d0
BLAKE2b-256 52544ac99d77680c00ee3f4912d70a2705adf3224fd9c1bf4dc144bb71fe9eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f84e1390bb3ea8fcf216d83981c44c12e2a94ede3239a5cddee8026b653cd9b8
MD5 486dac3184ae7d9375a18fedf006545e
BLAKE2b-256 7a93bed0038977d640cd8707d50a9183a00b414d8096648b477f6d12623405c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf9c42a326a5558cb0cd7f77700ef725d2016c7f50ee820fc27f1024171541b2
MD5 ec1d8bc208402a0fd6fce983931269c1
BLAKE2b-256 0563d952fd51ad523b4da0349d580b5bd7ee941438174050724c065fd6aa63b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e96c92e95792d11cb1cd23f74faa6bf622702e9b43a8b670c973e1e26ee572e
MD5 75cbd062f016910c4e9e4b3d1d7ffc18
BLAKE2b-256 d1e091433e361f845f0081f0a591d98f659056735721643746532691c55b573a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7aa87455ddea5052c9cea6b4009bedd3b1c69fd724c712b8d40bba40585f07bf
MD5 ccf06ce80444cc6fd826528ad4bfaa1f
BLAKE2b-256 4f7d9347f2bbb14002e976a68ba8593f2f9d357ce1c79cdae1f14c97089575b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1063aea6454fb452bca3201a1326b863476c34507838d3359447c8cbb9465961
MD5 1e8d206d9e2dfa45db1826a332e0d7a5
BLAKE2b-256 0e66711bab477a9ef43e79d4d0f238b3ca30d117958b32eaee7cc36d22546fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28e3dbfe79ae4edc15d6279b70c1a65b3f9219ec6d9450d2516cab7fc0199df9
MD5 3ac4cd2c31855abad212d1a339f3f341
BLAKE2b-256 ce70b746977c415cc07f9eb27ad7dc39e40a8f2956ed2efd5d5ef3b45c11b578

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1198185038a2c0363fe4c837fc5f824433e8e823fdd49e05b4a0eb88ca2d1ceb
MD5 729ef94cde7bb3fdc1973c737149f245
BLAKE2b-256 3c46f52414de221c9388ea63a360966b2b314272738abc50871ba9a967a0070d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93711733909b82685b5287eb699927d3d0ba759dd275b1cc54c792d3465d854c
MD5 b5a318337968368750b925bf3946619c
BLAKE2b-256 7a903a98edf21ecf8c33619e82ac5cd571d2d6190020521ea0c4b07787d59f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c4eef5f414c1f692b2f80d86bda2d04697d8890223d09eccbac78b24e96cf3
MD5 f6196e394265baf0c5889fd359fb0403
BLAKE2b-256 f04cd90e7fd28517d0d21a206e0c4e5d3d9aa4dd5307cae3203238f3d109fca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8a4fd9856c2bfcc0589f861bdd2458ba8cd4cd0d43017c24f7d9d497f8154f5
MD5 6cfaa2a3b6f7f60cfd5caea33f8d3ca5
BLAKE2b-256 3cf438ee651b32ad39383ddd36e4e98e7beab199dd67c3947ebe2a67822d53bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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

File details

Details for the file fast_edges_extraction-0.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 368271f7e23a709c4a74456cdc38ada9958e45975ed2f22e8ac1297667fc8c17
MD5 ade9e5ce5cd38839c22fc8da883ca89e
BLAKE2b-256 c6ef31520565d331cf4eae6d53ea9beb60ee3a0c3018e42689088feed4cf54bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on scikit-shapes/fast-edges-extraction

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