kopia lustrzana https://github.com/OpenDroneMap/ODM
Merge branch 'master' of https://github.com/OpenDroneMap/ODM into 210
commit
5e8fae8ff4
|
@ -7,7 +7,7 @@ An open source command line toolkit for processing aerial drone imagery. ODM tur
|
|||
* Georeferenced Orthorectified Imagery
|
||||
* Georeferenced Digital Elevation Models
|
||||
|
||||
![images-diag](https://user-images.githubusercontent.com/1951843/79700615-f7906f80-8264-11ea-956a-cdc37cdeb263.png)
|
||||
![images-diag](https://user-images.githubusercontent.com/1174901/96644651-5b205600-12f7-11eb-827b-8f4a3a6f3b21.png)
|
||||
|
||||
The application is available for Windows, Mac and Linux and it works from the command line, making it ideal for power users, scripts and for integration with other software.
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
args=""
|
||||
declare -a args
|
||||
|
||||
for i in "$@"
|
||||
do
|
||||
if [[ $i != -march* ]]; then
|
||||
args="$args $i"
|
||||
if [[ "$i" != -march* ]]; then
|
||||
args+=("$i")
|
||||
fi
|
||||
done
|
||||
|
||||
/usr/bin/g++_real -march=nehalem $args
|
||||
/usr/bin/g++_real -march=nehalem "${args[@]}"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
args=""
|
||||
declare -a args
|
||||
|
||||
for i in "$@"
|
||||
do
|
||||
if [[ $i != -march* ]]; then
|
||||
args="$args $i"
|
||||
if [[ "$i" != -march* ]]; then
|
||||
args+=("$i")
|
||||
fi
|
||||
done
|
||||
|
||||
/usr/bin/gcc_real -march=nehalem $args
|
||||
/usr/bin/gcc_real -march=nehalem "${args[@]}"
|
||||
|
|
Ładowanie…
Reference in New Issue