-
-
Notifications
You must be signed in to change notification settings - Fork 949
Description
Describe the bug
I used openMVS to process results from colmap using Scaleable Pipeline, However, errors occured when executing DensifyPointCloud
To Reproduce
Steps to reproduce the behavior:
- Using colmap gui to import 4324 images for SFM
- Converting results from colmap to openMVS
mkdir $PROJECT/scene
InterfaceCOLMAP \
--working-folder $PROJECT/scene \
--input-file $PROJECT/colmap_interface/ \
--output-file scene.mvs \
--image-folder $PROJECT/colmap_interface/imagesIn this step, 4232 image was imported through interface, which is not equal to the numbe of original images (4324). Maybe there was some images was not successfully registered during SFM. This is a normal phenomenon.
Logs in step: InterfaceCOLMAP-2505242150328C5D7B.txt
- Calculating depth maps
DensifyPointCloud \
--working-folder $PROJECT/scene \
--input-file scene.mvs \
--resolution-level 2 \
--fusion-mode 1 \
--max-threads 13Logs: DensifyPointCloud-2505261615028D2A23.txt
As shown in the log file, there were 8 errors. One example is as the follow:
18:09:57 [App ] error: opening file '/mnt/usbdisk/subchange/zcg_whub/20250418_d2/zy_bridge/den_openmvs/scene/depth1668.dmap' for reading depth-data
- Splitting the scene
DensifyPointCloud \
--working-folder $PROJECT/scene \
--input-file scene.mvs \
--sub-scene-area 30000000 \
--resolution-level 2 \
--max-threads 13There were errors again.
I checked these depth-data, they are definitely not in my folder.
Desktop (please complete the following information):
- OS: [e.g. ubuntu20.04]
- Version[e.g. develop branch]
Additional context
I noticed this related issue issue 1007. It said that " It turns out that images indices in the TXT file were starting from 0 instead of 1". However, I checked the index of images in my case, the index of images was started from "1" exactly.
- screenshot of
images.txtfrom colmap
- screenshot of
scene.jsonconverted fromscene.mvsusing the scripts in the repository.
I don't how to do now, Could anyone give me some tips. Thank you very much.



