Add options label, default edit pages for args

pull/105/head
Piero Toffanin 2021-07-14 13:18:05 -04:00 zatwierdzone przez Dan Joseph
rodzic aa134f8a3e
commit 46ddf46241
163 zmienionych plików z 213 dodań i 128 usunięć

Wyświetl plik

@ -107,13 +107,17 @@ if len(options) > 0:
opt_name = get_opt_name(opt)
include_file = os.path.join(argsoutdir + "_edit", "%s.rst" % opt_name)
if not os.path.isfile(include_file):
with open(include_file, 'w') as f:
f.write("\n")
print("Wrote %s" % include_file)
kwargs = {
'opt': opt_name,
'ticks': '`' * len(opt_name),
'descr': options[opt].get('help', ''),
'parameter': "``%s``" % get_opt_choices(opt) if get_opt_choices(opt) else "",
'include': ".. include:: ../arguments_edit/%s" % os.path.basename(include_file) if os.path.isfile(include_file) else "",
'parameter': "**Options:** *%s*" % get_opt_choices(opt) if get_opt_choices(opt) else "",
'include': ".. include:: ../arguments_edit/%s" % os.path.basename(include_file),
'editfile': os.path.join("arguments_edit", os.path.basename(include_file)),
}

Wyświetl plik

@ -8,10 +8,10 @@
camera-lens
```````````
``auto | perspective | brown | fisheye | spherical``
**Options:** *auto | perspective | brown | fisheye | spherical*
Set a camera projection type. Manually setting a value can help improve geometric undistortion. By default the application tries to determine a lens type from the images metadata. . Default: ``auto``
.. include:: ../arguments_edit/camera-lens.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/camera-lens.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
cameras
```````
``<json>``
**Options:** *<json>*
Use the camera parameters computed from another dataset instead of calculating them. Can be specified either as path to a cameras.json file or as a JSON string representing the contents of a cameras.json file. Default: ``
.. include:: ../arguments_edit/cameras.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/cameras.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ cog
Create Cloud-Optimized GeoTIFFs instead of normal GeoTIFFs. Default: ``False``
.. include:: ../arguments_edit/cog.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/cog.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
copy-to
```````
``<path>``
**Options:** *<path>*
Copy output results to this folder after processing.
.. include:: ../arguments_edit/copy-to.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/copy-to.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
crop
````
``<positive float>``
**Options:** *<positive float>*
Automatically crop image outputs by creating a smooth buffer around the dataset boundaries, shrinked by N meters. Use 0 to disable cropping. Default: ``3``
.. include:: ../arguments_edit/crop.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/crop.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ debug
Print debug messages. Default: ``False``
.. include:: ../arguments_edit/debug.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/debug.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
dem-decimation
``````````````
``<positive integer>``
**Options:** *<positive integer>*
Decimate the points before generating the DEM. 1 is no decimation (full quality). 100 decimates ~99%% of the points. Useful for speeding up generation of DEM results in very large datasets. Default: ``1``
.. include:: ../arguments_edit/dem-decimation.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/dem-decimation.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ dem-euclidean-map
Computes an euclidean raster map for each DEM. The map reports the distance from each cell to the nearest NODATA value (before any hole filling takes place). This can be useful to isolate the areas that have been filled. Default: ``False``
.. include:: ../arguments_edit/dem-euclidean-map.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/dem-euclidean-map.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
dem-gapfill-steps
`````````````````
``<positive integer>``
**Options:** *<positive integer>*
Number of steps used to fill areas with gaps. Set to 0 to disable gap filling. Starting with a radius equal to the output resolution, N different DEMs are generated with progressively bigger radius using the inverse distance weighted (IDW) algorithm and merged together. Remaining gaps are then merged using nearest neighbor interpolation. Default: ``3``
.. include:: ../arguments_edit/dem-gapfill-steps.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/dem-gapfill-steps.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
dem-resolution
``````````````
``<float>``
**Options:** *<float>*
DSM/DTM resolution in cm / pixel. Note that this value is capped by a ground sampling distance (GSD) estimate. To remove the cap, check --ignore-gsd also. Default: ``5``
.. include:: ../arguments_edit/dem-resolution.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/dem-resolution.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
depthmap-resolution
```````````````````
``<positive float>``
**Options:** *<positive float>*
Legacy option (use --pc-quality instead). Controls the density of the point cloud by setting the resolution of the depthmap images. Higher values take longer to compute but produce denser point clouds. Default: ``640``
.. include:: ../arguments_edit/depthmap-resolution.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/depthmap-resolution.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ dsm
Use this tag to build a DSM (Digital Surface Model, ground + objects) using a progressive morphological filter. Check the --dem* parameters for finer tuning. Default: ``False``
.. include:: ../arguments_edit/dsm.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/dsm.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ dtm
Use this tag to build a DTM (Digital Terrain Model, ground only) using a simple morphological filter. Check the --dem* and --smrf* parameters for finer tuning. Default: ``False``
.. include:: ../arguments_edit/dtm.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/dtm.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
end-with
````````
``dataset | split | merge | opensfm | openmvs | odm_filterpoints | odm_meshing | mvs_texturing | odm_georeferencing | odm_dem | odm_orthophoto | odm_report``
**Options:** *dataset | split | merge | opensfm | openmvs | odm_filterpoints | odm_meshing | mvs_texturing | odm_georeferencing | odm_dem | odm_orthophoto | odm_report*
End processing at this stage. . Default: ``odm_report``
.. include:: ../arguments_edit/end-with.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/end-with.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ fast-orthophoto
Skips dense reconstruction and 3D model generation. It generates an orthophoto directly from the sparse reconstruction. If you just need an orthophoto and do not need a full 3D model, turn on this option. Default: ``False``
.. include:: ../arguments_edit/fast-orthophoto.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/fast-orthophoto.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
feature-quality
```````````````
``ultra | high | medium | low | lowest``
**Options:** *ultra | high | medium | low | lowest*
Set feature extraction quality. Higher quality generates better features, but requires more memory and takes longer. . Default: ``high``
.. include:: ../arguments_edit/feature-quality.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/feature-quality.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
feature-type
````````````
``sift | hahog``
**Options:** *sift | hahog*
Choose the algorithm for extracting keypoints and computing descriptors. . Default: ``sift``
.. include:: ../arguments_edit/feature-type.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/feature-type.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ force-gps
Use images' GPS exif data for reconstruction, even if there are GCPs present.This flag is useful if you have high precision GPS measurements. If there are no GCPs, this flag does nothing. Default: ``False``
.. include:: ../arguments_edit/force-gps.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/force-gps.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
gcp
```
``<path string>``
**Options:** *<path string>*
Path to the file containing the ground control points used for georeferencing. The file needs to use the following format: EPSG:<code> or <+proj definition>geo_x geo_y geo_z im_x im_y image_name [gcp_name] [extra1] [extra2]Default: ``None``
.. include:: ../arguments_edit/gcp.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/gcp.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
geo
```
``<path string>``
**Options:** *<path string>*
Path to the image geolocation file containing the camera center coordinates used for georeferencing. Note that omega/phi/kappa are currently not supported (you can set them to 0). The file needs to use the following format: EPSG:<code> or <+proj definition>image_name geo_x geo_y geo_z [omega (degrees)] [phi (degrees)] [kappa (degrees)] [horz accuracy (meters)] [vert accuracy (meters)]Default: ``None``
.. include:: ../arguments_edit/geo.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/geo.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
gps-accuracy
````````````
``<positive float>``
**Options:** *<positive float>*
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: ``10``
.. include:: ../arguments_edit/gps-accuracy.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/gps-accuracy.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ help
show this help message and exit
.. include:: ../arguments_edit/help.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/help.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ ignore-gsd
Ignore Ground Sampling Distance (GSD). GSD caps the maximum resolution of image outputs and resizes images when necessary, resulting in faster processing and lower memory usage. Since GSD is an estimate, sometimes ignoring it can result in slightly better image output quality. Default: ``False``
.. include:: ../arguments_edit/ignore-gsd.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/ignore-gsd.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
matcher-distance
````````````````
``<integer>``
**Options:** *<integer>*
Distance threshold in meters to find pre-matching images based on GPS exif data. Set both matcher-neighbors and this to 0 to skip pre-matching. Default: ``0``
.. include:: ../arguments_edit/matcher-distance.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/matcher-distance.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
matcher-neighbors
`````````````````
``<integer>``
**Options:** *<integer>*
Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Neighbors works together with Distance parameter, set both to 0 to not use pre-matching. Default: ``8``
.. include:: ../arguments_edit/matcher-neighbors.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/matcher-neighbors.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
matcher-type
````````````
``flann | bow``
**Options:** *flann | bow*
Matcher algorithm, Fast Library for Approximate Nearest Neighbors or Bag of Words. FLANN is slower, but more stable. BOW is faster, but can sometimes miss valid matches. . Default: ``flann``
.. include:: ../arguments_edit/matcher-type.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/matcher-type.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
max-concurrency
```````````````
``<positive integer>``
**Options:** *<positive integer>*
The maximum number of processes to use in various processes. Peak memory requirement is ~1GB per thread and 2 megapixel image resolution. Default: ``4``
.. include:: ../arguments_edit/max-concurrency.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/max-concurrency.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
merge
`````
``all | pointcloud | orthophoto | dem``
**Options:** *all | pointcloud | orthophoto | dem*
Choose what to merge in the merge step in a split dataset. By default all available outputs are merged. Options: ['all', 'pointcloud', 'orthophoto', 'dem']. Default: ``all``
.. include:: ../arguments_edit/merge.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/merge.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
mesh-octree-depth
`````````````````
``<integer: 1 <= x <= 14>``
**Options:** *<integer: 1 <= x <= 14>*
Octree depth used in the mesh reconstruction, increase to get more vertices, recommended values are 8-12. Default: ``11``
.. include:: ../arguments_edit/mesh-octree-depth.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/mesh-octree-depth.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
mesh-size
`````````
``<positive integer>``
**Options:** *<positive integer>*
The maximum vertex count of the output mesh. Default: ``200000``
.. include:: ../arguments_edit/mesh-size.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/mesh-size.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
min-num-features
````````````````
``<integer>``
**Options:** *<integer>*
Minimum number of features to extract per image. More features can be useful for finding more matches between images, potentially allowing the reconstruction of areas with little overlap or insufficient features. More features also slow down processing. Default: ``8000``
.. include:: ../arguments_edit/min-num-features.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/min-num-features.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
name
````
``<dataset name>``
**Options:** *<dataset name>*
Name of dataset (i.e subfolder name within project folder). Default: ``code``
.. include:: ../arguments_edit/name.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/name.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ optimize-disk-space
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: ``False``
.. include:: ../arguments_edit/optimize-disk-space.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/optimize-disk-space.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
orthophoto-compression
``````````````````````
``JPEG | LZW | PACKBITS | DEFLATE | LZMA | NONE``
**Options:** *JPEG | LZW | PACKBITS | DEFLATE | LZMA | NONE*
Set the compression to use for orthophotos. . Default: ``DEFLATE``
.. include:: ../arguments_edit/orthophoto-compression.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/orthophoto-compression.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ orthophoto-cutline
Generates a polygon around the cropping area that cuts the orthophoto around the edges of features. This polygon can be useful for stitching seamless mosaics with multiple overlapping orthophotos. Default: ``False``
.. include:: ../arguments_edit/orthophoto-cutline.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/orthophoto-cutline.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ orthophoto-kmz
Set this parameter if you want to generate a Google Earth (KMZ) rendering of the orthophoto. Default: ``False``
.. include:: ../arguments_edit/orthophoto-kmz.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/orthophoto-kmz.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ orthophoto-no-tiled
Set this parameter if you want a striped GeoTIFF. Default: ``False``
.. include:: ../arguments_edit/orthophoto-no-tiled.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/orthophoto-no-tiled.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ orthophoto-png
Set this parameter if you want to generate a PNG rendering of the orthophoto. Default: ``False``
.. include:: ../arguments_edit/orthophoto-png.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/orthophoto-png.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
orthophoto-resolution
`````````````````````
``<float > 0.0>``
**Options:** *<float > 0.0>*
Orthophoto resolution in cm / pixel. Note that this value is capped by a ground sampling distance (GSD) estimate. To remove the cap, check --ignore-gsd also. Default: ``5``
.. include:: ../arguments_edit/orthophoto-resolution.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/orthophoto-resolution.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-classify
Classify the point cloud outputs using a Simple Morphological Filter. You can control the behavior of this option by tweaking the --dem-* parameters. Default: ``False``
.. include:: ../arguments_edit/pc-classify.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-classify.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-csv
Export the georeferenced point cloud in CSV format. Default: ``False``
.. include:: ../arguments_edit/pc-csv.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-csv.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-ept
Export the georeferenced point cloud in Entwine Point Tile (EPT) format. Default: ``False``
.. include:: ../arguments_edit/pc-ept.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-ept.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
pc-filter
`````````
``<positive float>``
**Options:** *<positive float>*
Filters the point cloud by removing points that deviate more than N standard deviations from the local mean. Set to 0 to disable filtering. Default: ``2.5``
.. include:: ../arguments_edit/pc-filter.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-filter.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-geometric
Improve the accuracy of the point cloud by computing geometrically consistent depthmaps. This increases processing time, but can improve results in urban scenes. Default: ``False``
.. include:: ../arguments_edit/pc-geometric.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-geometric.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-las
Export the georeferenced point cloud in LAS format. Default: ``False``
.. include:: ../arguments_edit/pc-las.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-las.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
pc-quality
``````````
``ultra | high | medium | low | lowest``
**Options:** *ultra | high | medium | low | lowest*
Set point cloud quality. Higher quality generates better, denser point clouds, but requires more memory and takes longer. Each step up in quality increases processing time roughly by a factor of 4x.. Default: ``medium``
.. include:: ../arguments_edit/pc-quality.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-quality.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-rectify
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. Default: ``False``
.. include:: ../arguments_edit/pc-rectify.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-rectify.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
pc-sample
`````````
``<positive float>``
**Options:** *<positive float>*
Filters the point cloud by keeping only a single point around a radius N (in meters). This can be useful to limit the output resolution of the point cloud and remove duplicate points. Set to 0 to disable sampling. Default: ``0``
.. include:: ../arguments_edit/pc-sample.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-sample.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ pc-tile
Reduce the memory usage needed for depthmap fusion by splitting large scenes into tiles. Turn this on if your machine doesn't have much RAM and/or you've set --pc-quality to high or ultra. Experimental. Default: ``False``
.. include:: ../arguments_edit/pc-tile.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/pc-tile.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
primary-band
````````````
``<string>``
**Options:** *<string>*
When processing multispectral datasets, you can specify the name of the primary band that will be used for reconstruction. It's recommended to choose a band which has sharp details and is in focus. Default: ``auto``
.. include:: ../arguments_edit/primary-band.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/primary-band.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
project-path
````````````
``<path>``
**Options:** *<path>*
Path to the project folder. Your project folder should contain subfolders for each dataset. Each dataset should have an "images" folder.
.. include:: ../arguments_edit/project-path.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/project-path.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
radiometric-calibration
```````````````````````
``none | camera | camera+sun``
**Options:** *none | camera | camera+sun*
Set the radiometric calibration to perform on images. When processing multispectral and thermal images you should set this option to obtain reflectance/temperature values (otherwise you will get digital number values). [camera] applies black level, vignetting, row gradient gain/exposure compensation (if appropriate EXIF tags are found) and computes absolute temperature values. [camera+sun] is experimental, applies all the corrections of [camera], plus compensates for spectral radiance registered via a downwelling light sensor (DLS) taking in consideration the angle of the sun. . Default: ``none``
.. include:: ../arguments_edit/radiometric-calibration.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/radiometric-calibration.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ rerun-all
Permanently delete all previous results and rerun the processing pipeline.
.. include:: ../arguments_edit/rerun-all.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/rerun-all.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
rerun-from
``````````
``dataset | split | merge | opensfm | openmvs | odm_filterpoints | odm_meshing | mvs_texturing | odm_georeferencing | odm_dem | odm_orthophoto | odm_report``
**Options:** *dataset | split | merge | opensfm | openmvs | odm_filterpoints | odm_meshing | mvs_texturing | odm_georeferencing | odm_dem | odm_orthophoto | odm_report*
Rerun processing from this stage. . Default: ``
.. include:: ../arguments_edit/rerun-from.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/rerun-from.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
rerun
`````
``dataset | split | merge | opensfm | openmvs | odm_filterpoints | odm_meshing | mvs_texturing | odm_georeferencing | odm_dem | odm_orthophoto | odm_report``
**Options:** *dataset | split | merge | opensfm | openmvs | odm_filterpoints | odm_meshing | mvs_texturing | odm_georeferencing | odm_dem | odm_orthophoto | odm_report*
Rerun this stage only and stop. . Default: ``
.. include:: ../arguments_edit/rerun.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/rerun.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
resize-to
`````````
``<integer>``
**Options:** *<integer>*
Legacy option (use --feature-quality instead). Resizes images by the largest side for feature extraction purposes only. Set to -1 to disable. This does not affect the final orthophoto resolution quality and will not resize the original images. Default: ``2048``
.. include:: ../arguments_edit/resize-to.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/resize-to.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ skip-3dmodel
Skip generation of a full 3D model. This can save time if you only need 2D results such as orthophotos and DEMs. Default: ``False``
.. include:: ../arguments_edit/skip-3dmodel.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/skip-3dmodel.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ skip-band-alignment
When processing multispectral datasets, ODM will automatically align the images for each band. If the images have been postprocessed and are already aligned, use this option. Default: ``False``
.. include:: ../arguments_edit/skip-band-alignment.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/skip-band-alignment.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ skip-report
Skip generation of PDF report. This can save time if you don't need a report. Default: ``False``
.. include:: ../arguments_edit/skip-report.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/skip-report.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
sm-cluster
``````````
``<string>``
**Options:** *<string>*
URL to a ClusterODM instance for distributing a split-merge workflow on multiple nodes in parallel. Default: ``None``
.. include:: ../arguments_edit/sm-cluster.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/sm-cluster.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
smrf-scalar
```````````
``<positive float>``
**Options:** *<positive float>*
Simple Morphological Filter elevation scalar parameter. Default: ``1.25``
.. include:: ../arguments_edit/smrf-scalar.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/smrf-scalar.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
smrf-slope
``````````
``<positive float>``
**Options:** *<positive float>*
Simple Morphological Filter slope parameter (rise over run). Default: ``0.15``
.. include:: ../arguments_edit/smrf-slope.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/smrf-slope.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
smrf-threshold
``````````````
``<positive float>``
**Options:** *<positive float>*
Simple Morphological Filter elevation threshold parameter (meters). Default: ``0.5``
.. include:: ../arguments_edit/smrf-threshold.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/smrf-threshold.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
smrf-window
```````````
``<positive float>``
**Options:** *<positive float>*
Simple Morphological Filter window radius parameter (meters). Default: ``18.0``
.. include:: ../arguments_edit/smrf-window.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/smrf-window.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
split-image-groups
``````````````````
``<path string>``
**Options:** *<path string>*
Path to the image groups file that controls how images should be split into groups. The file needs to use the following format: image_name group_nameDefault: ``None``
.. include:: ../arguments_edit/split-image-groups.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/split-image-groups.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
split-overlap
`````````````
``<positive integer>``
**Options:** *<positive integer>*
Radius of the overlap between submodels. After grouping images into clusters, images that are closer than this radius to a cluster are added to the cluster. This is done to ensure that neighboring submodels overlap. Default: ``150``
.. include:: ../arguments_edit/split-overlap.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/split-overlap.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
split
`````
``<positive integer>``
**Options:** *<positive integer>*
Average number of images per submodel. When splitting a large dataset into smaller submodels, images are grouped into clusters. This value regulates the number of images that each cluster should have on average. Default: ``999999``
.. include:: ../arguments_edit/split.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/split.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
texturing-data-term
```````````````````
``gmi | area``
**Options:** *gmi | area*
When texturing the 3D mesh, for each triangle, choose to prioritize images with sharp features (gmi) or those that cover the largest area (area). Default: ``gmi``
.. include:: ../arguments_edit/texturing-data-term.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/texturing-data-term.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ texturing-keep-unseen-faces
Keep faces in the mesh that are not seen in any camera. Default: ``False``
.. include:: ../arguments_edit/texturing-keep-unseen-faces.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/texturing-keep-unseen-faces.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
texturing-outlier-removal-type
``````````````````````````````
``none | gauss_clamping | gauss_damping``
**Options:** *none | gauss_clamping | gauss_damping*
Type of photometric outlier removal method. . Default: ``gauss_clamping``
.. include:: ../arguments_edit/texturing-outlier-removal-type.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/texturing-outlier-removal-type.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ texturing-skip-global-seam-leveling
Skip normalization of colors across all images. Useful when processing radiometric data. Default: ``False``
.. include:: ../arguments_edit/texturing-skip-global-seam-leveling.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/texturing-skip-global-seam-leveling.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ texturing-skip-local-seam-leveling
Skip the blending of colors near seams. Default: ``False``
.. include:: ../arguments_edit/texturing-skip-local-seam-leveling.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/texturing-skip-local-seam-leveling.rst>`_!

Wyświetl plik

@ -8,10 +8,10 @@
texturing-tone-mapping
``````````````````````
``none | gamma``
**Options:** *none | gamma*
Turn on gamma tone mapping or none for no tone mapping. Can be one of ['none', 'gamma']. Default: ``none``
.. include:: ../arguments_edit/texturing-tone-mapping.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/texturing-tone-mapping.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ tiles
Generate static tiles for orthophotos and DEMs that are suitable for viewers like Leaflet or OpenLayers. Default: ``False``
.. include:: ../arguments_edit/tiles.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/tiles.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ time
Generates a benchmark file with runtime info. Default: ``False``
.. include:: ../arguments_edit/time.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/time.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ use-3dmesh
Use a full 3D mesh to compute the orthophoto instead of a 2.5D mesh. This option is a bit faster and provides similar results in planar areas. Default: ``False``
.. include:: ../arguments_edit/use-3dmesh.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/use-3dmesh.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ use-exif
Use this tag if you have a GCP File but want to use the EXIF information for georeferencing instead. Default: ``False``
.. include:: ../arguments_edit/use-exif.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/use-exif.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ use-fixed-camera-params
Turn off camera parameter optimization during bundle adjustment. This can be sometimes useful for improving results that exhibit doming/bowling or when images are taken with a rolling shutter camera. Default: ``False``
.. include:: ../arguments_edit/use-fixed-camera-params.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/use-fixed-camera-params.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ use-hybrid-bundle-adjustment
Run local bundle adjustment for every image added to the reconstruction and a global adjustment every 100 images. Speeds up reconstruction for very large datasets. Default: ``False``
.. include:: ../arguments_edit/use-hybrid-bundle-adjustment.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/use-hybrid-bundle-adjustment.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ verbose
Print additional messages to the console. Default: ``False``
.. include:: ../arguments_edit/verbose.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/verbose.rst>`_!

Wyświetl plik

@ -12,6 +12,6 @@ version
Displays version number and exits.
.. include:: ../arguments_edit/version.rst
`Learn to edit <https://github.com/opendronemap/docs#how-to-make-your-first-contribution>`_ and help improve `this page <https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/version.rst>`_!

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Wyświetl plik

@ -0,0 +1 @@

Some files were not shown because too many files have changed in this diff Show More