Add software description

This commit is contained in:
Kristóf Tóth 2018-02-24 21:20:47 +01:00
parent 7a186ec82e
commit 9ff5abce12
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ if __name__ == '__main__':
from sys import exit
def parse_arguments():
ap = ArgumentParser()
ap = ArgumentParser(description='Find the best quality one among similar images.'
'Note: image dimensions should match!')
ap.add_argument('images', type=str, nargs='+', help='')
ap.add_argument('-d', '--delete', action='store_true', help='Delete all but the best quality image.')
ap.add_argument('-q', '--quiet', action='store_true', help='Print quality measurements only.')