Skip to content

Commit 53b9468

Browse files
committed
updated library version in requirements spec
1 parent 2fd4850 commit 53b9468

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

image_textRemove.py

+3
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,12 @@ def main(options: Namespace, inputdir: Path, outputdir: Path):
8585
# Refer to the documentation for more options, examples, and advanced uses e.g.
8686
# adding a progress bar and parallelism.
8787
json_data_path = ''
88+
data = {}
8889
l_json_path = list(inputdir.glob('**/*.json'))
8990
for json_path in l_json_path:
9091
if json_path.name == options.filterTextFromJSON:
9192
json_data_path = json_path
93+
print(json_path)
9294
try:
9395
f = open(json_data_path, 'r')
9496
data = json.load(f)
@@ -98,6 +100,7 @@ def main(options: Namespace, inputdir: Path, outputdir: Path):
98100
box_list = []
99101
mapper = PathMapper.file_mapper(inputdir, outputdir, glob=f"**/*.{options.fileFilter}", fail_if_empty=False)
100102
for input_file, output_file in mapper:
103+
print(data)
101104
# The code block below is a small and easy example of how to use a ``PathMapper``.
102105
# It is recommended that you put your functionality in a helper function, so that
103106
# it is more legible and can be unit tested.

requirements.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
chris_plugin>=0.3.0
2-
opencv-python
2+
opencv-python==4.11.0.86
33
pflog==1.2.26
44
pftel-client~=1.0.6
5-
keras-ocr==0.8.8
6-
tensorflow-cpu==2.17.0
5+
keras-ocr==0.9.3
6+
# tensorflow-cpu==2.17.0
7+
tensorflow==2.15

0 commit comments

Comments
 (0)