From 8b904c30cfe22a5d028e05078184258e067aa45b Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 25 Nov 2021 22:15:23 +0100 Subject: [PATCH 1/3] Update neural_network.rst --- docs/source/components/nodes/neural_network.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/components/nodes/neural_network.rst b/docs/source/components/nodes/neural_network.rst index 87005640e..6ba8269ea 100644 --- a/docs/source/components/nodes/neural_network.rst +++ b/docs/source/components/nodes/neural_network.rst @@ -113,9 +113,9 @@ Usage Examples of functionality ######################### -- `DepplabV3 experiment `__ +- `DeeplabV3 experiment `__ - `Age/gender experiment `__ -- `License plate recognition experiment `__ +- `EfficientDet demo `__ Reference ######### From 79f47c7c5e4dc55fcafdece9cca684b12702e03f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pi=C5=82atowski?= Date: Tue, 30 Nov 2021 12:56:41 +0100 Subject: [PATCH 2/3] add qt5 dependencies (#439) --- docs/source/_static/install_dependencies.sh | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/source/_static/install_dependencies.sh b/docs/source/_static/install_dependencies.sh index 6c92baef7..fde9f57e9 100755 --- a/docs/source/_static/install_dependencies.sh +++ b/docs/source/_static/install_dependencies.sh @@ -20,7 +20,7 @@ readonly ubuntu_pkgs=( libavcodec-dev libavformat-dev libswscale-dev - python-dev + python3-dev libtbb2 libtbb-dev libjpeg-dev @@ -32,6 +32,18 @@ readonly ubuntu_pkgs=( libsm6 libxext6 libgl1-mesa-glx + python3-pyqt5 + python3-pyqt5.qtquick + qml-module-qtquick-controls2 + qml-module-qt-labs-platform + qtdeclarative5-dev + qml-module-qtquick2 + qtbase5-dev + qtchooser + qt5-qmake + qtbase5-dev-tools + qml-module-qtquick-layouts + qml-module-qtquick-window2 ) readonly ubuntu_arm_pkgs=( @@ -41,8 +53,6 @@ readonly ubuntu_arm_pkgs=( libhdf5-dev libatlas-base-dev libjasper-dev - libqtgui4 - libqt4-test # https://github.com/EdjeElectronics/TensorFlow-Object-Detection-on-the-Raspberry-Pi/issues/18#issuecomment-433953426 libilmbase-dev libopenexr-dev From 439c83228e69b6149ee49c25569815aec5ca8aab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pi=C5=82atowski?= Date: Tue, 30 Nov 2021 23:04:09 +0100 Subject: [PATCH 3/3] Use install_dependencies.sh from depthai-python (#441) * Use install_dependencies.sh from depthai-python * use shorter URL --- docs/source/install.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index 94ba13e14..056c2118f 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -42,7 +42,7 @@ macOS .. code-block:: bash - bash -c "$(curl -fL http://docs.luxonis.com/_static/install_dependencies.sh)" + bash -c "$(curl -fL https://docs.luxonis.com/install_dependencies.sh)" Close and re-open the terminal window after this command. @@ -62,7 +62,7 @@ Ubuntu .. code-block:: bash - sudo wget -qO- http://docs.luxonis.com/_static/install_dependencies.sh | bash + sudo wget -qO- https://docs.luxonis.com/install_dependencies.sh | bash Note! If opencv fails with illegal instruction after installing from PyPi, add: @@ -78,7 +78,7 @@ Raspberry Pi OS .. code-block:: bash - sudo curl -fL http://docs.luxonis.com/_static/install_dependencies.sh | bash + sudo curl -fL https://docs.luxonis.com/install_dependencies.sh | bash Jetson @@ -154,7 +154,7 @@ Save and reload the script by running the command :code:`source ~/.bashrc`. Then .. code-block:: bash #Download and install the dependency package - sudo wget -qO- http://docs.luxonis.com/_static/install_dependencies.sh | bash + sudo wget -qO- https://docs.luxonis.com/install_dependencies.sh | bash #Clone github repository git clone https://github.com/luxonis/depthai-python.git