
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
metaidigitcv is an advanced computer vision and machine learning library designed to detect, track, and analyze hand keypoints using MediaPipe and OpenCV. Whether you're building interactive applications, gesture-based controls, or AI-powered hand recognition systems, metaidigitcv simplifies the process with efficient hand tracking and keypoint extraction.
✅ Hand Detection – Accurately detects multiple hands in real-time.
✅ Landmark Tracking – Tracks 21 keypoints per hand.
✅ Finger Recognition – Identifies raised fingers for gesture recognition.
✅ Distance Measurement – Computes distance between two keypoints.
✅ Optimized Performance – Uses MediaPipe for fast processing.
pip install metaidigitcv
Ensure you have OpenCV and MediaPipe installed:
pip install opencv-python mediapipe numpy
import cv2
from metaidigitcv.main import Handtracker
# Initialize the tracker
detector = Handtracker()
# Capture video
cap = cv2.VideoCapture(0)
while True:
success, img = cap.read()
if not success:
break
hands, img = detector.identifyHands(img)
if hands:
lmList = hands[0]["lmList"] # List of hand landmarks
print("Thumb Tip Position:", lmList[4])
cv2.imshow("Hand Tracking", img)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
hands, img = detector.identifyHands(img, draw=True)
draw=True
.lmList, bbox = detector.trackPosition(img)
fingers = detector.trackRaisedFingers(hands[0])
[1, 0, 1, 1, 0]
where 1
means the finger is up.length, img, points = detector.trackDistance(4, 8, img)
🔹 Gesture-based UI controls 🎮
🔹 Sign language recognition 🤟
🔹 Virtual painting & drawing 🎨
🔹 Touchless interaction systems 🤖
🔹 AI-powered hand gesture games 🎭
This project is licensed under the MIT License – see the LICENSE file for details.
We welcome contributions! Feel free to fork the repository and submit a pull request.
👤 Author: Suhal Samad
✉️ Email: samadsuhal@gmail.com
If you like metaidigitcvcv, don't forget to ⭐ the repository!
🚀 Let's build amazing hand-tracking applications together! 🚀
FAQs
computer vision and machine learning library
We found that metaidigitcv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.