gast
18 June 2020 07:59
#1
Hi
I saw this message in the log which is not a part of the documentation here
https://docs.opendronemap.org/arguments.html
> [INFO] optimize_disk_space: False
If included in the settings.yaml
and set to True
, what is the actual optimization here?
Tnx
1 Like
gast
18 June 2020 10:11
#2
It looks like it does not save the original ortho/dtm/dsm only the compressed outputs as well as not write the reports folder under the opensfm folder.
If there is anything else, especially in terms of optimization during runtime - it would be great to hear.
Tnx
Can you add a pull request to the docs? This is a useful flag for sure.
1 Like
gast
20 June 2020 19:30
#4
would be happy to but don’t quite know how…
I did find this comment here that mentions what it does:
help='Set a value in meters for the GPS Dilution of Precision (DOP) '
'information for all images. If your images are tagged '
'with high precision GPS information (RTK), this value will be automatically '
'set accordingly. You can use this option to manually set it in case the reconstruction '
'fails. Lowering this option can sometimes help control bowling-effects over large areas. Default: %(default)s')
parser.add_argument('--optimize-disk-space',
action=StoreTrue,
nargs=0,
default=False,
help=('Delete heavy intermediate files to optimize disk space usage. This '
'affects the ability to restart the pipeline from an intermediate stage, '
'but allows datasets to be processed on machines that don\'t have sufficient '
'disk space available. Default: %(default)s'))
parser.add_argument('--pc-rectify',
action=StoreTrue,
nargs=0,
default=False,
help=('Perform ground rectification on the point cloud. This means that wrongly classified ground '
'points will be re-classified and gaps will be filled. Useful for generating DTMs. '
By the way the docs version is 0.9.1 and the current ODM version seems like 1.0.0
Thanks! Merged and built. It looks a lot cleaner too.
1 Like