marker_separation/py/separator.py

13 lines
249 B
Python
Raw Normal View History

2023-09-27 14:40:13 +00:00
import argparse
from os.path import isfile
parser = argparse.ArgumentParser(description='Separate an image into most similar colors specified')
parser.add_argument('input', type=str, help='Input image to separate')
args = parser.parse_args()