feat: Added facenet
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
use crate::errors::*;
|
||||
use ndarray::{Array1, ArrayView3};
|
||||
use ndarray::{Array1, Array2, ArrayView3, ArrayView4};
|
||||
use std::path::Path;
|
||||
|
||||
#[derive(Debug)]
|
||||
@@ -36,4 +36,8 @@ impl EmbeddingGenerator {
|
||||
pub fn embedding(&self, roi: ArrayView3<u8>) -> Result<Array1<u8>> {
|
||||
todo!()
|
||||
}
|
||||
|
||||
pub fn embeddings(&self, roi: ArrayView4<u8>) -> Result<Array2<u8>> {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user