mirror of
https://github.com/qurator-spk/sbb_binarization.git
synced 2025-06-09 04:10:00 +02:00
fixing #30. Directory of model(s) is needed not model file name.
This commit is contained in:
parent
2119c907c4
commit
82e0783e01
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ from .sbb_binarize import SbbBinarizer
|
|||
@command()
|
||||
@version_option()
|
||||
@option('--patches/--no-patches', default=True, help='by enabling this parameter you let the model to see the image in patches.')
|
||||
@option('--model-dir', '-m', required=True, help='directory containing models for prediction')
|
||||
@option('--model-dir', '-m', type=click.Path(exists=True, file_okay=False), required=True, help='directory containing models for prediction')
|
||||
@argument('input_image')
|
||||
@argument('output_image')
|
||||
def main(patches, model_dir, input_image, output_image):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue