[CCV] Deactivated orientation for batch processing

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2017-06-05 12:24:02 +02:00
parent 1216dbd5db
commit 370e17a319
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ def batch():
base_filename, ext = os.path.splitext(filename)
input_filename = os.path.join(args.input, filename)
output_filename = os.path.join(args.output, base_filename + "_saliency.png")
subprocess.run([args.saliency, input_filename, output_filename, "1"], stderr=subprocess.PIPE, check=True)
subprocess.run([args.saliency, input_filename, output_filename, "0"], stderr=subprocess.PIPE, check=True)
if __name__ == "__main__":