All Projects → hirohe → Facerec Python

hirohe / Facerec Python

个人毕业设计 - 基于树莓派、OpenCV及Python语言的人脸识别

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Facerec Python

Rpindvi
Raspberry PI NDVI Code
Stars: ✭ 57 (-70.77%)
Mutual labels:  raspberry-pi, opencv
Picamnn
Survelliance system with deep learning based people detection (YOLO)
Stars: ✭ 97 (-50.26%)
Mutual labels:  raspberry-pi, opencv
Opencv 3.2.0 Compiling On Raspberry Pi
Download, Compile, Build, and Install OpenCV 3.2.0 with Extra Modules on RPI running Jessie
Stars: ✭ 65 (-66.67%)
Mutual labels:  raspberry-pi, opencv
Facerec Lock
Face recognition to control servo lock using Raspberry Pi and OpenCV
Stars: ✭ 7 (-96.41%)
Mutual labels:  raspberry-pi, opencv
Yolo Powered robot vision
Stars: ✭ 133 (-31.79%)
Mutual labels:  raspberry-pi, opencv
Raspberryrobot
基于树莓派的智能机器人
Stars: ✭ 11 (-94.36%)
Mutual labels:  raspberry-pi, opencv
Ev3dev Lang Java
A project to learn Java and create software for Mindstorms Robots using hardware supported by EV3Dev & the LeJOS way.
Stars: ✭ 79 (-59.49%)
Mutual labels:  raspberry-pi, opencv
Mobilenet Ssd Realsense
[High Performance / MAX 30 FPS] RaspberryPi3(RaspberryPi/Raspbian Stretch) or Ubuntu + Multi Neural Compute Stick(NCS/NCS2) + RealSense D435(or USB Camera or PiCamera) + MobileNet-SSD(MobileNetSSD) + Background Multi-transparent(Simple multi-class segmentation) + FaceDetection + MultiGraph + MultiProcessing + MultiClustering
Stars: ✭ 322 (+65.13%)
Mutual labels:  raspberry-pi, opencv
Raspisecurity
Home Surveillance for Raspberry
Stars: ✭ 128 (-34.36%)
Mutual labels:  raspberry-pi, opencv
Arm Vo
Efficient monocular visual odometry for ground vehicles on ARM processors
Stars: ✭ 115 (-41.03%)
Mutual labels:  raspberry-pi, opencv
Pi Timolo
Raspberry PI-TIMOLO ( PI-TImelapse, MOtion, LOwLight ) uses RPI picamera and OpenCV for Remote Headless Security Monitoring using Motion Tracking, Rclone Auto Sync files with remote storage services. Auto Twilight Transitions and Low Light Camera Settings. Panoramic images using PanTiltHat and More. This project is featured on GitHub Awesome software.
Stars: ✭ 441 (+126.15%)
Mutual labels:  raspberry-pi, opencv
Sltk
An OpenCV-based structured light processing toolkit.
Stars: ✭ 151 (-22.56%)
Mutual labels:  raspberry-pi, opencv
Pibooth
The pibooth project provides a Photo Booth application out-of-the-box for Raspberry Pi and opencv compatible devices
Stars: ✭ 398 (+104.1%)
Mutual labels:  raspberry-pi, opencv
Smart Surveillance System Using Raspberry Pi
This is my Third Year Project for face recognition using OpenCV
Stars: ✭ 41 (-78.97%)
Mutual labels:  raspberry-pi, opencv
Libfaceid
libfaceid is a research framework for prototyping of face recognition solutions. It seamlessly integrates multiple detection, recognition and liveness models w/ speech synthesis and speech recognition.
Stars: ✭ 354 (+81.54%)
Mutual labels:  raspberry-pi, opencv
Openframeworks
openFrameworks is a community-developed cross platform toolkit for creative coding in C++.
Stars: ✭ 8,652 (+4336.92%)
Mutual labels:  raspberry-pi, opencv
Deeppicar
Deep Learning Autonomous Car based on Raspberry Pi, SunFounder PiCar-V Kit, TensorFlow, and Google's EdgeTPU Co-Processor
Stars: ✭ 242 (+24.1%)
Mutual labels:  raspberry-pi, opencv
Drowsiness detection
Stars: ✭ 250 (+28.21%)
Mutual labels:  raspberry-pi, opencv
Hiitpi
A workout trainer Dash/Flask app that helps track your HIIT workouts by analyzing real-time video streaming from your sweet Pi using machine learning and Edge TPU..
Stars: ✭ 106 (-45.64%)
Mutual labels:  raspberry-pi, opencv
Vidgear
A High-performance cross-platform Video Processing Python framework powerpacked with unique trailblazing features 🔥
Stars: ✭ 2,048 (+950.26%)
Mutual labels:  raspberry-pi, opencv

!该项目已停止维护!

facerec-python

个人毕业设计 - 基于树莓派、OpenCV及Python语言的人脸识别

简介

使用OpenCV for Python图像识别库,运行在树莓派RASPBIAN JESSIE Linux系统平台上,搭配树莓派官方摄像头模块。

运行要求

  1. OpenCV 2.4.9 for Python
  2. Python 2.7
  3. v4l2
  4. PyQt4

安装要求

sudo apt-get install build-essential cmake pkg-config python-dev libgtk2.0-dev libgtk2.0 zlib1g-dev libpng-dev libjpeg-dev libtiff-dev libjasper-dev libavcodec-dev swig unzip

 1. 启用v4l2

sudo nano /etc/modules
# 增加一行记录
bcm2835-v4l2
# 重启后可以找到/dev/video0

# 编译v4l2-util
apt-get install autoconf gettext libtool libjpeg8 libjpeg8-dev
git clone git://git.linuxtv.org/v4l-utils.git
cd v4l-utils/
sudo ./bootstrap.sh
./configure
make
sudo make install

 2. 编译OpenCV 2.4.9

wget https://jaist.dl.sourceforge.net/project/opencvlibrary/opencv-unix/2.4.9/opencv-2.4.9.zip
unzip opencv-2.4.9.zip
cd opencv-2.4.9/
cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_PERF_TESTS=OFF -DBUILD_opencv_gpu=OFF -DBUILD_opencv_ocl=OFF

# 要使OpenCV开启对v4l2的支持 cmake之后要有以下输出
# V4L/V4L2:                    Using libv4l (ver 1.13.0)

sudo make
sudo make install
  1. 安装PyQt4
sudo apt-get install python-qt4
  1. 运行
python main.py

注意

该示例运行的屏幕分辨率为竖屏480 x 800,可以修改 /boot/config.txt 的以下配置

config.txt配置说明

hdmi_cvt=800 480 60 6
hdmi_group=2
hdmi_mode=87
# 设置屏幕旋转角度
display_rotate=3
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].