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
+12-12
Original file line number
Diff line number
Diff line change
@@ -11,17 +11,17 @@ This package lets you use the ZED stereo camera in Python 3. The Python API is a
11
11
12
12
To start using the ZED SDK in Python, you will need to install the following dependencies on your system:
13
13
14
-
-[ZED SDK 4.1](https://www.stereolabs.com/developers/) and its dependency [CUDA](https://developer.nvidia.com/cuda-downloads)
14
+
-[ZED SDK 5.0](https://www.stereolabs.com/developers/) and its dependency [CUDA](https://developer.nvidia.com/cuda-downloads)
15
15
16
-
For the ZED SDK 3.8 compatible version, use the [zedsdk_3.X branch](https://github.com/stereolabs/zed-python-api/tree/zedsdk_3.X) or the [3.8 release tag](https://github.com/stereolabs/zed-python-api/releases/tag/v3.8)
16
+
For the ZED SDK 4.2 compatible version, use the [zedsdk_4.X branch](https://github.com/stereolabs/zed-python-api/tree/zedsdk_4.X) or the [4.2 release tag](https://github.com/stereolabs/zed-python-api/releases/tag/v4.2)
Please check your python version with the following command. The result should be 3.7 or higher.
24
+
Please check your python version with the following command. The result should be 3.8 or higher.
25
25
26
26
```
27
27
python --version
@@ -37,7 +37,7 @@ The sample dependencies can also be installed via pip
37
37
python -m pip install opencv-python pyopengl
38
38
```
39
39
40
-
**Note:** On Linux, it is advised to use the `python3` command instead of `python` which by default point to python 2.7. To do so, the following packages `python3-dev` and `python3-pip` need to be installed.
40
+
**Note:** On Linux, it is advised to use the `python3` command instead of `python` which by default may point to python 2.7. To do so, the following packages `python3-dev` and `python3-pip` need to be installed.
41
41
42
42
## Installing the Python API
43
43
@@ -65,19 +65,19 @@ $ python get_python_api.py
65
65
Detected platform:
66
66
linux_x86_64
67
67
Python 3.11
68
-
ZED SDK 4.0
68
+
ZED SDK 5.0
69
69
# Downloads and install the whl package
70
-
-> Checking if https://download.stereolabs.com/zedsdk/4.0/whl/linux_x86_64/pyzed-4.0-cp311-cp311-linux_x86_64.whl exists and is available
71
-
-> Found ! Downloading python package into /home/user/pyzed-4.0-cp311-cp311-linux_x86_64.whl
70
+
-> Checking if https://download.stereolabs.com/zedsdk/5.0/whl/linux_x86_64/pyzed-5.0-cp311-cp311-linux_x86_64.whl exists and is available
71
+
-> Found ! Downloading python package into /home/user/pyzed-5.0-cp311-cp311-linux_x86_64.whl
72
72
-> Installing necessary dependencies
73
73
...
74
-
Successfully installed pyzed-4.0
74
+
Successfully installed pyzed-5.0
75
75
```
76
76
77
77
To install it later or on a different environment run :
If an __error__ occurs during the compilation, make sure that you're using the latest [ZED SDK](https://www.stereolabs.com/developers/) and that you installed an x64 version of python. `python -c "import platform; print(platform.architecture())"`
0 commit comments