We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9c0729 + 6119069 commit 10fcdc3Copy full SHA for 10fcdc3
βREADME.mdβ
@@ -20,14 +20,23 @@ This python library wraps the [rust e57 library](https://github.com/cry-inc/e57)
20
21
```python
22
>>> import e57
23
->>> e57.read_points(r"pointcloud.e57")
+>>> pc = e57.read_points(r"pointcloud.e57")
24
+>>> pc.points
25
array([[-23.25304444, -28.17607415, -13.44830654],
26
[-23.28290139, -28.02118905, -13.44237764],
27
[-23.26799723, -27.9039115 , -13.43430738],
28
...,
29
[ 23.2458152 , 25.4866642 , 12.45043932],
30
[ 23.22830673, 25.58055374, 12.49285875],
31
[ 23.25270363, 25.45909652, 12.54284554]])
32
+>>> pc.color
33
+array(([0.3019608 , 0.3529412 , 0.23137255],
34
+ [0.21176471, 0.26666668, 0.12941177],
35
+ [0.21960784, 0.27058825, 0.13333334],
36
+ ...,
37
+ [0.5803922 , 0.58431375, 0.49019608],
38
+ [0.41568628, 0.43529412, 0.33333334],
39
+ [0.21568628, 0.25882354, 0.1254902 ]], dtype=float32)
40
```
41
42
We need a tutorial - could you write one based on our tests?
0 commit comments