We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Data models that represent bounding boxes are inconsistent, which considerably degrades readability. For example,
bbox: List[float] in the order of (y0, x0, y1, x1) at
bbox: List[float]
(y0, x0, y1, x1)
pdftotree/pdftotree/TreeExtract.py
Line 447 in 6ff4a7c
bbox: Tuple[float] in the order of (x0, y0, x1, y1) at
bbox: Tuple[float]
(x0, y0, x1, y1)
Line 456 in 6ff4a7c
word[1:]: List[float] in the order of (y0, x0, y1, x1) at
word[1:]: List[float]
Lines 458 to 463 in 6ff4a7c
To Reproduce
N/A
Expected behavior
I expect that they are consistent.
Error Logs/Screenshots
Environment (please complete the following information):
pdftotree
Additional context Add any other context about the problem here.
See discussions at #84 (comment)
The text was updated successfully, but these errors were encountered:
HiromuHota
No branches or pull requests
Describe the bug
Data models that represent bounding boxes are inconsistent, which considerably degrades readability.
For example,
bbox: List[float]
in the order of(y0, x0, y1, x1)
atpdftotree/pdftotree/TreeExtract.py
Line 447 in 6ff4a7c
bbox: Tuple[float]
in the order of(x0, y0, x1, y1)
atpdftotree/pdftotree/TreeExtract.py
Line 456 in 6ff4a7c
word[1:]: List[float]
in the order of(y0, x0, y1, x1)
atpdftotree/pdftotree/TreeExtract.py
Lines 458 to 463 in 6ff4a7c
To Reproduce
N/A
Expected behavior
I expect that they are consistent.
Error Logs/Screenshots
N/A
Environment (please complete the following information):
pdftotree
Version: 6ff4a7cAdditional context
Add any other context about the problem here.
See discussions at #84 (comment)
The text was updated successfully, but these errors were encountered: