mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-04 01:08:26 +02:00
[bin] compute: preprocess/postprocess calls are missing
This commit is contained in:
parent
fc004f5009
commit
0e90915a82
1 changed files with 3 additions and 0 deletions
|
@ -55,11 +55,14 @@ if args.node:
|
|||
if chunk.status.status in submittedStatuses:
|
||||
print('Warning: Node is already submitted with status "{}". See file: "{}"'.format(chunk.status.status.name, chunk.statusFile))
|
||||
# sys.exit(-1)
|
||||
|
||||
node.preprocess()
|
||||
if args.iteration != -1:
|
||||
chunk = node.chunks[args.iteration]
|
||||
chunk.process(args.forceCompute)
|
||||
else:
|
||||
node.process(args.forceCompute)
|
||||
node.postprocess()
|
||||
else:
|
||||
if args.iteration != -1:
|
||||
print('Error: "--iteration" only make sense when used with "--node".')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue