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.5.tar.gz (160.7 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.5-cp313-cp313-win_amd64.whl (239.5 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_edges_extraction-0.1.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (244.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_edges_extraction-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fast_edges_extraction-0.1.5-cp312-cp312-win_amd64.whl (239.7 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_edges_extraction-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (670.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (245.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_edges_extraction-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl (250.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

fast_edges_extraction-0.1.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (678.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_edges_extraction-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl (250.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fast_edges_extraction-0.1.5-cp310-cp310-win_amd64.whl (241.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_edges_extraction-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (650.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (643.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (245.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fast_edges_extraction-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl (250.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fast_edges_extraction-0.1.5-cp39-cp39-win_amd64.whl (241.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fast_edges_extraction-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (653.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fast_edges_extraction-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fast_edges_extraction-0.1.5-cp39-cp39-macosx_11_0_arm64.whl (245.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fast_edges_extraction-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fast_edges_extraction-0.1.5.tar.gz
Algorithm Hash digest
SHA256 27fe789f219e7d0ed21349f9e58a9e5405cc33960d24a8c061525a55579c1d1b
MD5 88eeb10cd5123a46b087fbe0cf0e9c65
BLAKE2b-256 693d84b6761f8ab468c525a784dee0abf31c539485a0165f621a627e77fac520

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5.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.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3092cfed10ac5676d70030cba36702fdafbcc5815cd0303c2e85156a90e8135
MD5 11e4cb5c8e081de9de0b1602eae290fd
BLAKE2b-256 b4f3eeefb296d157c49a12cb430530675500e22ec29eac3bcfcfddb3c856310d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3a65ec38de5be7c48e9463acf726cae9b82ddbeb0445befc5a0138e48962ce
MD5 7e16d3e32ca6e54f6245f3efb3cc6c0a
BLAKE2b-256 e5a87c7d0038eba8932fffa131702c86ff38098d1cfe6f781fe21f13e1550194

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b60b9dbfcb7d5387d02561eca7afae1da30add67d01a08ce18882b209739c64
MD5 b2337f51a9a993a28659cf2a6c548ef0
BLAKE2b-256 af033e7f2828d2e2e8ab8bdd38a937c52ed0517f30d097276d214dc3aece8bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2669c2a6e9328d8fe87c7878bcb54f826c294a1b5ac573b96333a9124fce8759
MD5 555f8b2088e25281122878bd10571611
BLAKE2b-256 8578edf7c41deb1ae02c426cf5a94d58697149e0e875e1079fa10b48bb47ff3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-cp313-cp313-macosx_10_13_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.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 20ce80ceb3be1c692d36173e26703b99682b4ee2aeede604165ff42214d2650b
MD5 3ab84a3fdd3c3dfa78c0814082ec90af
BLAKE2b-256 a2e7b35952f669fc39cbca17d481bdf26fb082f218db95ff5ad6917e9f6a04d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f403d68e55db961b475b2211d8386fe1695ddaae4723d41828063f2090a870f
MD5 0f4aea5066a6fb6915497c4a190e9229
BLAKE2b-256 5bf575f0161be6f81a680a13c2f2995e36a7dfba51a80c486a76ba0b88f7312e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc7b04f7b3dca67ab2c31ee5f4b9b1e19649779d7fddaf1982a28da9e3043a40
MD5 381a494c8926518e4fb18dc10a1380b4
BLAKE2b-256 0e45a781cbd10ad35077cf3e504e41a133d2b3e80dcdeb2faeafb5a0d3dfa8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75577a92a4524c15e3fa5170a11d2845e7245c441c0b4a58adc27fdf9b69b0e9
MD5 520c8dfb37e32c49c699cb9b99bd89d8
BLAKE2b-256 18ff9064bd198b7f88f8082671735a4a61e133e1e7a470d69af21939e9d97e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 433954446b76743fbc8a93de35e02db9fafb844570c999b4769f99f4298abb23
MD5 da35dbb171f410f11d0db26b4a162845
BLAKE2b-256 a39f51cb7af9b3d370c8c3d6c94aa99b602d8d6381b14228c57aa3b5da43ca96

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-cp312-cp312-macosx_10_13_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.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aff3ad000f87d71bc19bed29b749531bae721dce499872c5600479ee9d7a83a7
MD5 23ef24c3e08375efab450d40565f3b51
BLAKE2b-256 fb88798bacd35db9e9d9293a5dfe86bd6293680beb8f00db4250de008811849d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65d5e65f22d5a0c5eec1cfca964c967d0fa2490b3462a966ad7c825e22bd7d75
MD5 48b7146753ac46e44070e5f84403c6b0
BLAKE2b-256 44b421d9d20e9e885da3696c0c182a7daaabd0b830dd2c281bc6c9f1f01d942a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 483ec6fc1ac50bf21f52d2da19add3105450a8c41f018bbd4d3610980bbcfa8f
MD5 ad2c41c53b2fa760e0018de6528aa6ed
BLAKE2b-256 b57de55f960ae3735699616ee966c1b4c9499b871e14bb721322f65cfbc007c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f09a76db8ef41285edf00d8d4632d1cb54cb320e886a8e2062a4936f235273a1
MD5 6efffef91548698b6c4f949e4a455d49
BLAKE2b-256 048d2c69ca96d17766d4bd9e149b06dbe4ec0ac30b64cc11aabf3837be645921

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 372393e29e527d32d224d4850f32c250d6f526aebc3f3d47238fc335a8d7498f
MD5 0c22454a389fa94a28cb97807d39cca8
BLAKE2b-256 1485248b4968597d0c504a9570af7d4f6d0d8601801ac88967bffd2264240e78

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-cp311-cp311-macosx_10_9_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.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 33a41a9976f94bfcd28afcd88ebab3f825b6c1eed3c8e18f6c71c4332a95d308
MD5 27dc5dc58b81c92c109b53f5be95ea36
BLAKE2b-256 e52f419a56adcfb8c5c2ad26bef52472eb26b3d10e3dab89c1a8a723796e9884

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6382f3d8d28f8d85108ac7694600a90cf1078d925419cae8a9e99aca1ea29d5d
MD5 f7d214f75f5ccc3af1624f5f5098ee30
BLAKE2b-256 4b59141a1e405ab084052b8ea1f558f2cc2904c28834450928a37d90ea836f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a12f4d7e28f3600503e4ed57d5406d92da0e1cd703e6e0c16682bfae76da65e6
MD5 45427c2612261a216975889221b8114f
BLAKE2b-256 4ff973ee3cb748d4104d23fb36947a7a3d161e0f053e6b689c4928a5d84dea00

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 769c020be80fe8dd10f7ada113edbe1851cc51ae8eda5c23173f42942488c4a3
MD5 92eaa2b1e7037632dfb61feee9f39e64
BLAKE2b-256 fd1cfaae5e2f153aa10483d56afe4fd1d4dd992a83d27257159e835fbba39144

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f475e5b5cdd6470c87ae669ef5ee96c71feb5fce9e99dd42934ad7ea3d82a26
MD5 87813139d112772d7473aa395a7ea35b
BLAKE2b-256 78ef22353b540a5b910d0fb89c214c6cff96aa1fd3a85fa0835cd52be42baefe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-cp310-cp310-macosx_10_9_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.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ebe654236efb4fd088cf9312151593b46cda26ae941d8d78c9d9393a73ea304e
MD5 efb178cca05649b1beda922d65c8df11
BLAKE2b-256 73a74d077824af1669afc94f6b8c94866816b7bdc603212fa0f994107f586acf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8316ced83eea211ad55ade8c5f0e28d9c376d6df7c98462f431d45c929228655
MD5 881f7360d35507641389626c178c2dcc
BLAKE2b-256 45d7425f1a758543971506c77f72cd85ad7303258054f95c5e30deaba631188c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1b60b955336072306c209d9a833e446ea99513417a76934ae7b5325f61bdec5
MD5 30d481b0d6c0aa9756ae69ff938ae643
BLAKE2b-256 b97f181f5dc25d7bd12311d68ef5e1a525643d61890afb165c93d9701e91335a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-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.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8dd1dd07cb012097875b9d24e1c60f2b53d54e8d6032183f025b66560bf7161
MD5 c1a8acc8f76358c458968c7ad2dd237d
BLAKE2b-256 36d7f22f6e87cec21eb3562302696565713931a5c16b282a4efc0540c9297a5e

See more details on using hashes here.

Provenance

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

File details

Details for the file fast_edges_extraction-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fast_edges_extraction-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 318deb28ac7e69349e381259bb4fe12666c3520aeb7f970c7cdc9269de2c2a29
MD5 142607380d813575e9fb2e050e35c8af
BLAKE2b-256 1c69e82324b99d050fde4971efbe9eabfd229d5d495977a264d21ca9693aceaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_edges_extraction-0.1.5-cp39-cp39-macosx_10_9_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.

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