如何使用从网络摄像头捕获的图像/帧到同一脚本中的 post 进程
How to use an image(s)/frame(s) captured from a webcam to post process in the same script
我基本上有一个使用我的网络摄像头工作的运动检测器,它将第一帧作为“dart_0”,然后在检测到运动时将第一帧作为“dart_1”。
我希望能够保存这些图像,以便我可以立即 post 在同一个 python file/script.
中处理它们
目前它将它们保存为.png 文件,但是在while 循环之后,它不会让我读取新创建的文件。它只允许我在一个单独的脚本中执行此操作,这不是我想要的。
我想问的是,当 while 循环中断时,是否有一种方法可以将图像保存在脚本中,我可以在获取图像后立即对其进行处理。
到目前为止,这是我的代码,可以完美地工作,但我不能使用我刚刚创建的图像,在 while 循环中断后。
import cv2
first_frame = None
video = cv2.VideoCapture(0, cv2.CAP_DSHOW)
video.set(cv2.CAP_PROP_BUFFERSIZE, 0)
img_counter = 1
throw_count = 1
throw_limit = 5
while throw_count < throw_limit:
status, frame = video.read()
#print(status)
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
gray = cv2.GaussianBlur(gray, (21, 21), 0)
if first_frame is None:
first_frame = gray
cv2.imwrite(filename='dart_0.png', img=frame)
print("Empty Picture Captured")
continue
#cv2.imshow("Frame", frame)
#cv2.imshow("Capturing", gray)
delta_frame = cv2.absdiff(first_frame, gray)
thresh_delta = cv2.threshold(delta_frame, 30, 255, cv2.THRESH_BINARY)[1]
thresh_delta = cv2.dilate(thresh_delta, None, iterations=0)
contours, res = cv2.findContours(thresh_delta.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
#cv2.imshow("Delta", delta_frame)
#cv2.imshow("Thresh", thresh_delta)
for contour in contours:
if cv2.contourArea(contour) > 100:
#(x, y, w, h) = cv2.boundingRect(contour)
#cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 3)
throw_count += 1
cv2.imwrite(filename='dart_1.png', img=frame)
print("Image Saved")
print("Loop Ended")
如果您在循环中处理的最后一张图像是您想要保留以供进一步分析的图像,请将其保存在变量中 (selected_frame
),例如在将其保存到磁盘之前:
for contour in contours:
if cv2.contourArea(contour) > 100:
throw_count += 1
selected_frame = frame.copy()
cv2.imwrite(filename='dart_1.png', img=frame)
print("Image Saved")
第一帧已经保存在变量first_frame
中,可以在后续代码中使用。
我基本上有一个使用我的网络摄像头工作的运动检测器,它将第一帧作为“dart_0”,然后在检测到运动时将第一帧作为“dart_1”。
我希望能够保存这些图像,以便我可以立即 post 在同一个 python file/script.
中处理它们目前它将它们保存为.png 文件,但是在while 循环之后,它不会让我读取新创建的文件。它只允许我在一个单独的脚本中执行此操作,这不是我想要的。
我想问的是,当 while 循环中断时,是否有一种方法可以将图像保存在脚本中,我可以在获取图像后立即对其进行处理。
到目前为止,这是我的代码,可以完美地工作,但我不能使用我刚刚创建的图像,在 while 循环中断后。
import cv2
first_frame = None
video = cv2.VideoCapture(0, cv2.CAP_DSHOW)
video.set(cv2.CAP_PROP_BUFFERSIZE, 0)
img_counter = 1
throw_count = 1
throw_limit = 5
while throw_count < throw_limit:
status, frame = video.read()
#print(status)
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
gray = cv2.GaussianBlur(gray, (21, 21), 0)
if first_frame is None:
first_frame = gray
cv2.imwrite(filename='dart_0.png', img=frame)
print("Empty Picture Captured")
continue
#cv2.imshow("Frame", frame)
#cv2.imshow("Capturing", gray)
delta_frame = cv2.absdiff(first_frame, gray)
thresh_delta = cv2.threshold(delta_frame, 30, 255, cv2.THRESH_BINARY)[1]
thresh_delta = cv2.dilate(thresh_delta, None, iterations=0)
contours, res = cv2.findContours(thresh_delta.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
#cv2.imshow("Delta", delta_frame)
#cv2.imshow("Thresh", thresh_delta)
for contour in contours:
if cv2.contourArea(contour) > 100:
#(x, y, w, h) = cv2.boundingRect(contour)
#cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 3)
throw_count += 1
cv2.imwrite(filename='dart_1.png', img=frame)
print("Image Saved")
print("Loop Ended")
如果您在循环中处理的最后一张图像是您想要保留以供进一步分析的图像,请将其保存在变量中 (selected_frame
),例如在将其保存到磁盘之前:
for contour in contours:
if cv2.contourArea(contour) > 100:
throw_count += 1
selected_frame = frame.copy()
cv2.imwrite(filename='dart_1.png', img=frame)
print("Image Saved")
第一帧已经保存在变量first_frame
中,可以在后续代码中使用。