layout-parser icon indicating copy to clipboard operation
layout-parser copied to clipboard

A Unified Toolkit for Deep Learning Based Document Image Analysis

Results 118 layout-parser issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to OCR a simple table using a code inspired in the [tutorial](https://layout-parser.readthedocs.io/en/latest/example/parse_ocr/index.html). I am getting an error on this line: ocr_agent = lp.GCVAgent.with_credential(key.json, languages = ['es'])...

bug

Before someone sends me to the model training repo, please let me just explain. I want to fine tune the existing model, say `PubLayNet/faster_rcnn_R_50_FPN_3x` model for my own task **BUT**...

Hi, would it be good to put the layout-parser in conda-forge? we use the conda virtual environment around here best

getsize() is deprecated and replaced with getbbox() in Pillow>=10.0.1 I replaced it in visualization.py such that it works with both newer and older Pillow versions. There are other instances that...

I get the above assert when loading any config from the model zoo. The above example was thrown from the code below model = lp.Detectron2LayoutModel(config_path='lp://PubLayNet/faster_rcnn_R_50_FPN_3x/config', extra_config=["MODEL.ROI_HEADS.SCORE_THRESH_TEST", 0.8], label_map={0: "Text", 1:...

bug

**Describe the bug** A clear and concise description of what the bug is. **Checklist** 1. I have searched related issues but cannot get the expected help. 2. The bug has...

bug

I was working on layout parsing and saw that there was not a proper example on using tesseract ocr engine. This PR would add : 1. Example notebook for using...

The first sentence twice says "aims to", this removes the 2nd iteration, improving legilibity.

--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () 1 # load model ----> 2 model = lp.PaddleDetectionLayoutModel(config_path="lp://PubLayNet/ppyolov2_r50vd_dcn_365e/config", 3 threshold=0.5, 4 label_map={0: "Text", 1: "Title", 2: "List", 3:"Table", 4:"Figure"},...

bug

Hi Team, I am using layout parser & detectron2 to detect everything i.e. text, tables, title, list but not figures from the pdf(which I converted into image using pdf2image). I...

bug