Skip to content

Commit 4977ee1

Browse files
committed
Merge 'origin/main' into develop, update core v2.13.3
2 parents 69d6567 + 439c832 commit 4977ee1

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

depthai-core

docs/source/_static/install_dependencies.sh

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ readonly ubuntu_pkgs=(
2020
libavcodec-dev
2121
libavformat-dev
2222
libswscale-dev
23-
python-dev
23+
python3-dev
2424
libtbb2
2525
libtbb-dev
2626
libjpeg-dev
@@ -32,6 +32,18 @@ readonly ubuntu_pkgs=(
3232
libsm6
3333
libxext6
3434
libgl1-mesa-glx
35+
python3-pyqt5
36+
python3-pyqt5.qtquick
37+
qml-module-qtquick-controls2
38+
qml-module-qt-labs-platform
39+
qtdeclarative5-dev
40+
qml-module-qtquick2
41+
qtbase5-dev
42+
qtchooser
43+
qt5-qmake
44+
qtbase5-dev-tools
45+
qml-module-qtquick-layouts
46+
qml-module-qtquick-window2
3547
)
3648

3749
readonly ubuntu_arm_pkgs=(
@@ -41,8 +53,6 @@ readonly ubuntu_arm_pkgs=(
4153
libhdf5-dev
4254
libatlas-base-dev
4355
libjasper-dev
44-
libqtgui4
45-
libqt4-test
4656
# https://github.com/EdjeElectronics/TensorFlow-Object-Detection-on-the-Raspberry-Pi/issues/18#issuecomment-433953426
4757
libilmbase-dev
4858
libopenexr-dev

docs/source/components/nodes/neural_network.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ Usage
113113
Examples of functionality
114114
#########################
115115

116-
- `DepplabV3 experiment <https://github.com/luxonis/depthai-experiments/blob/master/gen2-deeplabv3_person/deeplabv3_person_256.py>`__
116+
- `DeeplabV3 experiment <https://github.com/luxonis/depthai-experiments/blob/master/gen2-deeplabv3_person/deeplabv3_person_256.py>`__
117117
- `Age/gender experiment <https://github.com/luxonis/depthai-experiments/blob/master/gen2-age-gender/main.py>`__
118-
- `License plate recognition experiment <https://github.com/luxonis/depthai-experiments/blob/master/gen2-license-plate-recognition/main.py>`__
118+
- `EfficientDet demo <https://github.com/luxonis/depthai-experiments/blob/master/gen2-efficientDet/main.py>`__
119119

120120
Reference
121121
#########

docs/source/install.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ macOS
4242

4343
.. code-block:: bash
4444
45-
bash -c "$(curl -fL http://docs.luxonis.com/_static/install_dependencies.sh)"
45+
bash -c "$(curl -fL https://docs.luxonis.com/install_dependencies.sh)"
4646
4747
Close and re-open the terminal window after this command.
4848

@@ -62,7 +62,7 @@ Ubuntu
6262

6363
.. code-block:: bash
6464
65-
sudo wget -qO- http://docs.luxonis.com/_static/install_dependencies.sh | bash
65+
sudo wget -qO- https://docs.luxonis.com/install_dependencies.sh | bash
6666
6767
6868
Note! If opencv fails with illegal instruction after installing from PyPi, add:
@@ -78,7 +78,7 @@ Raspberry Pi OS
7878

7979
.. code-block:: bash
8080
81-
sudo curl -fL http://docs.luxonis.com/_static/install_dependencies.sh | bash
81+
sudo curl -fL https://docs.luxonis.com/install_dependencies.sh | bash
8282
8383
8484
Jetson
@@ -154,7 +154,7 @@ Save and reload the script by running the command :code:`source ~/.bashrc`. Then
154154
.. code-block:: bash
155155
156156
#Download and install the dependency package
157-
sudo wget -qO- http://docs.luxonis.com/_static/install_dependencies.sh | bash
157+
sudo wget -qO- https://docs.luxonis.com/install_dependencies.sh | bash
158158
159159
#Clone github repository
160160
git clone https://github.com/luxonis/depthai-python.git

0 commit comments

Comments
 (0)