mod utils;
use clap::Parser;
use oar_ocr::predictors::TextLineOrientationPredictor;
use oar_ocr::utils::load_image;
use std::path::PathBuf;
use std::time::Instant;
use tracing::{error, info, warn};
use utils::device_config::parse_device_config;
use utils::visualization::{ClassificationVisConfig, save_rgb_image, visualize_classification};
#[derive(Parser)]
#[command(name = "text_line_orientation")]
#[command(about = "Text Line Orientation Classification Example - detects text line rotation")]
struct Args {
#[arg(short, long)]
model_path: PathBuf,
#[arg(required = true)]
images: Vec<PathBuf>,
#[arg(short, long)]
output_dir: Option<PathBuf>,
#[arg(long)]
vis: bool,
#[arg(long, default_value = "cpu")]
device: String,
#[arg(long, default_value = "0.5")]
score_thresh: f32,
#[arg(long, default_value = "2")]
topk: usize,
#[arg(long, default_value = "80")]
input_height: u32,
#[arg(long, default_value = "160")]
input_width: u32,
#[arg(short, long)]
verbose: bool,
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
utils::init_tracing();
let args = Args::parse();
info!("Text Line Orientation Classification Example");
if !args.model_path.exists() {
error!("Model file not found: {}", args.model_path.display());
return Err("Model file not found".into());
}
let existing_images: Vec<PathBuf> = args
.images
.iter()
.filter(|path| {
let exists = path.exists();
if !exists {
error!("Image file not found: {}", path.display());
}
exists
})
.cloned()
.collect();
if existing_images.is_empty() {
error!("No valid image files found");
return Err("No valid image files found".into());
}
info!("Using device: {}", args.device);
let ort_config = parse_device_config(&args.device)?.unwrap_or_default();
if ort_config.execution_providers.is_some() {
info!("CUDA execution provider configured successfully");
}
if args.verbose {
info!("Classification Configuration:");
info!(" Score threshold: {}", args.score_thresh);
info!(" Top-k: {}", args.topk);
info!(
" Input shape: ({}, {})",
args.input_height, args.input_width
);
}
if args.verbose {
info!("Building text line orientation classifier predictor...");
info!(" Model: {}", args.model_path.display());
}
let predictor = TextLineOrientationPredictor::builder()
.score_threshold(args.score_thresh)
.topk(args.topk)
.input_shape((args.input_height, args.input_width))
.with_ort_config(ort_config)
.build(&args.model_path)?;
info!("Text line orientation classifier predictor built successfully");
info!("Processing {} images...", existing_images.len());
let mut images = Vec::new();
for image_path in &existing_images {
match load_image(image_path) {
Ok(rgb_img) => {
if args.verbose {
info!(
"Loaded image: {} ({}x{})",
image_path.display(),
rgb_img.width(),
rgb_img.height()
);
}
images.push(rgb_img);
}
Err(e) => {
error!("Failed to load image {}: {}", image_path.display(), e);
continue;
}
}
}
if images.is_empty() {
error!("No images could be loaded for processing");
return Err("No images could be loaded".into());
}
info!("Running text line orientation classification...");
let start = Instant::now();
let output = predictor.predict(images.clone())?;
let duration = start.elapsed();
info!(
"Classification completed in {:.2}ms",
duration.as_secs_f64() * 1000.0
);
info!("\n=== Classification Results ===");
for (idx, (image_path, classifications)) in existing_images
.iter()
.zip(output.orientations.iter())
.enumerate()
{
info!("\nImage {}: {}", idx + 1, image_path.display());
if classifications.is_empty() {
warn!(" No predictions available");
} else {
let top = &classifications[0];
info!(" Detected orientation: {}", top.label);
info!(" Confidence: {:.2}%", top.score * 100.0);
if args.verbose && classifications.len() > 1 {
info!(" All predictions:");
for (rank, c) in classifications.iter().enumerate() {
info!(" [{}] {} - {:.2}%", rank + 1, c.label, c.score * 100.0);
}
}
}
}
if args.vis {
let output_dir = args
.output_dir
.as_ref()
.ok_or("--output-dir is required when --vis is enabled")?;
std::fs::create_dir_all(output_dir)?;
info!("\nSaving visualizations to: {}", output_dir.display());
let vis_config = ClassificationVisConfig::default();
for (image_path, rgb_img, classifications) in existing_images
.iter()
.zip(images.iter())
.zip(output.orientations.iter())
.map(|((path, img), classifications)| (path, img, classifications))
{
if !classifications.is_empty() {
let top = &classifications[0];
let label = top.label.to_string();
let output_filename = image_path
.file_name()
.and_then(|s| s.to_str())
.unwrap_or("unknown.jpg");
let output_path = output_dir.join(output_filename);
let visualized = visualize_classification(
rgb_img,
&label,
top.score,
"Text Line Orientation",
&vis_config,
);
save_rgb_image(&visualized, &output_path)
.map_err(|e| format!("Failed to save visualization: {}", e))?;
info!(" Saved: {}", output_path.display());
} else {
warn!(
" Skipping visualization for {} (no predictions)",
image_path.display()
);
}
}
}
Ok(())
}