Questions tagged «opencv»


2
将OpenCV与RasPiCam和python一起使用
有没有人能够让OpenCV使用python直接从RasPiCam板上播放视频? 我已经看到一些涉及解决方法的项目,但是我感兴趣的是能够将RasPiCam板与OpenCV一起使用,就好像它是USB凸轮一样。 理想情况下,我想执行以下操作: import cv2.cv as cv capture = cv.CreateCameraCapture(-1) #some other code to actually display the video

1
从相机读取视频(如果可能,请使用Kinect)
我正在启动一个项目,该项目需要在Raspberry Pi上使用Computer Vision。我对OpenCV比较熟悉,并且知道它可以成功安装在Raspberry Pi上,尽管我不知道在密集的图形操作下Pi会多么成功。RPi是否适合基本图像匹配和对象跟踪? 作为第二个目标,我们希望能够在Pi上使用OpenKinect。。。但据我阅读其他问题和博客文章所知。没有人能够从Kinect获取视频数据。

2
无法使用OpenCv捕获视频
我按照本教程在树莓派(Debian Wheezy)中安装了OpenCv 2.3.1 。 但是我无法使用USB网络摄像头拍摄视频。Gstreamer显示此错误: OpenCV Error: Unsupported format or combination of formats (Gstreamer Opencv backend doesn't support this codec acutally.) in CvVideoWriter_GStreamer::open, file /home/pi/OpenCV-2.3.1/modules/highgui/src/cap_gstreamer.cpp, line 483 terminate called after throwing an instance of 'cv::Exception' what(): /home/pi/OpenCV-2.3.1/modules/highgui/src/cap_gstreamer.cpp:483: error: (-210) Gstreamer Opencv backend doesn't support this codec acutally. in function CvVideoWriter_GStreamer::open …
9 opencv 

1
从picamera捕获到numpy数组和路径,图像质量不同
从Pi Camera捕获的质量在捕获到numpy数组以及直接捕获到路径时会有所不同。前者的色调比后者更偏粉红。 这是为什么。? 我用于捕获图像的代码: from picamera import PiCamera import cv2 import time camera = PiCamera() camera.resolution = (1280, 720) img = np.empty((720, 1280, 3), dtype=np.uint8) start = time.time() camera.capture(img, "bgr") print("Trigger time: " + str(time.time() - start)) cv2.imwrite("array_capture.png", img) start = time.time() camera.capture("normal_capture.png") print("Trigger time: " + str(time.time() - start)) …
8 pi-3  raspicam  opencv 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.