Fixed --mesh-size parameter

master
Tomas Holderness 2017-09-21 13:14:01 -04:00
rodzic 5bb58e43fb
commit 00b8d66751
1 zmienionych plików z 2 dodań i 2 usunięć

@ -6,7 +6,7 @@ There are two ways to run ODM through Docker. One pulls the image from the Docke
This method is the fastest and most fool-proof method for running OpenDroneMap. You only need to run one command:
```
docker run -it --rm -v $(pwd)/images:/code/images -v $(pwd)/odm_orthophoto:/code/odm_orthophoto -v $(pwd)/odm_georeferencing:/code/odm_georeferencing opendronemap/opendronemap --meshing-size 100000
docker run -it --rm -v $(pwd)/images:/code/images -v $(pwd)/odm_orthophoto:/code/odm_orthophoto -v $(pwd)/odm_georeferencing:/code/odm_georeferencing opendronemap/opendronemap --mesh-size 100000
```
This will pull an ODM docker image [from the hub](https://hub.docker.com/r/opendronemap/opendronemap/) and run through it. Let's break down each part.
@ -25,7 +25,7 @@ opendronemap/opendronemap
```
This is the tag that docker will use to find the OpenDroneMap image. If it is not found locally (i.e. it's your first time running) then it will look on Docker Hub and pull the image.
```
--meshing-size 10000
--mesh-size 10000
```
Here is where you can pass in any parameter for OpenDroneMap. See [here](https://github.com/OpenDroneMap/OpenDroneMap/wiki/Run-Time-Parameters) for all the possible parameters.