✍️
Hand Movement Tracking
This code helps you to understand and track your hand movement using webcam.
Code Requirements 🦄
The example code is in Python (version 2.7 or higher will work). You need to install opencv library
pip install requirements.txt
✏️
Description To perform video tracking an algorithm analyzes sequential video frames and outputs the movement of targets between the frames. There are a variety of algorithms, each having strengths and weaknesses. Considering the intended use is important when choosing which algorithm to use. There are two major components of a visual tracking system: target representation and localization, as well as filtering and data association.
Video tracking is the process of locating a moving object (or multiple objects) over time using a camera. It has a variety of uses, some of which are: human-computer interaction, security and surveillance, video communication and compression, augmented reality, traffic control, medical imaging and video editing.
For more information, see
Execution 🐉
To run the code, type python Write.py
python Write.py
📊
Results Hand Movement | Version 1
Hand Movement | Version 2