xycut_plus_plus/
lib.rs

1//! # XY-Cut++
2//!
3//! A high-performance reading order detection algorithm for document layout analysis
4//! https://arxiv.org/pdf/2504.10258
5//! Original Authors:
6//! Shuai Liu, shuai liu@tju.edu.cn
7//! Youmeng Li*, liyoumeng@tju.edu.cn
8//! Jizeng Wei, weijizeng@tju.edu.cn
9
10pub mod core;
11pub mod histogram;
12pub mod matching;
13pub mod traits;
14pub mod utils;
15
16pub use core::{XYCutPlusPlus, XYCutConfig};
17pub use traits::BoundingBox;
18
19#[cfg(test)]
20mod tests {
21    use super::*;
22
23    #[test]
24    fn it_works() {
25        // TODO: Add real tests
26    }
27}