cdcseacave / openMVS

open Multi-View Stereo reconstruction library
http://cdcseacave.github.io
GNU Affero General Public License v3.0
3.37k stars 910 forks source link

How to do mesh texturing with known point cloud and known camera poses only? #1035

Closed flolu closed 1 year ago

flolu commented 1 year ago

How to do the mesh reconstruction and mesh texturing when only having access to:

I think the workflow would be as follows:

  1. Import dense point cloud, cameras and images with a custom script by using libs/MVS/Interface.h
  2. Reconstruct the mesh with ReconstructMesh
  3. Project textures onto mesh with TextureMesh

But I'm worried that I would also need depth maps and for each point, a list of image IDs seeing it. Do I need those? Am I missing something?

cdcseacave commented 1 year ago

you need only the a list of image IDs seeing each point

flolu commented 1 year ago

Allright thank you! Then I will try to make that work