Skip to content

Commit 7493119

Browse files
Update README.md
1 parent 3271088 commit 7493119

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

AirObjects/README.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1-
Requirement - cv3 , py3
21

32
### Air Object Detector
3+
4+
Install with Pypi:
5+
6+
pip3 install pyransac3d
7+
Take a look:
8+
Example 1 - Planar RANSAC
9+
import pyransac3d as pyrsc
10+
11+
points = load_points(.) # Load your point cloud as a numpy array (N, 3)
12+
13+
plane1 = pyrsc.Plane()
14+
best_eq, best_inliers = plane1.fit(points, 0.01)
15+
Results in the plane equation Ax+By+Cz+D: [0.720, -0.253, 0.646, 1.100]
16+
17+
Example 2 - Spherical RANSAC
18+
Loading a noisy sphere's point cloud with r = 5 centered in 0 we can use the following code:
19+
20+
import pyransac3d as pyrsc
21+
22+
points = load_points(.) # Load your point cloud as a numpy array (N, 3)
23+
24+
Documentation & other links
25+
The documentation is this Ṕage.
26+
Source code in the Github repository.
27+
Pypi pakage installer
28+
You can find the animations you see in the documentation on branch Animations. It needs Open3D library to run. The Animation branch is not regularly maintained, it only exists to create some cool visualizations ;D
29+
License
30+
Apache 2.0
31+
32+
Citation
33+
Did this repository was useful for your work? =)
34+
Contributing is awesome!
35+
See CONTRIBUTING
36+
37+
Contact
38+
Developed with heart by the internet
39+
40+
Mainteiner: Leonardo Mariga
41+
42+
Did you like it? Remember to click on 🌟 button.

0 commit comments

Comments
 (0)