stm32-fmt-code/access_control_python/camera_test.py

29 lines
644 B
Python
Raw Normal View History

2023-09-22 17:42:16 +00:00
import numpy as np
import cv2
2023-09-22 18:37:02 +00:00
import base64
import requests
2023-09-22 17:42:16 +00:00
2023-09-22 19:12:07 +00:00
# #Capture Image
# cam = cv2.VideoCapture(0)
# ret, img = cam.read()
2023-09-22 17:42:16 +00:00
2023-09-22 19:12:07 +00:00
# #Save Image
# cv2.imwrite("cam_test_img_pre.jpg",img)
img = cv2.imread("cam_test_img_pre.jpg")
2023-09-22 18:37:02 +00:00
#Encode Image
ret, jpg_buffer = cv2.imencode('.jpg',img)
b64_img = base64.b64encode(jpg_buffer)
#Send Image to Server
data = {"image":b64_img.decode("utf-8")}
req = requests.post("http://localhost:5000/process_image",json=data)
2023-09-22 19:12:07 +00:00
print(req.content)
2023-09-22 18:37:02 +00:00
#Decode Image
img_nparr = np.frombuffer(base64.b64decode(b64_img),np.uint8)
img = cv2.imdecode(img_nparr,cv2.IMREAD_COLOR)
cv2.imwrite("cam_test_img_post.jpg",img)
2023-09-22 17:42:16 +00:00