mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
[core] change Attributes declaration on Node description
Inputs and outputs Attributes are now declared in two separate lists * no more isOutput field on Attribute description * guarantee attributes order (was not the case in Python2 with class attributes) * Attribute's name is now part of its description Note: for now, input and output Attributes are still stored in a single model inside a Graph.
This commit is contained in:
parent
00366cda00
commit
16e8037fd7
18 changed files with 506 additions and 405 deletions
|
@ -26,15 +26,15 @@ def photogrammetryPipeline(inputFolder='', inputImages=[], inputViewpoints=[]):
|
|||
prepareDenseScene = graph.addNewNode('PrepareDenseScene',
|
||||
input=structureFromMotion.output)
|
||||
camPairs = graph.addNewNode('CameraConnection',
|
||||
mvsConfig=prepareDenseScene.mvsConfig)
|
||||
ini=prepareDenseScene.ini)
|
||||
depthMap = graph.addNewNode('DepthMap',
|
||||
mvsConfig=camPairs.mvsConfig)
|
||||
ini=camPairs.ini)
|
||||
depthMapFilter = graph.addNewNode('DepthMapFilter',
|
||||
mvsConfig=depthMap.mvsConfig)
|
||||
ini=depthMap.ini)
|
||||
meshing = graph.addNewNode('Meshing',
|
||||
mvsConfig=depthMapFilter.mvsConfig)
|
||||
ini=depthMapFilter.ini)
|
||||
texturing = graph.addNewNode('Texturing',
|
||||
mvsConfig=meshing.mvsConfig)
|
||||
ini=meshing.ini)
|
||||
return graph
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue