AD
Ayush Dabey
Full Stack Developer

Computer Vision & AI enthusiast with expertise in full-stack development. Passionate about creating innovative solutions that blend technology and creativity.

Skills: Next.js, TensorFlow, Computer Vision, React, Node.js

VISIONAT

Advanced Movement & Face Detection

CAMERA STREAM

LIVE DETECTION FEED
Gesture: None
Ready to Detect. Click START to begin.

DETECTION STATS

Movements
0
Hands
0
Faces
0
Gestures
0
Confidence
0%
FPS
0

SYSTEM LOGS

[18:34:57 PM] >>> Movement detection ready
[18:35:02 PM] System initialized
[18:35:05 PM] TensorFlow.js backend: WebGL

FACE DETECTION ALGORITHM

faceDetection.js
1 // Face detection function
2 async function detectFaces() {
3 const predictions = await faceModel.estimateFaces(video);
4 for (const face of predictions) {
5 const box = face.boundingBox;
6 drawSquare(box.x, box.y, box.width, box.height);
7 drawLandmarks(face.landmarks);
8 }
9 }