A multiprocessing based python CLI application used for spliting images into small tiles to make mannual annotation of flowers easier. The splited tiles are used as training data to train a CNNbased model to count canola flowers. # Resources and references: - Main documentation of argparse: https://docs.python.org/3/library/argparse.html#argparse.ArgumentParser.add_argument - Important things missed in documentation: https://medium.com/@george.shuklin/argparse-how-to-get-command-name-for-subparsers-d836483e9511 - A practical example: https://pymotw.com/3/argparse/