Metadata-Version: 2.1
Name: pytlsd
Version: 0.0.2
Summary: Transparent bindings of LSD (Line Segment Detector)
Author: Iago Suarez
Author-email: iagoh92@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# pytlsd
Python transparent bindings for LSD (Line Segment Detector)

Bindings over the original C implementation of LSD, that allows to change the different thresholds involved and to provide custom image gradientes in order to compute the method with stronger features.

![](resources/example.jpg)

## Install

```
git clone --recursive https://github.com/ibaiGorordo/pytlsd.git
cd pytlsd
pip3 install -r requirements.txt
pip3 install .
```

## Execution

```
python3 tests/test.py
```
