feat: added some post processing for retinaface

This commit is contained in:
uttarayan21
2025-07-17 16:18:29 +05:30
parent ff0ab99b55
commit dc43fd319a
9 changed files with 457 additions and 128 deletions

27
Cargo.lock generated
View File

@@ -246,6 +246,17 @@ version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
[[package]]
name = "bounding-box"
version = "0.1.0"
dependencies = [
"color",
"itertools 0.14.0",
"nalgebra",
"ndarray 0.16.1",
"num",
]
[[package]]
name = "built"
version = "0.7.7"
@@ -386,6 +397,12 @@ dependencies = [
"cc",
]
[[package]]
name = "color"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ae467d04a8a8aea5d9a49018a6ade2e4221d92968e8ce55a48c0b1164e5f698"
[[package]]
name = "color_quant"
version = "1.1.0"
@@ -478,6 +495,7 @@ dependencies = [
name = "detector"
version = "0.1.0"
dependencies = [
"bounding-box",
"clap",
"clap_complete",
"error-stack",
@@ -961,6 +979,15 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.15"