Line 93 in file: /postProcess/Video-generic.py
This line passes argument includeCoat to the executable getFacet, but this argument is not known to getFacet. This leads getFacet to prematurely end with error code 1, in turn failing Video-generic.py.
Work-around solution:
Changing line 93 to
exe = ["./getFacet", filename] # , includeCoat]
resolves the issue.
The proper solution is probably to update getFacet.c and make it accept the includeCoat argument?
Line 93 in file: /postProcess/Video-generic.py
This line passes argument
includeCoatto the executablegetFacet, but this argument is not known togetFacet. This leadsgetFacetto prematurely end with error code 1, in turn failingVideo-generic.py.Work-around solution:
Changing line 93 to
resolves the issue.
The proper solution is probably to update getFacet.c and make it accept the
includeCoatargument?