-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bug, missing __init__.py in demo
Causing ModuleNotFound exception.
- Loading branch information
Eric Ihli
committed
Dec 28, 2020
1 parent
f77c685
commit 4920546
Showing
5 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -806,6 +806,10 @@ This demo starts from an image rather than from a PDF. The concepts should still | |
|
||
The ~main~ function of ~extract_tables~ takes a list of filepaths of images. It will attempt to find bounding boxes of all tables in the images and return a list of tuples of (<image filepath>, <list of filepaths of found and cropped out tables>) | ||
|
||
#+BEGIN_SRC python :tangle table_ocr/demo/__init__.py :mkdirp yes | ||
|
||
#+END_SRC | ||
|
||
#+NAME: demo main | ||
#+BEGIN_SRC python :tangle table_ocr/demo/__main__.py :mkdirp yes :noweb yes | ||
<<demo imports>> | ||
|
@@ -881,7 +885,7 @@ with open(os.path.join(this_dir, "README.txt"), encoding="utf-8") as f: | |
|
||
setuptools.setup( | ||
name="table_ocr", | ||
version="0.2.4", | ||
version="0.2.5", | ||
author="Eric Ihli", | ||
author_email="[email protected]", | ||
description="Extract text from tables in images.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
setuptools.setup( | ||
name="table_ocr", | ||
version="0.2.4", | ||
version="0.2.5", | ||
author="Eric Ihli", | ||
author_email="[email protected]", | ||
description="Extract text from tables in images.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|