2020-10-09 14:33:51 -0600 | received badge | ● Popular Question (source) |
2020-08-28 05:08:26 -0600 | received badge | ● Popular Question (source) |
2018-10-25 12:06:23 -0600 | received badge | ● Notable Question (source) |
2016-04-24 16:12:45 -0600 | received badge | ● Popular Question (source) |
2014-07-27 20:03:41 -0600 | received badge | ● Student (source) |
2012-12-19 13:33:32 -0600 | asked a question | No accelerated colorspace conversion found from yuv422p to rgb24 Hi all, I would like to use the hardware enabled mjpeg compression of my webcam (Logitech c920). I'm using a Pandaboard (ARM) and ubuntu 11.10 Server. I use as camera driver the ROS usb_cam package which works with YUYV but when I change the pixelformat to MJPEG I'll get following warning. [swscaler @ 0xe8d640] No accelerated colorspace conversion found from yuv422p to rgb24. The camera works but has a big time difference between the output and the actual image (about 2-3 seconds). According to some googling this warning leads to some lag and is caused by some old dependencies. Therefore I installed ffmpeg-0.10.6, ffmpeg-0.6.2 & ffmpeg-0.6.6 all with the same result. I always rebuild OpenCV afterward. Is it a ffmpeg problem or is that caused by OpenCV? This is my cmake configuration of OpenCV 2.3.1: my configuration options to install ffmpeg: AAC audio encoder (git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git) libvpx (git clone --depth 1 http://git.chromium.org/webm/libvpx.git) FFmpeg (git clone --depth 1 git://source.ffmpeg.org/ffmpeg) |
2012-12-16 13:33:44 -0600 | asked a question | Use mjpeg compression Hi all, I would like to use the mjpeg compression of my webcam (logitech c920). I can see with $v4l2-ctl --list-formats that MJPEG is supported: Output: But I tried different ways to set the compression in my code but it doesn't work. I tried: which leeds to the outputs that there are to many parameters. Therefore I changed to second parameter like this. This leads to following output: Would be great to get your help. I appreciate any suggestions. |
2012-12-16 13:24:25 -0600 | received badge | ● Editor (source) |
2012-12-14 18:58:27 -0600 | asked a question | Wrong resolution (video capture) Hi all, I'm using CV2.3.1 on a ARM Board and I would like to implement a webcam into my ROS project with MJPEG compression. But when I try to select a supported resolution (verified with $ v4l2-ctl --list-formats-ext) of 1920x1080 CV changes the resolution to 1600x896. Is there a specific reason our could it be possible that CV doesnt support this HD Webcam (Logitech c920). How can I see which resolutions are supported? Here is my code: |