Logs - runtime and forensics

Hi,

  1. Is there a way to monitor ODM jobs in runtime? is it the ‘–verbose’ option or are there logfiles being updated continuously?
  2. Are there detailed logs post-run where one can extract or calculate metrics on the quality of the outputs? (number of matched keypoints, camera calibrations, links between matched images, uncertainties etc) where are they located? logs in odm_orthophoto folder do not include above details

Tnx

Excellent documentation - thank you

This is useful
https://docs.opendronemap.org/tutorials.html#accessing-logs-on-the-instance

Also if passing all folders will save all intermediate results as described in README here

docker run -it --rm \
    -v "$(pwd)/images:/code/images" \
    -v "$(pwd)/odm_georeferencing:/code/odm_georeferencing" \
    -v "$(pwd)/odm_meshing:/code/odm_meshing" \
    -v "$(pwd)/odm_orthophoto:/code/odm_orthophoto" \
    -v "$(pwd)/odm_texturing:/code/odm_texturing" \
    -v "$(pwd)/opensfm:/code/opensfm" \
    -v "$(pwd)/mve:/code/mve" \
    opendronemap/odm
1 Like