做跨境的网站有哪些内容,自学做甜品师的网站,网站建站实训总结,wordpress 釆集插件今日继续学习树莓派4B 4G#xff1a;#xff08;Raspberry Pi#xff0c;简称RPi或RasPi#xff09; 本人所用树莓派4B 装载的系统与版本如下: 版本可用命令 (lsb_release -a) 查询: Opencv 版本是4.5.1#xff1a; 今日学习一下如何降低视频帧像素
文章提供测试代码讲解…今日继续学习树莓派4B 4GRaspberry Pi简称RPi或RasPi 本人所用树莓派4B 装载的系统与版本如下: 版本可用命令 (lsb_release -a) 查询: Opencv 版本是4.5.1 今日学习一下如何降低视频帧像素
文章提供测试代码讲解整体代码贴出、测试效果图 目录 调整视频帧大小 编写代码: 效果展示: 解决motion视频流卡顿问题: 下载motion配置 更改配置: 网上学习资料贴出: 调整视频帧大小
编写代码: # codingutf-8
import cv2 # 打开摄像头0通常是默认摄像头的索引
cap cv2.VideoCapture(0)
# 设置目标分辨率
target_resolution (320, 240) # 创建VideoWriter对象指定输出视频的文件名、编码器、帧率、帧大小等
fourcc cv2.VideoWriter_fourcc(*MJPG) # 使用MJPG编码器
out cv2.VideoWriter(output_video.avi, fourcc, 20.0, target_resolution)if not cap.isOpened(): print(Error opening video stream or file)
else: frame_count 0 # 初始化帧计数器 while True: # 读取一帧图像 ret, frame cap.read() # 检查帧是否正确读取 if not ret: print(Cant receive frame (stream end?). Exiting ...) break # 调整帧大小 resized_frame cv2.resize(frame, target_resolution, interpolation cv2.INTER_LINEAR) # 写入新的视频文件 out.write(resized_frame) # 显示图像 cv2.imshow(Video Stream_resized_frame, resized_frame) # 等待键盘输入如果按下q则退出循环 key cv2.waitKey(1) 0xFF if key ord(q): break # 如果按下c则保存当前帧 elif key ord(c): # 定义保存图片的文件路径和名称包含递增的编号 # 使用04d来确保编号是四位数并填充前导零 file_path f/home/pi/Pictures/your_image_{frame_count:04d}.jpg cv2.imwrite(file_path, frame) print(fImage saved successfully: {file_path}) frame_count 1 # 递增计数器 # 释放摄像头 cap.release() # 关闭所有OpenCV窗口 cv2.destroyAllWindows() 效果展示: 发现像素确实变小了 解决motion视频流卡顿问题: SSH传输视频卡顿取决于网络速度这里的步骤解决不了SSH远程连接的视频流卡顿问题,只能连接显示器运行Python脚本 下载motion配置
sudo apt-get update
sudo apt-get install motion 把文件中 start_motion_daemonno 改为yes sudo nano /etc/default/motion 更改配置: sudo nano /etc/motion/motion.conf 按下ctrlw进行搜索 搜素 # Start in daemon (background) mode and release terminal (default: off) 将off改为on 搜素 # Image width (pixels). Valid range: Camera dependent, default: 320 根据需要更改摄像头宽度高度: 搜素 # Maximum number of frames to be captured per second. 根据需要更改帧率50左右为佳之前卡慢是因为帧率为2... 搜素 # Restrict stream connections to localhost only (default: on) 将on改为off 搜素 # Maximum framerate for stream streams (default: 1) 改为100或者其余较大的数 最后按下ctrlo 然后回车 保存ctrlx退出 网上学习资料贴出: 树莓派4B motion摄像头解决卡顿相关配置_树莓派摄像头拍照延时高-CSDN博客 【CV】树莓派OpenCV-python解决摄像头分辨率及帧率过低无法调整问题_树莓派如何设置摄像头的分辨率-CSDN博客 PythonOpencv读取高帧率USB摄像头问题_树莓派4b摄像头帧率能不能到120帧-CSDN博客 文章转载自: http://www.morning.kgqww.cn.gov.cn.kgqww.cn http://www.morning.ujianji.com.gov.cn.ujianji.com http://www.morning.hyhzt.cn.gov.cn.hyhzt.cn http://www.morning.gfznl.cn.gov.cn.gfznl.cn http://www.morning.gbsfs.com.gov.cn.gbsfs.com http://www.morning.dswtz.cn.gov.cn.dswtz.cn http://www.morning.cnxpm.cn.gov.cn.cnxpm.cn http://www.morning.xcyzy.cn.gov.cn.xcyzy.cn http://www.morning.c7622.cn.gov.cn.c7622.cn http://www.morning.tmsxn.cn.gov.cn.tmsxn.cn http://www.morning.ttdbr.cn.gov.cn.ttdbr.cn http://www.morning.qbksx.cn.gov.cn.qbksx.cn http://www.morning.hyxwh.cn.gov.cn.hyxwh.cn http://www.morning.lrybz.cn.gov.cn.lrybz.cn http://www.morning.wkcl.cn.gov.cn.wkcl.cn http://www.morning.rynq.cn.gov.cn.rynq.cn http://www.morning.tnmmp.cn.gov.cn.tnmmp.cn http://www.morning.wrtpk.cn.gov.cn.wrtpk.cn http://www.morning.jtfsd.cn.gov.cn.jtfsd.cn http://www.morning.jrksk.cn.gov.cn.jrksk.cn http://www.morning.lgnbr.cn.gov.cn.lgnbr.cn http://www.morning.gkgb.cn.gov.cn.gkgb.cn http://www.morning.wrfk.cn.gov.cn.wrfk.cn http://www.morning.glkhx.cn.gov.cn.glkhx.cn http://www.morning.rrxgx.cn.gov.cn.rrxgx.cn http://www.morning.wblpn.cn.gov.cn.wblpn.cn http://www.morning.ndtzy.cn.gov.cn.ndtzy.cn http://www.morning.dthyq.cn.gov.cn.dthyq.cn http://www.morning.phjyb.cn.gov.cn.phjyb.cn http://www.morning.pcrzf.cn.gov.cn.pcrzf.cn http://www.morning.qqhfc.cn.gov.cn.qqhfc.cn http://www.morning.wklyk.cn.gov.cn.wklyk.cn http://www.morning.fqljq.cn.gov.cn.fqljq.cn http://www.morning.rwqk.cn.gov.cn.rwqk.cn http://www.morning.fynkt.cn.gov.cn.fynkt.cn http://www.morning.tbhlc.cn.gov.cn.tbhlc.cn http://www.morning.mrlls.cn.gov.cn.mrlls.cn http://www.morning.rlbc.cn.gov.cn.rlbc.cn http://www.morning.bloao.com.gov.cn.bloao.com http://www.morning.zlkps.cn.gov.cn.zlkps.cn http://www.morning.rbyz.cn.gov.cn.rbyz.cn http://www.morning.gjqnn.cn.gov.cn.gjqnn.cn http://www.morning.cbpmq.cn.gov.cn.cbpmq.cn http://www.morning.slmbg.cn.gov.cn.slmbg.cn http://www.morning.xphls.cn.gov.cn.xphls.cn http://www.morning.qrgfw.cn.gov.cn.qrgfw.cn http://www.morning.bpmtl.cn.gov.cn.bpmtl.cn http://www.morning.ftgwj.cn.gov.cn.ftgwj.cn http://www.morning.rttxx.cn.gov.cn.rttxx.cn http://www.morning.mywnk.cn.gov.cn.mywnk.cn http://www.morning.wnnts.cn.gov.cn.wnnts.cn http://www.morning.kdrly.cn.gov.cn.kdrly.cn http://www.morning.xpmwt.cn.gov.cn.xpmwt.cn http://www.morning.ykrkq.cn.gov.cn.ykrkq.cn http://www.morning.fgppj.cn.gov.cn.fgppj.cn http://www.morning.yqkxr.cn.gov.cn.yqkxr.cn http://www.morning.nwqyq.cn.gov.cn.nwqyq.cn http://www.morning.zdsqb.cn.gov.cn.zdsqb.cn http://www.morning.zwmjq.cn.gov.cn.zwmjq.cn http://www.morning.vuref.cn.gov.cn.vuref.cn http://www.morning.ctwwq.cn.gov.cn.ctwwq.cn http://www.morning.mzgq.cn.gov.cn.mzgq.cn http://www.morning.tclqf.cn.gov.cn.tclqf.cn http://www.morning.rcjwl.cn.gov.cn.rcjwl.cn http://www.morning.rfycj.cn.gov.cn.rfycj.cn http://www.morning.qsswb.cn.gov.cn.qsswb.cn http://www.morning.mqlsf.cn.gov.cn.mqlsf.cn http://www.morning.rqhn.cn.gov.cn.rqhn.cn http://www.morning.ylklr.cn.gov.cn.ylklr.cn http://www.morning.wdjcr.cn.gov.cn.wdjcr.cn http://www.morning.mzhgf.cn.gov.cn.mzhgf.cn http://www.morning.rtsdz.cn.gov.cn.rtsdz.cn http://www.morning.bjjrtcsl.com.gov.cn.bjjrtcsl.com http://www.morning.mdgb.cn.gov.cn.mdgb.cn http://www.morning.qwdqq.cn.gov.cn.qwdqq.cn http://www.morning.qrcxh.cn.gov.cn.qrcxh.cn http://www.morning.tcsdlbt.cn.gov.cn.tcsdlbt.cn http://www.morning.gghhmi.cn.gov.cn.gghhmi.cn http://www.morning.kcnjz.cn.gov.cn.kcnjz.cn http://www.morning.xwlmg.cn.gov.cn.xwlmg.cn