Skip to content

Commit 23c7680

Browse files
Refs update (#2027)
1 parent c10df28 commit 23c7680

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

contrib/fix_ply/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The basic idea is to process through ODM until the point cloud is created, use a
66

77
This useful bit of python will convert the PLY exported from CloudCompare back into a compatible format for continued processing in OpenDroneMap.
88

9-
1. Run project in WebODM and add this to your settings: `end-with: odm-filterpoints`
9+
1. Run project in OpenDroneMap Desktop and add this to your settings: `end-with: odm-filterpoints`
1010
1. Once complete, go to your NodeODM container and copy `/var/www/data/[Task ID]/odm-filterpoints` directory
1111
1. Open CloudCompare and from `odm-filterpoints` directory you've copied, open `point_cloud.ply`
1212
1. In the box that pops up, add a scalar field `vertex - views`
@@ -16,4 +16,4 @@ This useful bit of python will convert the PLY exported from CloudCompare back i
1616
1. Save PLY file as ASCII
1717
1. Run Python file above to fix PLY file and convert to binary
1818
1. Copy `odm_filterpoints` directory (or just `point_cloud.ply`) back into NodeODM container
19-
1. Restart project in WebODM "From Meshing" (don't forget to edit settings to remove `end-with: odm-filterpoints` or it's not going to do anything).
19+
1. Restart project in OpenDroneMap Desktop "From Meshing" (don't forget to edit settings to remove `end-with: odm-filterpoints` or it's not going to do anything).

stages/mvstex.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def add_run(nvm_file, primary=True, band=None):
161161

162162

163163
# Backward compatibility: copy odm_textured_model_geo.mtl to odm_textured_model.mtl
164-
# for certain older WebODM clients which expect a odm_textured_model.mtl
164+
# for certain older clients which expect a odm_textured_model.mtl
165165
# to be present for visualization
166166
# We should remove this at some point in the future
167167
geo_mtl = os.path.join(r['out_dir'], 'odm_textured_model_geo.mtl')
@@ -183,4 +183,3 @@ def add_run(nvm_file, primary=True, band=None):
183183
undistorted_images_path = os.path.join(tree.opensfm, "undistorted", "images")
184184
if io.dir_exists(undistorted_images_path):
185185
shutil.rmtree(undistorted_images_path)
186-

stages/odm_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def execute(self):
9898
# Segfault
9999
log.ODM_ERROR("Uh oh! Processing stopped because of strange values in the reconstruction. This is often a sign that the input data has some issues or the software cannot deal with it. Have you followed best practices for data acquisition? See https://docs.opendronemap.org/flying/")
100100
elif code == 137 or code == 3221226505:
101-
log.ODM_ERROR("Whoops! You ran out of memory! Add more RAM to your computer, if you're using docker configure it to use more memory, for WSL2 make use of .wslconfig (https://docs.microsoft.com/en-us/windows/wsl/wsl-config#configure-global-options-with-wslconfig), resize your images, lower the quality settings or process the images using a cloud provider (e.g. https://webodm.net).")
101+
log.ODM_ERROR("Whoops! You ran out of memory! Add more RAM to your computer, if you're using docker configure it to use more memory, for WSL2 make use of .wslconfig (https://docs.microsoft.com/en-us/windows/wsl/wsl-config#configure-global-options-with-wslconfig), resize your images, lower the quality settings or process the images using a cloud provider.")
102102
elif code == 132:
103103
log.ODM_ERROR("Oh no! It looks like your CPU is not supported (is it fairly old?). You can still use ODM, but you will need to build your own docker image. See https://github.com/OpenDroneMap/ODM#build-from-source")
104104
elif code == 3:

0 commit comments

Comments
 (0)