feat: implement the facenet implementation for ort

This commit is contained in:
uttarayan21
2025-08-18 13:20:55 +05:30
parent 5a1f4b9ef6
commit e7c9c38ed7
4 changed files with 62 additions and 19 deletions

View File

@@ -72,7 +72,7 @@ pub fn main() -> Result<()> {
Ok(())
}
fn run_detection<D, E>(detect: cli::Detect, mut retinaface: D, facenet: E) -> Result<()>
fn run_detection<D, E>(detect: cli::Detect, mut retinaface: D, mut facenet: E) -> Result<()>
where
D: facedet::FaceDetector,
E: faceembed::FaceEmbedder,