jetson nano 打开csi摄像头
时间: 2023-08-29 07:05:27 浏览: 41
jetson nano csi摄像头 tensorrt 运行yolov8检测 项目代码
5星 · 资源好评率100%
可以使用以下命令打开CSI摄像头:
```bash
gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM),width=<width>,height=<height>,framerate=<framerate>/1,format=NV12' ! nvvidconv flip-method=2 ! 'video/x-raw,width=<width>,height=<height>,format=BGRx' ! videoconvert ! 'video/x-raw,format=BGR' ! appsink
```
请将`<width>`和`<height>`替换为摄像头支持的分辨率,`<framerate>`替换为摄像头支持的帧率。
阅读全文