gpt4 book ai didi

python - 这里的ret和frame是什么意思?

转载 作者:太空狗 更新时间:2023-10-29 21:39:42 24 4
gpt4 key购买 nike

什么时候使用 ret 和 frame?这些变量持有什么值?我刚刚开始图像处理,所以如果有更多更改,请告诉我。

谢谢

import numpy as np
import cv2
cap = cv2.VideoCapture('Sample Lap HUL_OB_1.56.641_Graphic.mpg')

# Define the codec and create VideoWriter object
# fourcc = cv2.cv.CV_FOURCC(*'MJPG')
out = cv2.VideoWriter('output.mpg',0, 60.0, (640,480))
while(cap.isOpened()):
ret, frame = cap.read()
if ret==True:
# frame = cv2.flip(frame,0)
# write the flipped frame
out.write(frame)
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
break
# Release everything if job is finished
cap.release()
out.release()
cv2.destroyAllWindows()

最佳答案

“帧”将获取相机中的下一帧(通过“cap”)。“Ret”将从获取相机帧中获取返回值,true 或 false。我建议您阅读像这样的 OpenCV 教程(非常详细)来进行人脸识别: http://docs.opencv.org/modules/contrib/doc/facerec/facerec_tutorial.html

关于python - 这里的ret和frame是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28773186/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com