A tool for extracting a text line image from the contour with different methods
Project description
Line image extractor
This is a tool and a library to be used for extracting line images. Built by Teklia and freely available as open-source under the MIT licence.
It supports different extraction methods:
- boundingRect - bounding rectangle of the line polygon
- polygon - exact polygon
- min_area_rect - minimum area rectangle containing the polygon
- deskew_polygon - deskew the polygon
- deskew_min_area_rect - deskew the minimum area rectangle
- skew_polygon - skew the polygon (rotate by some angle)
- skew_min_area_rect - skew the minimum area rectangle (rotate by some angle)
Install the library using stable version from Pypi:
pip install teklia-line-image-extractor
Install the library in development mode:
pip install -e .
Test extraction:
line-image-extractor -i tests/data/page_img.jpg -o out.jpg -p tests/data/line_polygon.json -e deskew_min_area_rect --color
How to use it?:
from pathlib import Path
import numpy as np
from line_image_extractor.extractor import extract, read_img, save_img
from line_image_extractor.image_utils import polygon_to_bbox
from line_image_extractor.image_utils import Extraction
page_img = read_img(Path("tests/data/page_img.jpg"))
polygon = np.asarray([[241, 1169], [2287, 1251], [2252, 1190], [244, 1091], [241, 1169]])
bbox = polygon_to_bbox(polygon)
extracted_img = extract(
page_img, polygon, bbox, Extraction.polygon
)
save_img("line_output.jpg", extracted_img)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for teklia-line-image-extractor-0.2.8rc2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef95f66e3468dbbf9593a56c387af30a313b9aa41e1ae92fda4a401e8c58761f |
|
MD5 | e997a619a5cd9763b96aab110591c7fc |
|
BLAKE2b-256 | 9152963255c41cb430cec68356c21396ae9d9668198aa3932cd73e94cb167702 |
Close
Hashes for teklia_line_image_extractor-0.2.8rc2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34aaec2b2f376244a24b53b774f9188f2599912bde68c87b494941bde62bf9f4 |
|
MD5 | 0afa136947f3d4cf51b7879c372c92dd |
|
BLAKE2b-256 | c6ce5c42da8c86f3d33735fe6c5e88043b54b5c6dc816105e48ef147f53e4f92 |