You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The filename is case-sensitive. IMG_0001.jpg is not the same as IMG_0001.JPG.
49
+
* The filename cannot contain spaces. Spaces can be encoded by using the %20 escape sequence. E.g. My Image.JPG should be referenced as My%20Image.JPG.
50
+
:::
51
+
47
52
If you supply a GCP file called `gcp_list.txt` then WebODM will automatically detect it. If you have a gcp file and want to do georeferencing with exif instead, then you can specify `--use-exif`. If you have high precision GPS measurements in your images (RTK) and want to use that information along with a gcp file, you can specify `--force-gps`.
48
53
49
54
It's important that you find high-contrast objects that are found in **at least** 3 photos, and that you find a minimum of 5 objects.
@@ -54,6 +59,18 @@ The `gcp_list.txt` file must be created in the base of your project folder.
54
59
55
60
For good results your file should have a minimum of 15 lines after the header (5 points with 3 images to each point).
56
61
62
+
### Marking Checkpoints
63
+
64
+
Checkpoints are used for checking the accuracy of the reconstruction. They are left out from the reconstruction process and are instead used to measure the accuracy of the results at the end.
65
+
66
+
You can mark a checkpoint by labeling it with the prefix `CHK-`. For example:
Copy file name to clipboardExpand all lines: src/content/docs/options-flags.md
-12Lines changed: 0 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,12 +264,6 @@ Choose what to merge in the merge step in a split dataset. By default all availa
264
264
265
265
**Default:**`all`
266
266
267
-
## merge-skip-blending
268
-
269
-
During the orthophoto merging, skip expensive blending operation: `False`
270
-
271
-
**Default:**`False`
272
-
273
267
## mesh-octree-depth
274
268
275
269
Octree depth used in the mesh reconstruction, increase to get more vertices, recommended values are 8-12.
@@ -400,12 +394,6 @@ Set point cloud quality. Higher quality generates better, denser point clouds, b
400
394
401
395
**Default:**`medium`
402
396
403
-
## pc-rectify
404
-
405
-
Perform ground rectification on the point cloud. This means that wrongly classified ground points will be re-classified and gaps will be filled. Useful for generating DTMs.
406
-
407
-
**Default:**`False`
408
-
409
397
## pc-sample
410
398
411
399
Filters the point cloud by keeping only a single point around a radius N (in meters). This can be useful to limit the output resolution of the point cloud and remove duplicate points. Set to 0 to disable sampling.
0 commit comments