All Projects → 1zlab → 1zlab_face_track_robot

1zlab / 1zlab_face_track_robot

Licence: gpl-3.0
二自由度云台实现人脸追踪。 首先是使用一款名字叫做IP摄像头的APP 采集手机摄像头的图像,在手机上建立一个视频流服务器。在局域网下,PC通过IP还有端口号获取图像。使用OpenCV的人脸检测的API获取人脸在画面中的位置,根据人脸位置距离画面中心的x轴与y轴的偏移量(offset) ,通过P比例控制(PID控制中最简单的一种)控制二自由度云台上臂与下臂的旋转角度,将角度信息通过串口通信UART发送给ESP32单片机(不限于ESP32,STM32,Arduino都可以)解析执行对应的操作,从而使得人脸尽可能处在画面的正中间。

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to 1zlab face track robot

jeelizGlanceTracker
JavaScript/WebGL lib: detect if the user is looking at the screen or not from the webcam video feed. Lightweight and robust to all lighting conditions. Great for play/pause videos if the user is looking or not, or for person detection. Link to live demo.
Stars: ✭ 68 (-33.98%)
Mutual labels:  face-detection, face-tracking
Deep-Learning
This repo provides projects on deep-learning mainly using Tensorflow 2.0
Stars: ✭ 22 (-78.64%)
Mutual labels:  face-detection, face-tracking
T System
the moving objects tracking system via two axis camera motion (and as optionally n joint robotic arm) for raspberry pi distributions
Stars: ✭ 17 (-83.5%)
Mutual labels:  face-detection, face-tracking
FXFaceDetection
Real-Time Face Detection App using Computer Vision & JavaFX
Stars: ✭ 50 (-51.46%)
Mutual labels:  face-detection, face-tracking
Brfv4 javascript examples
BRFv4 - HTML5/Javascript - examples project. Reference implementation for all other platform example packages.
Stars: ✭ 460 (+346.6%)
Mutual labels:  face-detection, face-tracking
brfv4 android examples
Android Studio project (Java)
Stars: ✭ 43 (-58.25%)
Mutual labels:  face-detection, face-tracking
android-face-landmarks
Android app that localizes facial landmarks in nearly real-time
Stars: ✭ 62 (-39.81%)
Mutual labels:  face-detection, face-tracking
Facenet Pytorch
Pretrained Pytorch face detection (MTCNN) and facial recognition (InceptionResnet) models
Stars: ✭ 2,564 (+2389.32%)
Mutual labels:  face-detection, face-tracking
Drishti
Real time eye tracking for embedded and mobile devices.
Stars: ✭ 325 (+215.53%)
Mutual labels:  face-detection, face-tracking
brfv4 win examples
Windows C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 13 (-87.38%)
Mutual labels:  face-detection, face-tracking
quickstart-android
Quick start examples for Banuba Face AR SDK on Android
Stars: ✭ 17 (-83.5%)
Mutual labels:  face-detection, face-tracking
Brfv4 mac examples
macOS C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 25 (-75.73%)
Mutual labels:  face-detection, face-tracking
Awesome Face recognition
papers about Face Detection; Face Alignment; Face Recognition && Face Identification && Face Verification && Face Representation; Face Reconstruction; Face Tracking; Face Super-Resolution && Face Deblurring; Face Generation && Face Synthesis; Face Transfer; Face Anti-Spoofing; Face Retrieval;
Stars: ✭ 3,220 (+3026.21%)
Mutual labels:  face-detection, face-tracking
ARFaceFilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 72 (-30.1%)
Mutual labels:  face-detection, face-tracking
Openseeface
Robust realtime face and facial landmark tracking on CPU with Unity integration
Stars: ✭ 216 (+109.71%)
Mutual labels:  face-detection, face-tracking
Face-Detection-and-Tracking
Computer Vision model to detect face in the first frame of a video and to continue tracking it in the rest of the video. This is implemented in OpenCV 3.3.0 and Python 2.7
Stars: ✭ 24 (-76.7%)
Mutual labels:  face-detection, face-tracking
Jeelizfacefilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 2,042 (+1882.52%)
Mutual labels:  face-detection, face-tracking
Facemoji Kit
Face tracker with blend shapes coefficients, 3D head pose and dense mesh in real-time on iOS, Android, Mac, PC and Linux.
Stars: ✭ 158 (+53.4%)
Mutual labels:  face-detection, face-tracking
Computer-Vision
Cool Vision projects
Stars: ✭ 51 (-50.49%)
Mutual labels:  face-detection, face-tracking
Jeelizweboji
JavaScript/WebGL real-time face tracking and expression detection library. Build your own emoticons animated in real time in the browser! SVG and THREE.js integration demos are provided.
Stars: ✭ 835 (+710.68%)
Mutual labels:  face-detection, face-tracking

舵机云台人脸追踪-1Z实验室

出品:1Z实验室 (1ZLAB: Make Things Easy)

关键词: MicroPython-ESP32Python-OpenCV人脸检测 Face Detection人脸追踪 Face Trak

项目介绍

首先是使用一款名字叫做IP摄像头的APP 采集手机摄像头的图像,在手机上建立一个视频流服务器。在局域网下,PC通过IP还有端口号获取图像。使用OpenCV的人脸检测的API获取人脸在画面中的位置,根据人脸位置距离画面中心的x轴与y轴的偏移量(offset) ,通过P比例控制(PID控制中最简单的一种)控制二自由度云台上臂与下臂的旋转角度,将角度信息通过串口通信UART发送给ESP32单片机(不限于ESP32,STM32,Arduino都可以)解析执行对应的操作,从而使得人脸尽可能处在画面的正中间

人脸追踪

课程目录

人脸追踪 视频链接: 【OpenCV基础教程】3.人脸追踪-舵机云台比例控制(1Z实验室)

追踪算法

人脸追踪-舵机云台比例控制-1Z实验室

图像处理

IP摄像头APP与OpenCV视频流读取-1Z实验室

OpenCV人脸检测-1Z实验室

B站视频【OpenCV基础教程】2.人脸检测初探(1Z实验室)

MicroPython-ESP32

MicroPython-ESP32固件烧录-1Z实验室

用ESP32-MicroPython点亮一个LED-1Z实验室

MicroPython-ESP32串口通信-1Z实验室

PCA9685舵机控制板与MicroPython-ESP32-1Z实验室

零配件采购参考

舵机云台人脸追踪-零配件采购手册-1Z实验室

推广

出品:1Z实验室 (1ZLAB: Make Things Easy)

1Z实验室 Make Things Easy . 致力于在机器人+计算机视觉+人工智能的重叠区域, 制作小白友好的教程.

wechat

qq

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].