基于OpenCV图像采集的人脸识别网络推流及浏览器控制系统(将图像在URL地址上输出,可做成网络摄像头,带识别框)
前文: https://blog.csdn.net/weixin_53403301/article/details/124030457
资源: https://download.csdn.net/download/weixin_53403301/85094054
在运行项目前,先在当前目录下新建目录templates 在目录内新建index.html文件 并输入HTML代码:
<html>
<head>
<title>局域网视频推流及控制系统</title>
</head>
<body>
<h1>局域网视频推流及控制系统</h1>
<img src="{{ url_for('video_feed') }}" height="500">
<form action="/" method="post">
<p>命令:<input type="text" name="COMMAND" placeholder="输入命令"></p>
<p><input type="submit" value="发送命令"></p>
</form>
</body>
</html>
首先建立服务器,同时用OpenCV调用本地摄像头采集图像 并转为JPEG格式 而后进行推流
同时监控表单输入,使其能够执行其他函数
服务器建立成功后,即可在浏览器输入IP地址和端口进行查看 在浏览器中输入http://A.B.C.D:yyyy/打开即可 其中A.B.C.D为服务器IP地址 yyyy为端口号 这里设置的为1212
import cv2
from flask import Flask, render_template, Response, request
import threading
import socket
local_ip = str(socket.gethostbyname(socket.gethostname()))
local_post = 1212
app = Flask(__name__)
cap = cv2.VideoCapture(0)
classifier = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
@app.route('/', methods=['GET', 'POST'])
def index():
global command_str
if request.method == 'POST':
command_str = str(request.form.get('COMMAND'))
print(command_str)
return render_template('index.html')
def track():
global faceImg
global q
global command_str
command_str = None
q = 0
while True:
ok, faceImg = cap.read()
faceImg = cv2.flip(faceImg,1)
if ok is False:
print('无法读取到摄像头!')
break
gray = cv2.cvtColor(faceImg,cv2.COLOR_BGR2GRAY)
faceRects = classifier.detectMultiScale(gray,scaleFactor=1.2,minNeighbors=3,minSize=(32, 32))
if len(faceRects):
for faceRect in faceRects:
x,y,w,h = faceRect
cv2.rectangle(faceImg,(x, y), (x + w, y + h), (0,255,0), 2)
cv2.imshow("http://"+local_ip+":"+str(local_post)+"/ (img: video_feed)",faceImg)
if command_str == "L":
print("Left")
elif command_str == "R":
print("Right")
elif command_str == "C":
print("Central")
else:
command_str = command_str
if cv2.waitKey(10) == 27 or command_str == "Q":
command_str = None
print("Quit")
break
command_str = None
cap.release()
cv2.destroyAllWindows()
q = 1
def send_img():
global faceImg
global q
q = 0
while True:
image = cv2.imencode('.jpg', faceImg)[1].tobytes()
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + image + b'\r\n')
if q==1:
break
return
@app.route('/video_feed')
def video_feed():
return Response(send_img(), mimetype='multipart/x-mixed-replace; boundary=frame')
def start_server():
app.run(host='0.0.0.0', port=local_post)
thread_img = threading.Thread(target=track)
thread_img.setDaemon(True)
thread_img.start()
thread_send = threading.Thread(target=start_server)
thread_send.setDaemon(True)
thread_send.start()
效果如下: 手机端效果:
|