Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
motion2d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Serpico
motion2d
Commits
402e9d78
Commit
402e9d78
authored
6 years ago
by
PRIGENT Sylvain
Browse files
Options
Downloads
Patches
Plain Diff
add allgo scripts
parent
226952f3
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
allgo_motion2d.sh
+24
-0
24 additions, 0 deletions
allgo_motion2d.sh
allgo_motion2d_entrypoint
+6
-0
6 additions, 0 deletions
allgo_motion2d_entrypoint
with
30 additions
and
0 deletions
allgo_motion2d.sh
0 → 100644
+
24
−
0
View file @
402e9d78
#!/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
This diff is collapsed.
Click to expand it.
allgo_motion2d_entrypoint
0 → 100644
+
6
−
0
View file @
402e9d78
#!/bin/sh
for
file
in
*
.tif
;
do
echo
"Processing
$file
"
/home/allgo/motion2d/build/bin/Motion2DEstimation
-p
"
$file
"
-b
"
$file
.output.tif"
"
$@
"
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment