increase default value of parameter cmvs-maxImages to avoid splitting point cloud into multiple chunks (see #115)

pull/121/head
Anna Petrasova 2015-06-21 18:11:57 -04:00
rodzic 155140525b
commit 03d5f2bbd5
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -60,7 +60,7 @@ If you run ODM with your own camera, it is possible you will see something like
``` ```
- configuration: - configuration:
--cmvs-maxImages: 100 --cmvs-maxImages: 500
--end-with: pmvs --end-with: pmvs
--match-size: 200 --match-size: 200
--matcher-ratio: 0.6 --matcher-ratio: 0.6

2
run.pl
Wyświetl plik

@ -84,7 +84,7 @@ sub parseArgs {
$args{"--start-with"} = "resize"; $args{"--start-with"} = "resize";
$args{"--end-with"} = "odm_orthophoto"; $args{"--end-with"} = "odm_orthophoto";
$args{"--cmvs-maxImages"} = 100; $args{"--cmvs-maxImages"} = 500;
$args{"--matcher-ratio"} = 0.6; $args{"--matcher-ratio"} = 0.6;
$args{"--matcher-threshold"} = 2.0; $args{"--matcher-threshold"} = 2.0;