camelot-sharp
camelot-sharp copied to clipboard
A C# library to extract tabular data from PDFs (port of camelot Python version using PdfPig).
Results
1
camelot-sharp issues
Sort by
recently updated
recently updated
newest added
``` var doc = PdfDocument.Open(@"W:\OCR\foo.pdf", new ParsingOptions() { ClipPaths = true }); var page = doc.GetPage(1); Lattice lattice = new Lattice(new OpenCvImageProcesser(), new BasicSystemDrawingProcessor(), line_scale: 40); List tables = lattice.ExtractTables(page,...