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
+10-10
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,13 @@
1
-
# Stereolabs ZED - Python Integration (beta)
1
+
# Stereolabs ZED - Python API
2
2
3
3
This package lets you use the ZED stereo camera in Python 3.
4
4
5
+
## Stable API notice
6
+
7
+
The ZED Python API is now stable but has some breaking changes from the previous (beta) version. The older beta version can be found in the [legacy branch](https://github.com/stereolabs/zed-python-api/tree/legacy).
8
+
9
+
The changes were made to better reflect the C++ API and ease of use. Mainly all classes have a similar name to the C++ SDK (without the "Py" prefix), and all components were migrated to a unified `sl` namespace.
10
+
5
11
## Getting started
6
12
7
13
- First, download the latest version of the ZED SDK on [stereolabs.com](https://www.stereolabs.com/developers)
@@ -63,18 +69,12 @@ You can use `python setup.py cleanall` to remove every cpp files generated and b
63
69
64
70
Import the packages in your Python terminal or file like this:
65
71
```
66
-
import pyzed.camera as zcam
67
-
import pyzed.core as mat
68
-
import pyzed.defines as sl
69
-
import pyzed.types as types
70
-
import pyzed.mesh as mesh
71
-
import numpy as np
72
+
import pyzed.sl as sl
72
73
```
74
+
73
75
Vectors operations like norm, sum, square, dot, cross, distance but also simple operations can be done with
74
76
Numpy package.
75
77
76
-
**Note:****pyzed.camera* is linked with *pyzed.core* and *pyzed.mesh* packages so you must import *pyzed.camera* before *pyzed.core* and *pyzed.mesh* to avoid import errors.
77
-
78
78
### Run the tutorials
79
79
80
80
The [tutorials](tutorials) provide simple projects to show how to use each module of the ZED SDK. For a similar version using the C++ API checkout the [Cpp tutorials](https://github.com/stereolabs/zed-examples/tree/master/tutorials).
@@ -85,4 +85,4 @@ Please refer to the [examples](examples) README for more informations.
85
85
86
86
## Contributing
87
87
88
-
This is a beta version of the wrapper. Feel free to open an issue if you find a bug, or a pull request for bug fixes, features or other improvements.
88
+
Feel free to open an issue if you find a bug, or a pull request for bug fixes, features or other improvements.
0 commit comments