You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
# pclines-python
2
2
3
-
This package implements a Hough Trenaform for lines from paper `Dubska et al, PCLines - Line detection with parallel coordinates, CVPR 2011` with few little improvements.
3
+
This package implements a PCLines Transform for line detection in images.
4
+
5
+
Cite:
6
+
```
7
+
Dubska et al,PCLines - Line detection with parallel coordinates, CVPR 2011
8
+
```
4
9
5
10
# Requrements
6
11
@@ -9,10 +14,36 @@ This package implements a Hough Trenaform for lines from paper `Dubska et al, PC
9
14
* numba
10
15
* scikit-image
11
16
17
+
# Installation
18
+
19
+
The package is on [PyPI](https://pypi.org/project/pclines/), so just run following command and install the package.
20
+
21
+
```shell
22
+
> pip install pclines
23
+
```
24
+
25
+
Alternatively, you can download this repository and install manually.
26
+
27
+
12
28
# Example
13
29
30
+
1. Import package
31
+
32
+
```python
33
+
import pclines as pcl
34
+
```
35
+
36
+
2. Accumulation of observations
37
+
The observations are 2D weighted coordinates enclosed by a known bounding box.
38
+
39
+
```python
40
+
A = pcl.accumulate()
41
+
```
42
+
14
43
TBD
15
44
45
+
46
+
16
47
# Contribute
17
48
18
49
If you have a suggestion for improvement, let us know by filling an issue. Or you can fork the project and submit a pull request.
0 commit comments