当前位置: 首页 > article >正文

项目-摄像

 树莓派摄像头使用方法 Camera教程

https://www.raspi.cc/index.php?c=read&id=53&page=1

nanopc-t4

​https://www.raspi.cc/index.php?c=read&id=53&page=1

摄像头型号

Raspberry Pi Camera Rev 1.3

检测故障

dmesg | grep -i mipi

pi@NanoPC-T4:~$ dmesg | grep -i mipi
[    2.528023] rockchip-mipi-dphy-rx: No link between dphy and sensor
[    2.528584] rockchip-mipi-dphy-rx: No link between dphy and sensor
[    2.530501] rockchip-mipi-dphy-rx: No link between dphy and sensor
[    2.531073] rockchip-mipi-dphy-rx: No link between dphy and sensor
https://wiki.friendlyelec.com/wiki/index.php/NanoPC-T4/zh#gst-camera.sh_.E5.8F.82.E6.95.B0.E8.AF.B4.E6.98.8E

运行

gst-camera.sh --action preview

报错

gst-launch-1.0: no process found
/usr/bin/gst-camera.sh: line 178: [: =: unary operator expected
====================================================
=== GStreamer 1.1 command:
=== gst-launch-1.0 v4l2src device= io-mode=4 ! videoconvert ! video/x-raw,format=NV12, !
====================================================
/usr/bin/gst-camera.sh: line 194: [: too many arguments
su: must be run from a terminal

运行

sudo gst-camera.sh --action preview

报错

gst-launch-1.0: no process found
/usr/bin/gst-camera.sh: line 178: [: =: unary operator expected
====================================================
=== GStreamer 1.1 command:
=== gst-launch-1.0 v4l2src device= io-mode=4 ! videoconvert ! video/x-raw,format=NV12, !
====================================================
/usr/bin/gst-camera.sh: line 194: [: too many arguments
ERROR: pipeline could not be constructed: could not parse caps "video/x-raw,format=NV12,".
  • gst - launch - 1.0是 GStreamer 多媒体框架中的一个命令行工具。GStreamer 是一个用于构建流媒体应用程序的库,它允许开发者创建各种多媒体处理管道,包括音频和视频的播放、录制、编辑以及格式转换等功能。
sudo apt-get update
sudo apt-get install gstreamer1.0-tools
sudo apt-get install gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav
sudo apt-get install gstreamer1.0-tools
gst-launch-1.0(注意,应替换为实际管道)。

查看gst-launch-1.0是否正常,以下命令会播放测试视频

gst-launch-1.0 videotestsrc ! autovideosink

输出没问题,证明gst-launch-1.0正常,接下来排除摄像头驱动的故障

https://cloud.tencent.com/developer/article/1421907


http://www.kler.cn/a/401865.html

相关文章:

  • php消息路由
  • 前后端学习
  • 从零开始创建一个 Vue3+Vite+TS+Eslint项目
  • 实现了两种不同的图像处理和物体检测方法
  • 解决Spring Boot整合Redis时的连接问题
  • 台式电脑没有声音怎么办?台式电脑没有声音解决详解
  • python学习笔记1
  • 基于深度学习的文本信息提取方法研究(pytorch python textcnn框架)
  • 机器学习笔记 // 度量ML预测的准确率
  • Marin说PCB之电源完整性之电源网络的PDN仿真CST---04
  • 如何确保爬取的数据准确性和完整性?
  • 完整http服务器
  • 单片机智能家居火灾环境安全检测-分享
  • Modbus TCP转Modbus ASCII解决方案
  • 2、PyTorch张量的运算API(上)
  • 经验笔记:从生成 SSH 密钥到成功连接测试(以Gitee为例)
  • 微软Office 2021 24年11月授权版
  • c语言金典100题“从入门到放弃”10-15
  • Dubbo自定义扩展注册中心
  • Jav项目实战II基于微信小程序的助农扶贫的设计与实现(开发文档+数据库+源码)
  • 数据结构(二)线性表
  • 助力模型训练,深度学习的经典数据集介绍
  • Matplotlib | 理解直方图中bins表示的数据含义
  • WPF 中 MultiConverter ——XAML中复杂传参方式
  • 推荐一款UI/UX原型设计工具:Icons8 Lunacy
  • 【Rust 学习笔记】Rust 安装与 “Hello World” 程序介绍