Merge pull request #382 from alicevision/dev_densePointCloud

Dense point cloud
This commit is contained in:
Fabien Castan 2019-02-28 16:10:46 +01:00 committed by GitHub
commit 9b2338488b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 63 additions and 28 deletions

View file

@ -134,12 +134,11 @@ def mvsPipeline(graph, sfm=None):
depthMapsFolder=depthMapFilter.depthMapsFolder,
depthMapsFilterFolder=depthMapFilter.output)
meshFiltering = graph.addNewNode('MeshFiltering',
input=meshing.output)
inputMesh=meshing.outputMesh)
texturing = graph.addNewNode('Texturing',
input=meshing.input,
input=meshing.output,
imagesFolder=depthMap.imagesFolder,
inputDenseReconstruction=meshing.outputDenseReconstruction,
inputMesh=meshFiltering.output)
inputMesh=meshFiltering.outputMesh)
return [
prepareDenseScene,