mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[core] split graph.py into separate modules
core.graph is now splitted into: * graph.py * node.py * attribute.py
This commit is contained in:
parent
f4b3364275
commit
1f675a0e42
9 changed files with 1117 additions and 1094 deletions
|
@ -2,7 +2,7 @@
|
|||
import argparse
|
||||
|
||||
import meshroom.core.graph
|
||||
from meshroom.core.graph import Status
|
||||
from meshroom.core.node import Status
|
||||
|
||||
|
||||
parser = argparse.ArgumentParser(description='Execute a Graph of processes.')
|
||||
|
@ -57,5 +57,5 @@ else:
|
|||
toNodes = None
|
||||
if args.toNode:
|
||||
toNodes = graph.findNodes([args.toNode])
|
||||
meshroom.core.graph.execute(graph, toNodes=toNodes, forceCompute=args.forceCompute, forceStatus=args.forceStatus)
|
||||
meshroom.core.graph.executeGraph(graph, toNodes=toNodes, forceCompute=args.forceCompute, forceStatus=args.forceStatus)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue