资源简介
运用opencv数据库底下的haar-like特征分类器,在jetson nano上配合csi摄像头(usb和ip摄像头不行)实现人脸识别。
代码片段和文件信息
# MIT License
# Copyright (c) 2019 JetsonHacks
# See LICENSE for OpenCV license and additional information
# https://docs.opencv.org/3.3.1/d7/d8b/tutorial_py_face_detection.html
# On the Jetson Nano OpenCV comes preinstalled
# Data files are in /usr/sharc/OpenCV
import numpy as np
import cv2
# gstreamer_pipeline returns a GStreamer pipeline for capturing from the CSI camera
# Defaults to 1280x720 @ 30fps
# Flip the image by setting the flip_method (most common values: 0 and 2)
# display_width and display_height determine the size of the window on the screen
def gstreamer_pipeline(
capture_width=3280
capture_height=2464
display_width=820
display_height=616
framerate=21
flip_method=0
):
return (
“nvarguscamerasrc ! “
“video/x-raw(memory:NVMM) “
“width=(int)%d height=(int)%d “
“format=(string)NV12 framerate=(fraction)%d/1 ! “
“nvvidconv flip-method=%d ! “
“video/x-raw width=(int)%d height=(int)%d format=(string)BGRx ! “
“videoconvert ! “
“video/x-raw format=(string)BGR ! appsink“
% (
capture_width
capture_height
framerate
flip_method
display_width
display_height
)
)
def face_detect():
face_cascade = cv2.CascadeClassifier(
“./haar/haarcascade_frontalface_default.xml“
)
eye_cascade = cv2.CascadeClassifier(
“
- 上一篇:计算自己构建数据集的均值和方差
- 下一篇:LSTM股价预测(python).zip
相关资源
- python3.5 百度ai人脸识别
- python基于人脸检测和人脸识别
- Python-pytorch实现的人脸检测和人脸识别
- dlib-19.18.0-cp37-cp37m-linux_armv7l.whl
- 人脸识别算法,双2D2DPCALBP余弦相似度
- MATLAB版本的2Dpca和欧式距离算法
- Python-PCA降维人脸识别,已包含yale数据
- 人脸识别算法 python
- dlib18.17 编译好的python-dlib库 不需要
- python人脸识别截取
- 人脸识别图片集(刘德华吴彦祖)
- 利用python和opencv进行人脸识别
- 人脸识别-python-特征脸-PCA
- opencv3+python人脸检测和识别- 完整实战
- 人脸识别python代码187268
- opencv3+python人脸检测和识别- 完整实战
- opencv3+python人脸检测和识别 完整项目
- dlib-19.17.0-py3.7-win-amd64.egg.zip免去复杂
- 西电数据挖掘作业——VSM人脸识别算
- 基于Tensorflow的人脸识别源码
-
树莓派人脸识别python代码及xm
l模型 - python + opencv 人脸识别代码(可以跨平
- python人脸识别
- 人脸识别门禁系统 毕业设计 可移植
- Python人脸识别自动筛选抖音女神小姐
- python调用dlib库实现简单的人脸识别
- 基于人脸识别的课堂签到管理系统.
- 人脸识别代码python
- LBPH算法人脸识别代码.rar
- 基于卷积神经网络的人脸识别
评论
共有 条评论