logitech

Capture video with big vertical angle from Logitech c920

十年热恋 提交于 2019-12-06 10:23:28
问题 I want to capture a Video from the Logitech c920 with the maximal possible vertical angle using C++ and OpenCV. The biggest possible angle i was able to achieve is pictured below. 2304x1536@2fps using the VLC Player: As soon as i lower the resolution i loose the vertical information (1280*1240@30fps): Switching to a 4:3 resolution (the biggest i found was 960*720@30fps), made the picture smaller at the sides instead of increasing the height: Does anybody know how to access a Video Stream with

C++ compile error (LNK1120 and LNK2019) with Visual Studio

家住魔仙堡 提交于 2019-12-05 11:46:42
I am a newbie to C++ and I need help with a very basic program. Background information: I recently got the Logitech G19s . It has a small color LCD screen. You can write apps for it in C++. So I decided to try it out, even though I'm new to C++, and write some hello world. Shouldn't be to dificult, but it turns out to be a real pain! Problem: When I compile my small Hello World app, I get 2 errors: LNK1120 and LNK2019, without any other information. Here's my code: #pragma comment(lib, "LogitechLcd.lib") #include "LogitechLcd.h" int main() { LogiLcdInit(L"Hello World", LOGI_LCD_TYPE_COLOR);

Processing / C920 logitech capture frame rate video discourse

时间秒杀一切 提交于 2019-12-04 19:05:27
I'm developing on Processing 2.0b, and i just bought a C920 logitech webam for a good capture quality. Then I try to capture at 1920 x 1080 , the problem is that I'm under 15 fps per seconds.. When I list all the devices availsable to capture, the program write: Some size and fps ... -[61] "name=HD Pro Webcam C920,size=1024x576,fps=5" -[62] "name=HD Pro Webcam C920,size=1024x576,fps=30" -[63] "name=HD Pro Webcam C920,size=1280x720,fps=5" -[64] "name=HD Pro Webcam C920,size=1280x720,fps=30" -[65] "name=HD Pro Webcam C920,size=1600x896,fps=5" -[66] "name=HD Pro Webcam C920,size=1600x896,fps=30"

Capturing 1080p at 30fps from logitech c920 with openCV 2.4.3

旧街凉风 提交于 2019-11-30 11:26:43
问题 I'm trying to capture the video stream off of my Logitech C920 in OpenCV. With Labview I can access an MJPG stream at 30fps 1080p. In opencv I am limited to either 5fps or 640x480. Here is the code relevant to the camera settings: this->camRef.set(CV_CAP_PROP_FRAME_WIDTH, 1920); this->camRef.set(CV_CAP_PROP_FRAME_HEIGHT, 1080); this->camRef.set(CV_CAP_PROP_FOURCC,CV_FOURCC('M','J','P','G')); These all return 1, yet I get a 5fps stream of 1080p which corresponds to the YUY2 stream. If I add

Capturing 1080p at 30fps from logitech c920 with openCV 2.4.3

自古美人都是妖i 提交于 2019-11-30 00:11:18
I'm trying to capture the video stream off of my Logitech C920 in OpenCV. With Labview I can access an MJPG stream at 30fps 1080p. In opencv I am limited to either 5fps or 640x480. Here is the code relevant to the camera settings: this->camRef.set(CV_CAP_PROP_FRAME_WIDTH, 1920); this->camRef.set(CV_CAP_PROP_FRAME_HEIGHT, 1080); this->camRef.set(CV_CAP_PROP_FOURCC,CV_FOURCC('M','J','P','G')); These all return 1, yet I get a 5fps stream of 1080p which corresponds to the YUY2 stream. If I add the following line: this->camRef.set(CV_CAP_PROP_FPS, 30); This returns 0. I get a 30 fps stream at

OpenCV: can't set resolution of video capture

旧城冷巷雨未停 提交于 2019-11-27 13:57:53
问题 I am using OpenCV 2.4.5 on Ubuntu 12.04 64-bit. I would like to be able to set the resolution of the input from my Logitech C310 webcam. The camera supports up to 1280x960 at 30fps, and I am able to view the video at this resolution in guvcview. But OpenCV always gets the video at only 640x480. Trying to change the resolution with cap.set(CV_CAP_PROP_FRAME_WIDTH, 1280) and cap.set(CV_CAP_PROP_FRAME_HEIGHT, 960) immediately after the VideoCapture cap is created has no effect; trying to set