From 4f858db20196d1c2d848ed0cf3d1fcfb0b8c7434 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Mon, 2 Oct 2023 19:07:44 -0400 Subject: [PATCH] First release --- Dockerfile | 2 +- image_textRemove.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c34f97..4476036 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,4 +21,4 @@ RUN pip install ".[${extras_require}]" \ && cd / && rm -rf ${SRCDIR} WORKDIR / -CMD ["app"] +CMD ["image_textRemove"] diff --git a/image_textRemove.py b/image_textRemove.py index ffb6112..556d0d3 100755 --- a/image_textRemove.py +++ b/image_textRemove.py @@ -8,7 +8,7 @@ import numpy as np from chris_plugin import chris_plugin, PathMapper -__version__ = '1.0.0' +__version__ = '0.2.0' DISPLAY_TITLE = r""" ChRIS Plugin to remove texts from images @@ -22,7 +22,7 @@ parser.add_argument('-p', '--pattern', default='**/*.txt', type=str, help='input file filter glob') parser.add_argument('-r', '--removeAll', default=False,action="store_true", - help='input file filter glob') + help='Remove all texts from image using text recognition model') # The main function of this *ChRIS* plugin is denoted by this ``@chris_plugin`` "decorator."