pylsd
1. Introduction
pylsd is the python bindings for LSD - Line Segment Detector.
2. Install
This package uses distutils, which is the default way of installing python modules. To install in your home directory, securely run the following:
git clone https://github.com/primetang/pylsd.git
cd pylsd
python setup.py install
Or directly through pip to install it:
pip install pylsd
3. Usage
We can use the package by using from pylsd.lsd import lsd, and lines = lsd(src) is the call format for the lsd function, where src is a Grayscale Image (H * W numpy.array), and the return value lines is the Detected Line Segment, lines is an N * 5 numpy.array, each row represents a straight line, the 5-dimensional vector is:
[point1.x, point1.y, point2.x, point2.y, width]
According to these presentations, we can use it just like the following code (here is the link):
- by using cv2 module
import cv2
import numpy as np
import os
from pylsd.lsd import lsd
fullName = 'car.jpg'
folder, imgName = os.path.split(fullName)
src = cv2.imread(fullName, cv2.IMREAD_COLOR)
gray = cv2.cvtColor(src, cv2.COLOR_BGR2GRAY)
lines = lsd(gray)
for i in xrange(lines.shape[0]):
pt1 = (int(lines[i, 0]), int(lines[i, 1]))
pt2 = (int(lines[i, 2]), int(lines[i, 3]))
width = lines[i, 4]
cv2.line(src, pt1, pt2, (0, 0, 255), int(np.ceil(width / 2)))
cv2.imwrite(os.path.join(folder, 'cv2_' + imgName.split('.')[0] + '.jpg'), src)
- by using PIL(Image) module
from PIL import Image, ImageDraw
import numpy as np
import os
from pylsd.lsd import lsd
fullName = 'house.png'
folder, imgName = os.path.split(fullName)
img = Image.open(fullName)
gray = np.asarray(img.convert('L'))
lines = lsd(gray)
draw = ImageDraw.Draw(img)
for i in xrange(lines.shape[0]):
pt1 = (int(lines[i, 0]), int(lines[i, 1]))
pt2 = (int(lines[i, 2]), int(lines[i, 3]))
width = lines[i, 4]
draw.line((pt1, pt2), fill=(0, 0, 255), width=int(np.ceil(width / 2)))
img.save(os.path.join(folder, 'PIL_' + imgName.split('.')[0] + '.jpg'))
The following is the result:
- car.jpg by using cv2 module
- house.png by using PIL(Image) module
Release files for ocrd-fork-pylsd 0.0.8
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ocrd-fork-pylsd-0.0.8.tar.gz | 24.8 kB | Details |
Built distributions (wheels)
Total release size: 1.6 MB
Release files / ocrd-fork-pylsd-0.0.8.tar.gz
| Download URL | ocrd-fork-pylsd-0.0.8.tar.gz |
|---|---|
| Size | 24.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6b89106aff57739befc00ca7d91c27ab3bc7a7bf2bb5999c273c9232abbcf977
|
|
BLAKE2b-256 checksum How to use checksums |
81422e116b7e62fbb6a4cd723771e6775292057f6f034697af6f3b7b4bb7023d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 19.8 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
bc0f6aff65c573fd2b2d93e62261bdf2af35c5e568a9a053d5685813eff45929
|
|
BLAKE2b-256 checksum How to use checksums |
504db6b9d6f35fb1510b1781d0cee022b29d72eda637986eaea6d5e8b941c415
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 20.5 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3 |
|
SHA-256 checksum How to use checksums |
4a9b21e5003bfbfeefc9c5f4937ed4ab65ab817dd46f6cf951e2ee4160ebc580
|
|
BLAKE2b-256 checksum How to use checksums |
2b81ab8b5d77763e811630cab7d44be72a5885bb78e0ad5145506d9a5c3fdd5d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 18.8 kB |
| Tags | PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
08660f69c1dd3c691a46ddb998107e9e78e336659d5366373e1a01718611990e
|
|
BLAKE2b-256 checksum How to use checksums |
bd62a3f0f59401d5d7e9e4f91bd8ef65a1a9841246957e5d30165338f38a6aeb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 19.8 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
f32c04043cf6b9de4f2f657939707c9a29f69a2cf5fc35d6e0a2836ec3b5f1f3
|
|
BLAKE2b-256 checksum How to use checksums |
a473e77853ce93b89ad69bb56e9b1a5609c86713e4edb97ad85ebce8bfae7399
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 20.5 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3 |
|
SHA-256 checksum How to use checksums |
02e1210c64ef9fc51482f4c858443d5598888e7467d7f1e95e3370558e848afb
|
|
BLAKE2b-256 checksum How to use checksums |
3071b354470f841b6fa8f463664bc89e2425a88a8f5fffa7fccda36e70274bab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 18.8 kB |
| Tags | PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
b93da8137a2105983b71b1f2b565e46b836cf8aed76544ba1384b6fbf3a99f2c
|
|
BLAKE2b-256 checksum How to use checksums |
2ab5c44e0fac01e9a72a5787e49d6ca931957d9a5da23885c5f2ec77e82d1316
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 20.1 kB |
| Tags | Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
80e7a73322e32335ba221dc89c06e4b99252fffafd54bd385d86ac42ca1a358d
|
|
BLAKE2b-256 checksum How to use checksums |
979b6950aac0c3aa5038f6c8bc26d45db022a4fc4c1177418187fb925b48ca44
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 20.7 kB |
| Tags | Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3 |
|
SHA-256 checksum How to use checksums |
0d4354ce74fe2999f0d88f9199601f3969a00fa2eee280aab3e03bf698b8f238
|
|
BLAKE2b-256 checksum How to use checksums |
d2cd0e468e3c831d565e2abb15a6c339afbb6f519ac85365e9a1ffa51e113014
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl |
|---|---|
| Size | 18.8 kB |
| Tags | PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
af5413b0b6f079cb0dd3f76323884ab088410c7df5788c6bc396ad7d8efcac32
|
|
BLAKE2b-256 checksum How to use checksums |
69f443c7975686b4d52344d93749cab25ad2515394e8d53b69636a6008984090
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp311-cp311-musllinux_1_1_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp311-cp311-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 57.1 kB |
| Tags | CPython 3.11 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
a20deed57b810b25d6e5d7e2835355b02035b6c8c08fb16638bcede184da7e33
|
|
BLAKE2b-256 checksum How to use checksums |
65efe826d1a16405d3d852aa76c911b916165112fa8fa21dba5d096a328e0bc3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp311-cp311-musllinux_1_1_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp311-cp311-musllinux_1_1_i686.whl |
|---|---|
| Size | 51.3 kB |
| Tags | CPython 3.11 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
cc6f64073a2b91577d6e62b676623591bb9320f288702f6eea76295d36384458
|
|
BLAKE2b-256 checksum How to use checksums |
43ec8cc00d4022b114b1b8a7e08f2823791dc0ce0a51b907e45d69a942973039
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 56.5 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
72d2a8365375fe7baf7f781415d66e3c9d0174bc67598403cdc586b3f8ebe759
|
|
BLAKE2b-256 checksum How to use checksums |
de8f12bedcfb5c5ddb2466db3a8b4d95ab901eaa7217c5ff44eb4d1c479e1a76
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 51.8 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
eec41c5778718c596fbd6980100793265971d8863b85ed3ad6bbb382339030e2
|
|
BLAKE2b-256 checksum How to use checksums |
9f56f49d055001b3a33fe4086afa2d3026e372ca01543c686ba2dadcd057dd5e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.4 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
874cdcf7c99c4a9fa8b9022fce4c7404e621373145aa719d9306180f40271120
|
|
BLAKE2b-256 checksum How to use checksums |
db09fad7e06ee1d529a09b1ca269345c23c6db2b639d7bbc91f2d8ded1e1e0f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp310-cp310-musllinux_1_1_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp310-cp310-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 57.1 kB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
83a1a416d5019ddf68a8fe864c72b650864e2bb9e192b92ebd0c7f36a616f490
|
|
BLAKE2b-256 checksum How to use checksums |
9ad57f70d040fe8e48e58a0b13f6334ec0e954633a1ebeb1e5480f5771a70162
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp310-cp310-musllinux_1_1_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp310-cp310-musllinux_1_1_i686.whl |
|---|---|
| Size | 51.3 kB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
d5bf5c7148489b0a20bcb56dcc4a84abf83523f35d88e1d572406b676bfbec1e
|
|
BLAKE2b-256 checksum How to use checksums |
958afa4c5206d7938d2f223be4447068b671bb587033b742afa94dde95f4265c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 56.5 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
8e2db0d6e09dc8c76ad1af9325683663bff6bb07efbd20be97086998c88b31ec
|
|
BLAKE2b-256 checksum How to use checksums |
ff9c7e8e65914371dc31e3ba247a83ec885462edd446fcdccfad14499be81fa6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 51.8 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
e89a01305fb01a2031a026c9f0c07a8c25772b2cadcb4f18680045211b27d5c4
|
|
BLAKE2b-256 checksum How to use checksums |
21691968f699d950a12414280ae34cb0035ec2c5af44c37b7697626fed6e2e3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.4 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
86081959448276fcdec24972f4f537d36c2b9ff73c085b35e9c88e8551b47391
|
|
BLAKE2b-256 checksum How to use checksums |
c90c9dc49e9a271b3c3b1fa994802b06d289e450267d94a5b79e135811ba4127
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp39-cp39-musllinux_1_1_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp39-cp39-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 57.1 kB |
| Tags | CPython 3.9 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
1d98c327c9d02dbf32b72b8aba09cafb7f80bfc578b0ec1bfaf1cd417c62b53b
|
|
BLAKE2b-256 checksum How to use checksums |
18659b0b6883ef152899f6b5c597ed868bac66de8c922e6070d8a2cac3468cf1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp39-cp39-musllinux_1_1_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp39-cp39-musllinux_1_1_i686.whl |
|---|---|
| Size | 51.3 kB |
| Tags | CPython 3.9 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
e2e3cde579a9f50c373df13303111cd4a55e8d2f743abbd41cc529672a970a09
|
|
BLAKE2b-256 checksum How to use checksums |
6e2d65d879bf50d1f780af38ce42bff5621426dcc73ecd28d994d5daa248689b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 56.5 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
4574526d7b3221a51c83bcd72fbee74cd0d2cceda1a6bb02cec22c5e218fafea
|
|
BLAKE2b-256 checksum How to use checksums |
212e7b63453b864107f8ccfd749c6ca2e4d87d29ac57a8f7b870bce30ae03db1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 51.8 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
93f05d7e22873973fed1ee3f7183f1e53d48db2d57bbdfb19db9402040a8c053
|
|
BLAKE2b-256 checksum How to use checksums |
053ddfb070682c39f02b2da4c08a15f20d7429d9f09a42f337f91d0f969f6a26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.4 kB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
cd47c141fe390d3694ea4f323b4329a76cfd84597eb1ac91c40f0d60d437e819
|
|
BLAKE2b-256 checksum How to use checksums |
1ba7f0607326c00e616820ab79c1c8df9627006f3e4819bcbe6c615103b41a86
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp38-cp38-musllinux_1_1_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp38-cp38-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 57.1 kB |
| Tags | CPython 3.8 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
0ee734019ca1a66b34ff916c7cbd7c30e1827c308e730793716965c4e8c49054
|
|
BLAKE2b-256 checksum How to use checksums |
7ad534ca26e18a5d2417e21604805d986cf5527b6443f3d5c936f8165b844050
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp38-cp38-musllinux_1_1_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp38-cp38-musllinux_1_1_i686.whl |
|---|---|
| Size | 51.3 kB |
| Tags | CPython 3.8 Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
88d3720b546a5dfac8aa5b2879761d6583ed865ebb43b2393195732a9bdeba50
|
|
BLAKE2b-256 checksum How to use checksums |
8ec6791a47575342b5f6e5e941d3b22180378adc4c2e87a02438acfd268e9eaa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 56.5 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
f9636ba0689c672f5e71203d05a360052d4d5cb8be63266fa8c3ce59ed626bca
|
|
BLAKE2b-256 checksum How to use checksums |
05f96e2d96f70d40ccd0bef1c22a0ea06bdc9b973ec4c5e99df35d960bfc7495
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 51.8 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
586f158dcea52fea95b1928701ca1d534fac6bdc73faba46b6560c09aac81913
|
|
BLAKE2b-256 checksum How to use checksums |
1b7f9d28aa9e366283f94148e855cc6a8bafcf9c6a8c57a3fb7b80bded12dcf1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.4 kB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
acda728ec970b227d930c11e8f41dff4b3acf9ef5ade347c4e72f30d599f71e4
|
|
BLAKE2b-256 checksum How to use checksums |
5efd96e9029456d6d63fdcd4d9276ba1a99c42b80b0167bc931bd6e444b060c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp37-cp37m-musllinux_1_1_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp37-cp37m-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 57.1 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
c0bca39543c5f037ed3039a949a480cebdac7978378edd8f8bd591bb0091de07
|
|
BLAKE2b-256 checksum How to use checksums |
001c1bcd4940de4e0e14d126f5fa70e16fcd7e08b98f5abcf8e090cf166fb2ac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp37-cp37m-musllinux_1_1_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp37-cp37m-musllinux_1_1_i686.whl |
|---|---|
| Size | 51.3 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
1c61d51091b5509df1ebba7e63b833a1ed3504760d547653b695b6d33cfd02d3
|
|
BLAKE2b-256 checksum How to use checksums |
462e4fe5b357385b664548dcf9ecb99d50ebdc9e83e1392e3a273073e42b2e1a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 56.5 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
db5a75602205329df81edf4e2d8f788bac056535d3b06dc6cfa13564eb30a4df
|
|
BLAKE2b-256 checksum How to use checksums |
20a218060d43b679fa14a2e14d5af91d78a1b4d8aabc27406e491df59424d130
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 51.8 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
a6044ca69212dd1348977d5ef2b3499b39916d4f95f69af27f8e2d1d726a2c70
|
|
BLAKE2b-256 checksum How to use checksums |
29b5572f816530c11b16237e98a26a1c74a69426868eb7aba552dfb03a356632
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp37-cp37m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.4 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
5378d46895e0a405b46e31a583eabc0eff55f08d83b5a421fe7cef5cb5e6274b
|
|
BLAKE2b-256 checksum How to use checksums |
b57a138b59745a7de90abd62575cc96a30ff51d6887cdce4d0841038dc9b4db7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp36-cp36m-musllinux_1_1_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp36-cp36m-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 57.1 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
ca7cd54dc9fe3dc8d3f7c0783c27da5d85023d3aba523b61e4f5f12dfd9bcc8b
|
|
BLAKE2b-256 checksum How to use checksums |
025397ea88037151b4ac680c5ff9570fd419d034a70050cfef3a029922cfa091
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp36-cp36m-musllinux_1_1_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp36-cp36m-musllinux_1_1_i686.whl |
|---|---|
| Size | 51.3 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 |
|
SHA-256 checksum How to use checksums |
eca8e6593c67a19f62de537f0c25cb99110e7b94d18c2017dbaf3e74318a7d52
|
|
BLAKE2b-256 checksum How to use checksums |
e4c730388265ef6faf61f1f69257a279493ee7bc85f4ec97297cacc4c48cb384
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 56.5 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
40b631a3c7eb8bd9243d2b10ebd3530be782843875646105e50ae84fa9459a81
|
|
BLAKE2b-256 checksum How to use checksums |
59d267a9190d78c7b89fb7e8fe770cc980992d3387545da309466aed4b362ea4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 51.8 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
61e424fd6d750bbc99f423a743e6a2f57d9f661c08cd6c35bacc7a24b1f5597f
|
|
BLAKE2b-256 checksum How to use checksums |
e0ee3d2ee3480960881c231aa3a02cff7737a9be8295ff7ebbc7903b4c8cd13c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|
Release files / ocrd_fork_pylsd-0.0.8-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | ocrd_fork_pylsd-0.0.8-cp36-cp36m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 20.4 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
b44b7f7ccd80573ef38370862b27f6551e738082cf926ad9834be03ec7605737
|
|
BLAKE2b-256 checksum How to use checksums |
6b061692b3e8ebe39a76d84833fc7592275d474d1c4514e63bbbef5b0035ba5b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.17
|