#!/usr/bin/env python
from src.ImageCropper_ import ImageCropper
import argparse

parser = argparse.ArgumentParser()
parser.add_argument("Source_Folder", help="The path to the folder"
                + " you want cropped")
parser.add_argument("Destination", help="The path to destination location")
args = parser.parse_args()
ImageCropper.crop_all_images(args.Source_Folder, args.Destination)
