You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
478 B
Python
15 lines
478 B
Python
"""
|
|
sbb_binarize CLI
|
|
"""
|
|
|
|
from click import command, option, argument, version_option, types
|
|
from .sbb_binarize import SbbBinarizer
|
|
|
|
@command()
|
|
@version_option()
|
|
@option('--model-dir', '-m', type=types.Path(exists=True, file_okay=False), required=True, help='directory containing models for prediction')
|
|
@argument('input_image')
|
|
@argument('output_image')
|
|
def main(model_dir, input_image, output_image):
|
|
SbbBinarizer(model_dir).run(image_path=input_image, save=output_image)
|