https://github.com/hrkings/opencv-rs-splitline
A port of the C++ version of the multi-line splitting OpenCV code
https://github.com/hrkings/opencv-rs-splitline
Last synced: 3 months ago
JSON representation
A port of the C++ version of the multi-line splitting OpenCV code
- Host: GitHub
- URL: https://github.com/hrkings/opencv-rs-splitline
- Owner: HRKings
- Created: 2024-03-31T02:18:48.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-03T18:15:10.000Z (about 1 year ago)
- Last Synced: 2024-12-27T13:23:24.249Z (5 months ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenCV Rust Line Splitting
This is a simple port of the C++ version of the line splitting code of OpenCV.
It takes a text with multiple lines and write in the `output` folder the separate lines. (`src/lines.rs`)
Another version using bounding box is also provided, this version could in theory produce better results, and the rectangle returned can be used to embed the coordinates of the text in a PDF for example. (`src/main.rs`)