kopia lustrzana https://github.com/OpenDroneMap/docs
Update documentation
rodzic
95148b9ba1
commit
d9ce99f8a0
|
@ -48,7 +48,7 @@ Options and Flags
|
|||
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``
|
||||
|
||||
:ref:`depthmap-resolution<depthmap-resolution>` <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``
|
||||
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. Overrides the value calculated by --pc-quality.Default: ``640``
|
||||
|
||||
:ref:`dsm<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``
|
||||
|
@ -86,8 +86,8 @@ Options and Flags
|
|||
:ref:`ignore-gsd<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``
|
||||
|
||||
:ref:`matcher-neighbors<matcher-neighbors>` <integer>
|
||||
Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Default: ``8``
|
||||
:ref:`matcher-neighbors<matcher-neighbors>` <positive integer>
|
||||
Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: ``0``
|
||||
|
||||
:ref:`matcher-type<matcher-type>` bow | bruteforce | flann
|
||||
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. BRUTEFORCE is very slow but robust.. Default: ``flann``
|
||||
|
@ -105,7 +105,7 @@ Options and Flags
|
|||
The maximum vertex count of the output mesh. Default: ``200000``
|
||||
|
||||
:ref:`min-num-features<min-num-features>` <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``
|
||||
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: ``10000``
|
||||
|
||||
:ref:`name<name>` <dataset name>
|
||||
Name of dataset (i.e subfolder name within project folder). Default: ``code``
|
||||
|
@ -134,6 +134,9 @@ Options and Flags
|
|||
:ref:`pc-classify<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``
|
||||
|
||||
:ref:`pc-copc<pc-copc>`
|
||||
Save the georeferenced point cloud in Cloud Optimized Point Cloud (COPC) format. Default: ``False``
|
||||
|
||||
:ref:`pc-csv<pc-csv>`
|
||||
Export the georeferenced point cloud in CSV format. Default: ``False``
|
||||
|
||||
|
@ -182,8 +185,8 @@ Options and Flags
|
|||
:ref:`resize-to<resize-to>` <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``
|
||||
|
||||
:ref:`sfm-algorithm<sfm-algorithm>` incremental | triangulation
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. . Default: ``incremental``
|
||||
:ref:`sfm-algorithm<sfm-algorithm>` incremental | triangulation | planar
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. For planar scenes captured at fixed altitude with nadir-only images, planar can be much faster. . Default: ``incremental``
|
||||
|
||||
:ref:`skip-3dmodel<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``
|
||||
|
|
|
@ -10,7 +10,7 @@ depthmap-resolution
|
|||
|
||||
**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``
|
||||
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. Overrides the value calculated by --pc-quality.Default: ``640``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
matcher-neighbors
|
||||
`````````````````
|
||||
|
||||
**Options:** *<integer>*
|
||||
**Options:** *<positive integer>*
|
||||
|
||||
Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Default: ``8``
|
||||
Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: ``0``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ min-num-features
|
|||
|
||||
**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``
|
||||
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: ``10000``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
sfm-algorithm
|
||||
`````````````
|
||||
|
||||
**Options:** *incremental | triangulation*
|
||||
**Options:** *incremental | triangulation | planar*
|
||||
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. . Default: ``incremental``
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. For planar scenes captured at fixed altitude with nadir-only images, planar can be much faster. . Default: ``incremental``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '2.8.3',
|
||||
VERSION: '2.8.4',
|
||||
LANGUAGE: 'en',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'dirhtml',
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Sphinx build info version 1
|
||||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
||||
config: d41dd0e10d52ffb46568e063814995f2
|
||||
config: 694dd4d965421b19cf30ce6f241068c8
|
||||
tags: d77d1c0d9ca2f4c8421862c7c5a0d620
|
||||
|
|
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
Plik binarny nie jest wyświetlany.
|
@ -48,7 +48,7 @@ Options and Flags
|
|||
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``
|
||||
|
||||
:ref:`depthmap-resolution<depthmap-resolution>` <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``
|
||||
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. Overrides the value calculated by --pc-quality.Default: ``640``
|
||||
|
||||
:ref:`dsm<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``
|
||||
|
@ -86,8 +86,8 @@ Options and Flags
|
|||
:ref:`ignore-gsd<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``
|
||||
|
||||
:ref:`matcher-neighbors<matcher-neighbors>` <integer>
|
||||
Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Default: ``8``
|
||||
:ref:`matcher-neighbors<matcher-neighbors>` <positive integer>
|
||||
Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: ``0``
|
||||
|
||||
:ref:`matcher-type<matcher-type>` bow | bruteforce | flann
|
||||
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. BRUTEFORCE is very slow but robust.. Default: ``flann``
|
||||
|
@ -105,7 +105,7 @@ Options and Flags
|
|||
The maximum vertex count of the output mesh. Default: ``200000``
|
||||
|
||||
:ref:`min-num-features<min-num-features>` <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``
|
||||
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: ``10000``
|
||||
|
||||
:ref:`name<name>` <dataset name>
|
||||
Name of dataset (i.e subfolder name within project folder). Default: ``code``
|
||||
|
@ -134,6 +134,9 @@ Options and Flags
|
|||
:ref:`pc-classify<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``
|
||||
|
||||
:ref:`pc-copc<pc-copc>`
|
||||
Save the georeferenced point cloud in Cloud Optimized Point Cloud (COPC) format. Default: ``False``
|
||||
|
||||
:ref:`pc-csv<pc-csv>`
|
||||
Export the georeferenced point cloud in CSV format. Default: ``False``
|
||||
|
||||
|
@ -182,8 +185,8 @@ Options and Flags
|
|||
:ref:`resize-to<resize-to>` <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``
|
||||
|
||||
:ref:`sfm-algorithm<sfm-algorithm>` incremental | triangulation
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. . Default: ``incremental``
|
||||
:ref:`sfm-algorithm<sfm-algorithm>` incremental | triangulation | planar
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. For planar scenes captured at fixed altitude with nadir-only images, planar can be much faster. . Default: ``incremental``
|
||||
|
||||
:ref:`skip-3dmodel<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``
|
||||
|
|
|
@ -10,7 +10,7 @@ depthmap-resolution
|
|||
|
||||
**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``
|
||||
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. Overrides the value calculated by --pc-quality.Default: ``640``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
matcher-neighbors
|
||||
`````````````````
|
||||
|
||||
**Options:** *<integer>*
|
||||
**Options:** *<positive integer>*
|
||||
|
||||
Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Default: ``8``
|
||||
Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: ``0``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ min-num-features
|
|||
|
||||
**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``
|
||||
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: ``10000``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
sfm-algorithm
|
||||
`````````````
|
||||
|
||||
**Options:** *incremental | triangulation*
|
||||
**Options:** *incremental | triangulation | planar*
|
||||
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. . Default: ``incremental``
|
||||
Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. For planar scenes captured at fixed altitude with nadir-only images, planar can be much faster. . Default: ``incremental``
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '2.8.3',
|
||||
VERSION: '2.8.4',
|
||||
LANGUAGE: 'ar',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'dirhtml',
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>auto-boundary — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>auto-boundary — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>boundary — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>boundary — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>build-overviews — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>build-overviews — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>camera-lens — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>camera-lens — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>cameras — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>cameras — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>cog — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>cog — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>copy-to — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>copy-to — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>crop — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>crop — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>debug — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>debug — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>dem-decimation — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>dem-decimation — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>dem-euclidean-map — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>dem-euclidean-map — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>dem-gapfill-steps — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>dem-gapfill-steps — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>dem-resolution — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>dem-resolution — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>depthmap-resolution — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>depthmap-resolution — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
@ -399,7 +399,7 @@
|
|||
<section id="depthmap-resolution">
|
||||
<span id="id1"></span><h1>depthmap-resolution<a class="headerlink" href="#depthmap-resolution" title="Permalink to this headline"></a></h1>
|
||||
<p><strong>Options:</strong> <em><positive float></em></p>
|
||||
<p>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: <code class="docutils literal notranslate"><span class="pre">640</span></code></p>
|
||||
<p>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. Overrides the value calculated by --pc-quality.Default: <code class="docutils literal notranslate"><span class="pre">640</span></code></p>
|
||||
<p><a class="reference external" href="https://github.com/opendronemap/docs#how-to-make-your-first-contribution">Learn to edit</a> and help improve <a class="reference external" href="https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/depthmap-resolution.rst">this page</a>!</p>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>dsm — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>dsm — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>dtm — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>dtm — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>end-with — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>end-with — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>fast-orthophoto — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>fast-orthophoto — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>feature-quality — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>feature-quality — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>feature-type — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>feature-type — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>force-gps — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>force-gps — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>gcp — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>gcp — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>geo — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>geo — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>gps-accuracy — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>gps-accuracy — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>help — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>help — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>ignore-gsd — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>ignore-gsd — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>الخيارات والإعلام — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>الخيارات والإعلام — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../search/" method="get">
|
||||
|
@ -424,7 +424,7 @@
|
|||
</dd>
|
||||
<dt><a class="reference internal" href="dem-resolution/#dem-resolution"><span class="std std-ref">dem-resolution</span></a> <float></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">5</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="depthmap-resolution/#depthmap-resolution"><span class="std std-ref">depthmap-resolution</span></a> <positive float></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">640</span></code></p>
|
||||
<dt><a class="reference internal" href="depthmap-resolution/#depthmap-resolution"><span class="std std-ref">depthmap-resolution</span></a> <positive float></dt><dd><p>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. Overrides the value calculated by --pc-quality.Default: <code class="docutils literal notranslate"><span class="pre">640</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="dsm/#dsm"><span class="std std-ref">dsm</span></a></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
</dd>
|
||||
|
@ -450,7 +450,7 @@
|
|||
</dd>
|
||||
<dt><a class="reference internal" href="ignore-gsd/#ignore-gsd"><span class="std std-ref">ignore-gsd</span></a></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="matcher-neighbors/#matcher-neighbors"><span class="std std-ref">matcher-neighbors</span></a> <integer></dt><dd><p>Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Default: <code class="docutils literal notranslate"><span class="pre">8</span></code></p>
|
||||
<dt><a class="reference internal" href="matcher-neighbors/#matcher-neighbors"><span class="std std-ref">matcher-neighbors</span></a> <positive integer></dt><dd><p>Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: <code class="docutils literal notranslate"><span class="pre">0</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="matcher-type/#matcher-type"><span class="std std-ref">matcher-type</span></a> bow | bruteforce | flann</dt><dd><p>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. BRUTEFORCE is very slow but robust.. Default: <code class="docutils literal notranslate"><span class="pre">flann</span></code></p>
|
||||
</dd>
|
||||
|
@ -462,7 +462,7 @@
|
|||
</dd>
|
||||
<dt><a class="reference internal" href="mesh-size/#mesh-size"><span class="std std-ref">mesh-size</span></a> <positive integer></dt><dd><p>The maximum vertex count of the output mesh. Default: <code class="docutils literal notranslate"><span class="pre">200000</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="min-num-features/#min-num-features"><span class="std std-ref">min-num-features</span></a> <integer></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">8000</span></code></p>
|
||||
<dt><a class="reference internal" href="min-num-features/#min-num-features"><span class="std std-ref">min-num-features</span></a> <integer></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">10000</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="name/#name"><span class="std std-ref">name</span></a> <dataset name></dt><dd><p>Name of dataset (i.e subfolder name within project folder). Default: <code class="docutils literal notranslate"><span class="pre">code</span></code></p>
|
||||
</dd>
|
||||
|
@ -482,6 +482,8 @@
|
|||
</dd>
|
||||
<dt><a class="reference internal" href="pc-classify/#pc-classify"><span class="std std-ref">pc-classify</span></a></dt><dd><p>Classify the point cloud outputs using a Simple Morphological Filter. You can control the behavior of this option by tweaking the --dem-* parameters. Default: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="pc-copc/#pc-copc"><span class="std std-ref">pc-copc</span></a></dt><dd><p>Save the georeferenced point cloud in Cloud Optimized Point Cloud (COPC) format. Default: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="pc-csv/#pc-csv"><span class="std std-ref">pc-csv</span></a></dt><dd><p>Export the georeferenced point cloud in CSV format. Default: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="pc-ept/#pc-ept"><span class="std std-ref">pc-ept</span></a></dt><dd><p>Export the georeferenced point cloud in Entwine Point Tile (EPT) format. Default: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
|
@ -514,7 +516,7 @@
|
|||
</dd>
|
||||
<dt><a class="reference internal" href="resize-to/#resize-to"><span class="std std-ref">resize-to</span></a> <integer></dt><dd><p>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: <code class="docutils literal notranslate"><span class="pre">2048</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="sfm-algorithm/#sfm-algorithm"><span class="std std-ref">sfm-algorithm</span></a> incremental | triangulation</dt><dd><p>Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. . Default: <code class="docutils literal notranslate"><span class="pre">incremental</span></code></p>
|
||||
<dt><a class="reference internal" href="sfm-algorithm/#sfm-algorithm"><span class="std std-ref">sfm-algorithm</span></a> incremental | triangulation | planar</dt><dd><p>Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. For planar scenes captured at fixed altitude with nadir-only images, planar can be much faster. . Default: <code class="docutils literal notranslate"><span class="pre">incremental</span></code></p>
|
||||
</dd>
|
||||
<dt><a class="reference internal" href="skip-3dmodel/#skip-3dmodel"><span class="std std-ref">skip-3dmodel</span></a></dt><dd><p>Skip generation of a full 3D model. This can save time if you only need 2D results such as orthophotos and DEMs. Default: <code class="docutils literal notranslate"><span class="pre">False</span></code></p>
|
||||
</dd>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>matcher-neighbors — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>matcher-neighbors — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
@ -398,8 +398,8 @@
|
|||
|
||||
<section id="matcher-neighbors">
|
||||
<span id="id1"></span><h1>matcher-neighbors<a class="headerlink" href="#matcher-neighbors" title="Permalink to this headline"></a></h1>
|
||||
<p><strong>Options:</strong> <em><integer></em></p>
|
||||
<p>Number of nearest images to pre-match based on GPS exif data. Set to 0 to skip pre-matching. Default: <code class="docutils literal notranslate"><span class="pre">8</span></code></p>
|
||||
<p><strong>Options:</strong> <em><positive integer></em></p>
|
||||
<p>Perform image matching with the nearest images based on GPS exif data. Set to 0 to match by triangulation. Default: <code class="docutils literal notranslate"><span class="pre">0</span></code></p>
|
||||
<p><a class="reference external" href="https://github.com/opendronemap/docs#how-to-make-your-first-contribution">Learn to edit</a> and help improve <a class="reference external" href="https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/matcher-neighbors.rst">this page</a>!</p>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>matcher-type — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>matcher-type — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>max-concurrency — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>max-concurrency — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>merge — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>merge — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>mesh-octree-depth — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>mesh-octree-depth — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>mesh-size — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>mesh-size — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>min-num-features — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>min-num-features — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
@ -399,7 +399,7 @@
|
|||
<section id="min-num-features">
|
||||
<span id="id1"></span><h1>min-num-features<a class="headerlink" href="#min-num-features" title="Permalink to this headline"></a></h1>
|
||||
<p><strong>Options:</strong> <em><integer></em></p>
|
||||
<p>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: <code class="docutils literal notranslate"><span class="pre">8000</span></code></p>
|
||||
<p>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: <code class="docutils literal notranslate"><span class="pre">10000</span></code></p>
|
||||
<p><a class="reference external" href="https://github.com/opendronemap/docs#how-to-make-your-first-contribution">Learn to edit</a> and help improve <a class="reference external" href="https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/min-num-features.rst">this page</a>!</p>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>name — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>name — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>optimize-disk-space — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>optimize-disk-space — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>orthophoto-compression — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>orthophoto-compression — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>orthophoto-cutline — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>orthophoto-cutline — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>orthophoto-kmz — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>orthophoto-kmz — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>orthophoto-no-tiled — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>orthophoto-no-tiled — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>orthophoto-png — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>orthophoto-png — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>orthophoto-resolution — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>orthophoto-resolution — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-classify — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-classify — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-copc — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-copc — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-csv — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-csv — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-ept — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-ept — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-filter — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-filter — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-geometric — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-geometric — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-las — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-las — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-quality — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-quality — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-rectify — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-rectify — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-sample — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-sample — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>pc-tile — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>pc-tile — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>primary-band — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>primary-band — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>project-path — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>project-path — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>radiometric-calibration — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>radiometric-calibration — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>rerun-all — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>rerun-all — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>rerun-from — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>rerun-from — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>rerun — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>rerun — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>resize-to — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>resize-to — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>sfm-algorithm — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>sfm-algorithm — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
@ -398,8 +398,8 @@
|
|||
|
||||
<section id="sfm-algorithm">
|
||||
<span id="id1"></span><h1>sfm-algorithm<a class="headerlink" href="#sfm-algorithm" title="Permalink to this headline"></a></h1>
|
||||
<p><strong>Options:</strong> <em>incremental | triangulation</em></p>
|
||||
<p>Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. . Default: <code class="docutils literal notranslate"><span class="pre">incremental</span></code></p>
|
||||
<p><strong>Options:</strong> <em>incremental | triangulation | planar</em></p>
|
||||
<p>Choose the structure from motion algorithm. For aerial datasets, if camera GPS positions and angles are available, triangulation can generate better results. For planar scenes captured at fixed altitude with nadir-only images, planar can be much faster. . Default: <code class="docutils literal notranslate"><span class="pre">incremental</span></code></p>
|
||||
<p><a class="reference external" href="https://github.com/opendronemap/docs#how-to-make-your-first-contribution">Learn to edit</a> and help improve <a class="reference external" href="https://github.com/OpenDroneMap/docs/blob/publish/source/arguments_edit/sfm-algorithm.rst">this page</a>!</p>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>skip-3dmodel — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>skip-3dmodel — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>skip-band-alignment — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>skip-band-alignment — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>skip-orthophoto — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>skip-orthophoto — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>skip-report — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>skip-report — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>sm-cluster — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>sm-cluster — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>smrf-scalar — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>smrf-scalar — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>smrf-slope — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>smrf-slope — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>smrf-threshold — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>smrf-threshold — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>smrf-window — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>smrf-window — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>split-image-groups — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>split-image-groups — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>split-overlap — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>split-overlap — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>split — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>split — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>texturing-data-term — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>texturing-data-term — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>texturing-keep-unseen-faces — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>texturing-keep-unseen-faces — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>texturing-outlier-removal-type — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>texturing-outlier-removal-type — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>texturing-skip-global-seam-leveling — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>texturing-skip-global-seam-leveling — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>texturing-skip-local-seam-leveling — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>texturing-skip-local-seam-leveling — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>texturing-tone-mapping — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>texturing-tone-mapping — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>tiles — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>tiles — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>time — OpenDroneMap 2.8.3 documentation</title>
|
||||
<title>time — OpenDroneMap 2.8.4 documentation</title>
|
||||
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
||||
<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
|
||||
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<a href="../../" class="icon icon-home"> OpenDroneMap
|
||||
</a>
|
||||
<div class="version">
|
||||
2.8.3
|
||||
2.8.4
|
||||
</div>
|
||||
<div role="search">
|
||||
<form id="rtd-search-form" class="wy-form" action="../../search/" method="get">
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Ładowanie…
Reference in New Issue