darglein / ADOP

MIT License
2.02k stars 197 forks source link

[Question] running with custom images on pre-trained model #28

Closed chris-aeviator closed 2 years ago

chris-aeviator commented 2 years ago

Thanks for releasing ADOP. If I want to test ADOP on my own image dataset, I'll need to

a) pre-process them with Colmap (do I need a dense reconstruction, a sparse reconstruction or just the camera poses?) b) convert them to ADOP format via colmap2adop c) load them into the ADOP/scenes folder

before running ADOP?

darglein commented 2 years ago

Hello,

a) You need both, the dense and sparse reconstruction. However from the dense reconstruction only the point cloud is required.

b) yes, also consider running preprocess_point_cloud after colmap2adop

c) This will automatically be done by colmap2adop.

After that run adop_viewer on you scene to check if the point cloud / poses are correct.

chris-aeviator commented 2 years ago

Thanks for the quick clarification.