Add software description
This commit is contained in:
parent
7a186ec82e
commit
9ff5abce12
@ -53,7 +53,8 @@ if __name__ == '__main__':
|
|||||||
from sys import exit
|
from sys import exit
|
||||||
|
|
||||||
def parse_arguments():
|
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('images', type=str, nargs='+', help='')
|
||||||
ap.add_argument('-d', '--delete', action='store_true', help='Delete all but the best quality image.')
|
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.')
|
ap.add_argument('-q', '--quiet', action='store_true', help='Print quality measurements only.')
|
||||||
|
Loading…
Reference in New Issue
Block a user