1 Star 0 Fork 0

Sevene_Assiduous/face_detection_server_client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
socket-client.py 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- coding:utf-8 -*-
from socket import *
import base64
import cv2
import time
sock = socket(AF_INET, SOCK_STREAM)
sock.connect(("10.198.55.228", 18800))
capture = cv2.VideoCapture(0)
while True:
ret, frame = capture.read()
frame = cv2.flip(frame, 1)
img_data = base64.b64encode(cv2.imencode(".jpg", frame)[1])
sock.sendall(img_data + b'\0')
time.sleep(0.01)
recv_buf = b""
recv_buf = recv_buf + sock.recv(1 << 8)
print(recv_buf[:-1].decode("utf-8"))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sevene-assiduous/face_detection_server_client.git
git@gitee.com:sevene-assiduous/face_detection_server_client.git
sevene-assiduous
face_detection_server_client
face_detection_server_client
master

搜索帮助