feat: Remove bbox crate and use 1024 for image size

This commit is contained in:
uttarayan21
2025-08-05 18:14:31 +05:30
parent 06fb0b4487
commit 043a845fc1
10 changed files with 89 additions and 839 deletions

View File

@@ -34,7 +34,7 @@ pub fn main() -> Result<()> {
for bbox in output.bbox {
tracing::info!("Detected face: {:?}", bbox);
use bounding_box::draw::*;
array.draw(bbox, color::palette::css::GREEN_YELLOW.to_rgba8(), 10);
array.draw(bbox, color::palette::css::GREEN_YELLOW.to_rgba8(), 1);
}
let v = array.view();
if let Some(output) = detect.output {