Skip to content
Snippets Groups Projects
Commit ad97885d authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

hotfix: install vision_utils

parent 1776658e
No related branches found
No related tags found
No related merge requests found
...@@ -402,9 +402,9 @@ fi ...@@ -402,9 +402,9 @@ fi
if [ $INSTALL_VISION == "y" ]; then if [ $INSTALL_VISION == "y" ]; then
func_echo "Installing plugin vision dependencies..." func_echo "Installing plugin vision dependencies..."
cd $DEPS_PATH
#install opencv # opencv
cd $DEPS_PATH
wget https://github.com/opencv/opencv/archive/3.3.0.zip -O temp.zip wget https://github.com/opencv/opencv/archive/3.3.0.zip -O temp.zip
unzip temp.zip unzip temp.zip
rm temp.zip rm temp.zip
...@@ -416,6 +416,15 @@ if [ $INSTALL_VISION == "y" ]; then ...@@ -416,6 +416,15 @@ if [ $INSTALL_VISION == "y" ]; then
make -j$CORES make -j$CORES
func_make_install func_make_install
# vision_utils
cd $DEPS_PATH
git clone https://gitlab.iri.upc.edu/labrobotica/algorithms/vision_utils.git
cd vision_utils
mkdir -pv build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j$CORES
func_make_install
func_echo "Cloning plugin vision..." func_echo "Cloning plugin vision..."
cd $WOLF_PATH cd $WOLF_PATH
git clone -b master https://gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/vision.git git clone -b master https://gitlab.iri.upc.edu/mobile_robotics/wolf_projects/wolf_lib/plugins/vision.git
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment