From fc079968cf3d84bb7c502929d1e0b27c7a5d3b6c Mon Sep 17 00:00:00 2001 From: fria <138676274+friadev@users.noreply.github.com> Date: Thu, 16 Jan 2025 11:05:20 -0600 Subject: [PATCH] add more info for model-based and model-free --- blog/posts/biometrics-explained.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/blog/posts/biometrics-explained.md b/blog/posts/biometrics-explained.md index fed51d22..4add4ab0 100644 --- a/blog/posts/biometrics-explained.md +++ b/blog/posts/biometrics-explained.md @@ -138,10 +138,16 @@ This techology can work using only 2D footage and doesn't even require close pro This type of biometric can work without your consent and when other identifiable features such as face and fingerprints are hidden. It's also very difficult to impersonate someone else's gait. +There are two approaches for extracting biometric data from video. + #### Model-based +This approach attempts to model the human body in order to track the different parts of it. A well-known example of this approach is the Microsoft Kinect, which only consists of a fairly low-resolution camera. It simplifies the human body into a stick figure, which you can see in footage of the Kinect in action. It then uses the distances and joint angles of the model for gait recognition. + #### Model-free +Model-free approaches don't try to model the human body but instead use the whole motion of human silhouettes. This gives a few advantages, namely it works regardless of camera quality and it takes significantly fewer resources. + ### Accelerometer Accelerometers such as those found in your smartphone can also be used for gait recognition.