Slow Webcam Response
I've been struggling with poor performance from my Logitech 9000 Pro webcam. My program takes snapshots of the video and saves them to the users hard drive. I need high resolution images so I'm going for 1280x720 which is the limit of this webcam. But it's so slow. The refresh rate is poor and movement looks blurry. I have another brand new $100 webcam from Logitech and it's better, but has issues at higher resolutions like 1080p just like the 9000 Pro. I'm ready to dump Logitech and go with Microsoft webcams. Maybe I'll have better luck. Does anyone have any suggestions. The simplest of code gives me the poor results so I don't think it's the code, but the webcam or driver or both or logitech. Lower resolutions are faster, but I need 720p out of this camera and 1080p out of the newer camera. Here's my code:
import flash.media.Video;
var myWidth:Number = 1280;
var myHeight:Number = 720;
var my_video:Video = new Video(myWidth,myHeight);
var my_cam:Camera = Camera.getCamera();
my_cam.setMode(myWidth, myHeight, 30);
my_video.attachCamera(my_cam);
addChild(my_video);
