13 lines
249 B
Python
13 lines
249 B
Python
|
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()
|
||
|
|
||
|
|
||
|
|