- Get link
- X
- Other Apps
Gesture Controlled AR Car Viewer using Python This project demonstrates how to interact with a 3D car model using hand gestures in Augmented Reality using Python, MediaPipe and PyRender. Features Real-time hand gesture tracking 3D AR model viewer Wireframe inspection mode Engine inspection mode Two finger explode animation Finger based model rotation Required Libraries Copy Code pip install opencv-python mediapipe numpy pyrender trimesh Copy the command above and run it in your terminal before running the project. How the System Works The webcam captures hand gestures. MediaPipe detects finger landmarks and based on finger positions the system loads different 3D models like car view, engine view or wireframe inspection. Python Code Copy Code import cv2 import mediapipe as mp import numpy as np import trimesh import pyrender import math # ============================= # MODEL PATHS # ============================= CAR_PATH...