2022-03-01 13:04:01 +01:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
#![allow(improper_ctypes)]
|
|
|
|
#![allow(deref_nullptr)]
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------------------------
|
|
|
|
// LINKING
|
|
|
|
// -------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#[link(name = "mediagraph")]
|
|
|
|
extern "C" {}
|
|
|
|
|
|
|
|
use opencv::prelude::*;
|
|
|
|
use std::ffi::CString;
|
|
|
|
|
|
|
|
mod bindings;
|
|
|
|
|
|
|
|
pub use bindings::*;
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
type Mediagraph = mediagraph_Mediagraph;
|
|
|
|
type Landmark = mediagraph_Landmark;
|
|
|
|
|
2022-03-01 13:04:01 +01:00
|
|
|
impl Default for Landmark {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
x: 0.0,
|
|
|
|
y: 0.0,
|
|
|
|
z: 0.0,
|
|
|
|
visibility: 0.0,
|
|
|
|
presence: 0.0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
struct Pose {
|
|
|
|
data: [Landmark; 33],
|
|
|
|
}
|
|
|
|
|
2022-03-01 13:04:01 +01:00
|
|
|
impl Default for Pose {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
data: [Landmark::default(); 33],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
struct Hand {
|
|
|
|
data: [Landmark; 21],
|
|
|
|
}
|
|
|
|
|
2022-03-01 13:04:01 +01:00
|
|
|
impl Default for Hand {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
data: [Landmark::default(); 21],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
struct FaceMesh {
|
|
|
|
data: [Landmark; 478],
|
|
|
|
}
|
|
|
|
|
2022-03-01 13:04:01 +01:00
|
|
|
impl Default for FaceMesh {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
data: [Landmark::default(); 478],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod pose {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub enum PoseLandmark {
|
|
|
|
NOSE = 0,
|
|
|
|
LEFT_EYE_INNER = 1,
|
|
|
|
LEFT_EYE = 2,
|
|
|
|
LEFT_EYE_OUTER = 3,
|
|
|
|
RIGHT_EYE_INNER = 4,
|
|
|
|
RIGHT_EYE = 5,
|
|
|
|
RIGHT_EYE_OUTER = 6,
|
|
|
|
LEFT_EAR = 7,
|
|
|
|
RIGHT_EAR = 8,
|
|
|
|
MOUTH_LEFT = 9,
|
|
|
|
MOUTH_RIGHT = 10,
|
|
|
|
LEFT_SHOULDER = 11,
|
|
|
|
RIGHT_SHOULDER = 12,
|
|
|
|
LEFT_ELBOW = 13,
|
|
|
|
RIGHT_ELBOW = 14,
|
|
|
|
LEFT_WRIST = 15,
|
|
|
|
RIGHT_WRIST = 16,
|
|
|
|
LEFT_PINKY = 17,
|
|
|
|
RIGHT_PINKY = 18,
|
|
|
|
LEFT_INDEX = 19,
|
|
|
|
RIGHT_INDEX = 20,
|
|
|
|
LEFT_THUMB = 21,
|
|
|
|
RIGHT_THUMB = 22,
|
|
|
|
LEFT_HIP = 23,
|
|
|
|
RIGHT_HIP = 24,
|
|
|
|
LEFT_KNEE = 25,
|
|
|
|
RIGHT_KNEE = 26,
|
|
|
|
LEFT_ANKLE = 27,
|
|
|
|
RIGHT_ANKLE = 28,
|
|
|
|
LEFT_HEEL = 29,
|
|
|
|
RIGHT_HEEL = 30,
|
|
|
|
LEFT_FOOT_INDEX = 31,
|
|
|
|
RIGHT_FOOT_INDEX = 32,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PoseDetector {
|
|
|
|
pub mode: bool, // false
|
|
|
|
pub smooth: bool, // true,
|
|
|
|
pub detection_con: f32, // 0.5
|
|
|
|
pub track_con: f32, // 0.5
|
2022-06-07 07:06:03 +02:00
|
|
|
pub graph: *mut Mediagraph,
|
2022-03-01 13:04:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PoseDetector {
|
|
|
|
pub fn new(mode: bool, smooth: bool, detection_con: f32, track_con: f32) -> Self {
|
|
|
|
let graph_config =
|
|
|
|
CString::new(include_str!("pose_tracking_cpu.txt")).expect("CString::new failed");
|
|
|
|
let output_node = CString::new("pose_landmarks").expect("CString::new failed");
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
let graph: *mut Mediagraph = unsafe {
|
|
|
|
Mediagraph::Create(
|
|
|
|
mediagraph_GraphType_POSE,
|
|
|
|
graph_config.as_ptr(),
|
|
|
|
output_node.as_ptr(),
|
|
|
|
)
|
|
|
|
};
|
2022-03-01 13:04:01 +01:00
|
|
|
|
|
|
|
Self {
|
|
|
|
mode,
|
|
|
|
smooth,
|
|
|
|
detection_con,
|
|
|
|
track_con,
|
|
|
|
graph,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
pub fn process(&mut self, input: &Mat) -> bool {
|
|
|
|
let mut data = input.clone();
|
|
|
|
let landmarks = unsafe {
|
|
|
|
mediagraph_Mediagraph_Process(
|
|
|
|
self.graph as *mut std::ffi::c_void,
|
|
|
|
data.data_mut(),
|
|
|
|
data.cols(),
|
|
|
|
data.rows(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
// @todo read each landmark to build a pose struct
|
|
|
|
true
|
2022-03-01 13:04:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for PoseDetector {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new(false, true, 0.5, 0.5)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod face_mesh {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub struct FaceMeshDetector {
|
|
|
|
pub static_mode: bool, // false
|
|
|
|
pub max_faces: usize, // 2
|
|
|
|
pub min_detection_con: f32, // 0.5
|
|
|
|
pub min_track_con: f32, // 0.5
|
2022-06-07 07:06:03 +02:00
|
|
|
pub graph: *mut Mediagraph,
|
2022-03-01 13:04:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FaceMeshDetector {
|
|
|
|
pub fn new(
|
|
|
|
static_mode: bool,
|
|
|
|
max_faces: usize,
|
|
|
|
min_detection_con: f32,
|
|
|
|
min_track_con: f32,
|
|
|
|
) -> Self {
|
|
|
|
let graph_config = CString::new(include_str!("face_mesh_desktop_live.txt"))
|
|
|
|
.expect("CString::new failed");
|
|
|
|
let output_node = CString::new("multi_face_landmarks").expect("CString::new failed");
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
let graph: *mut Mediagraph = unsafe {
|
|
|
|
Mediagraph::Create(
|
|
|
|
mediagraph_GraphType_FACE,
|
|
|
|
graph_config.as_ptr(),
|
|
|
|
output_node.as_ptr(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2022-03-01 13:04:01 +01:00
|
|
|
Self {
|
|
|
|
static_mode,
|
|
|
|
max_faces,
|
|
|
|
min_detection_con,
|
|
|
|
min_track_con,
|
|
|
|
graph,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
pub fn process(&mut self, input: Mat) -> bool {
|
|
|
|
let mut data = input.clone();
|
|
|
|
let landmarks = unsafe {
|
|
|
|
mediagraph_Mediagraph_Process(
|
|
|
|
self.graph as *mut std::ffi::c_void,
|
|
|
|
data.data_mut(),
|
|
|
|
data.cols(),
|
|
|
|
data.rows(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
// @todo read each landmark to build a face mesh struct
|
|
|
|
true
|
2022-03-01 13:04:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for FaceMeshDetector {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new(false, 2, 0.5, 0.5)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod hands {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub enum HandLandmark {
|
|
|
|
WRIST = 0,
|
|
|
|
THUMB_CMC = 1,
|
|
|
|
THUMB_MCP = 2,
|
|
|
|
THUMB_IP = 3,
|
|
|
|
THUMB_TIP = 4,
|
|
|
|
INDEX_FINGER_MCP = 5,
|
|
|
|
INDEX_FINGER_PIP = 6,
|
|
|
|
INDEX_FINGER_DIP = 7,
|
|
|
|
INDEX_FINGER_TIP = 8,
|
|
|
|
MIDDLE_FINGER_MCP = 9,
|
|
|
|
MIDDLE_FINGER_PIP = 10,
|
|
|
|
MIDDLE_FINGER_DIP = 11,
|
|
|
|
MIDDLE_FINGER_TIP = 12,
|
|
|
|
RING_FINGER_MCP = 13,
|
|
|
|
RING_FINGER_PIP = 14,
|
|
|
|
RING_FINGER_DIP = 15,
|
|
|
|
RING_FINGER_TIP = 16,
|
|
|
|
PINKY_MCP = 17,
|
|
|
|
PINKY_PIP = 18,
|
|
|
|
PINKY_DIP = 19,
|
|
|
|
PINKY_TIP = 20,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct HandDetector {
|
|
|
|
pub mode: bool,
|
|
|
|
pub max_hands: usize,
|
|
|
|
pub detection_con: f32, // 0.5
|
|
|
|
pub min_track_con: f32, // 0.5
|
2022-06-07 07:06:03 +02:00
|
|
|
pub graph: *mut Mediagraph,
|
2022-03-01 13:04:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl HandDetector {
|
|
|
|
pub fn new(mode: bool, max_hands: usize, detection_con: f32, min_track_con: f32) -> Self {
|
|
|
|
let graph_config = CString::new(include_str!("hand_tracking_desktop_live.txt"))
|
|
|
|
.expect("CString::new failed");
|
|
|
|
let output_node = CString::new("hand_landmarks").expect("CString::new failed");
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
let graph: *mut Mediagraph = unsafe {
|
|
|
|
Mediagraph::Create(
|
|
|
|
mediagraph_GraphType_FACE,
|
|
|
|
graph_config.as_ptr(),
|
|
|
|
output_node.as_ptr(),
|
|
|
|
)
|
|
|
|
};
|
2022-03-01 13:04:01 +01:00
|
|
|
|
|
|
|
Self {
|
|
|
|
mode,
|
|
|
|
max_hands,
|
|
|
|
detection_con,
|
|
|
|
min_track_con,
|
|
|
|
graph,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 07:06:03 +02:00
|
|
|
pub fn process(&mut self, input: Mat) -> bool {
|
|
|
|
let mut data = input.clone();
|
|
|
|
let landmarks = unsafe {
|
|
|
|
mediagraph_Mediagraph_Process(
|
|
|
|
self.graph as *mut std::ffi::c_void,
|
|
|
|
data.data_mut(),
|
|
|
|
data.cols(),
|
|
|
|
data.rows(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
// @todo read each landmark to build a hands struct
|
|
|
|
true
|
2022-03-01 13:04:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for HandDetector {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new(false, 2, 0.5, 0.5)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|