mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
Arguments are required here.
This commit is contained in:
parent
d47a105ac7
commit
e7017e61a6
1 changed files with 2 additions and 2 deletions
|
@ -34,9 +34,9 @@ from PIL import Image
|
|||
import argparse
|
||||
parser = argparse.ArgumentParser(prog='stegano-steganalysis-parity')
|
||||
parser.add_argument("-i", "--input", dest="input_image_file",
|
||||
help="Image file")
|
||||
required=True, help="Input image file.")
|
||||
parser.add_argument("-o", "--output", dest="output_image_file",
|
||||
help="Image file")
|
||||
required=True, help="Output image file.")
|
||||
arguments = parser.parse_args()
|
||||
|
||||
input_image_file = Image.open(arguments.input_image_file)
|
||||
|
|
Loading…
Add table
Reference in a new issue