Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 402e9d78 authored by PRIGENT Sylvain's avatar PRIGENT Sylvain
Browse files

add allgo scripts

parent 226952f3
Branches
No related tags found
No related merge requests found
#!/bin/sh
# Script that install atlas on Allgo platform:
# 1- create the Allgo app and log to the sand box as described in the allgo documentation https://allgo.gitlabpages.inria.fr/doc/deploy.html
# 2- install git (apt-get update & apt-get install git)
# 3- clone this repository (git clone https://gitlab.inria.fr/serpico/motion2d.git) in /home/allgo
# 4- run this script
# dependancies
apt-get install g++
apt-get install cmake
apt-get install libtiff-dev
apt-get install libpng-dev
# build
cd $(dirname "$0")
mkdir build
cd build
cmake ..
make
cd ..
# entry point
cp allgo_motion2d_entrypoint /home/allgo/entrypoint
#!/bin/sh
for file in *.tif;
do
echo "Processing $file"
/home/allgo/motion2d/build/bin/Motion2DEstimation -p "$file" -b "$file.output.tif" "$@"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment