Skip to content

Commit 6baea5e

Browse files
committed
allow plugin to create leaf op directories
1 parent 102ddcd commit 6baea5e

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

image_textRemove.py

+11-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import hashlib
1818
import itertools
1919

20-
__version__ = '1.2.4'
20+
__version__ = '1.2.5'
2121

2222
DISPLAY_TITLE = r"""
2323
_ _ _ _ ______
@@ -117,9 +117,16 @@ def main(options: Namespace, inputdir: Path, outputdir: Path):
117117

118118
box_list, final_image = inpaint_text(str(input_file), data, box_list, options.threshold, pipeline)
119119
img_rgb = cv2.cvtColor(final_image, cv2.COLOR_BGR2RGB)
120-
output_file = str(output_file).replace(options.fileFilter, options.outputType)
121-
print(f"Saving output file as ----->{output_file}<-----\n\n")
122-
cv2.imwrite(output_file, img_rgb)
120+
output_file_path = os.path.join(outputdir,str(image_dir).split('/')[-1],str(output_file).split('/')[-1])
121+
output_file_path = str(output_file_path).replace(options.fileFilter, options.outputType)
122+
# Extract the directory path from the filename
123+
directory = os.path.dirname(output_file_path)
124+
125+
# Create the directory if it doesn't exist
126+
if directory:
127+
os.makedirs(directory, exist_ok=True)
128+
print(f"Saving output file as ----->{output_file_path}<-----\n\n")
129+
cv2.imwrite(output_file_path, img_rgb)
123130

124131

125132
def midpoint(x1, y1, x2, y2):

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ opencv-python==4.11.0.86
33
pflog==1.2.26
44
pftel-client~=1.0.6
55
keras-ocr==0.9.3
6-
# tensorflow-cpu==2.17.0
6+
# tensorflow-cpu==2.19.0
77
tensorflow==2.15

0 commit comments

Comments
 (0)