parser.add_argument('image_path',type=str,nargs='+',help="Filepath for input images or folder containing images")
parser.add_argument('-n','--name',dest='name',default='DEFAULT_NAME',type=str,help='Basename of all export files')
parser.add_argument('-b','--debug',dest='debug',action='store_true',help='Lower logging level to debug')
parser.add_argument('-q','--quite',dest='quite',action='store_true',help='Disable all logging entirely')
parser.add_argument('-d','--display',dest='display',action='store_true',help="Display Game while learning and testing")
parser.add_argument('-s','--save',dest='save',action='store_true',help="If parsed saves the input image and mask with random file name, records name to logger")