Tagged Questions
The webcam tag has no wiki summary.
35
votes
6answers
29k views
What's the status of the HTML 5 <video> tag and webcam integration?
Even though it seems to be in some kind of jeopardy, the open video standard is a great idea. I saw some demos on motion tracking with it - just proofs-of-concept, but interesting nonetheless. Now, ...
23
votes
6answers
40k views
How can I stream webcam video with C#?
I want to make a simple server application where people can connect using a browser-based client (which I will make later) to watch streaming video. And I want to use C#.
What do I need to capture ...
18
votes
6answers
15k views
Webcam usage in C#
I am making a program in C# to connect to a webcam and do some image manipulation with it.
I have a working application that uses win32 api (avicap32.dll) to connect to the webcam and send messages to ...
18
votes
6answers
16k views
How do I connect to a USB webcam in .NET?
I want to connect to a USB Webcam in .NET, specifically using C#. Being new to .NET I don't know what kind of support there is in the standard libraries for doing so. I found one example on the web ...
17
votes
13answers
25k views
Increasing camera capture resolution in OpenCV
In my C/C++ program, I'm using OpenCV to capture images from my webcam. The camera (Logitech QuickCam IM) can capture at resolutions 320x240, 640x480 and 1280x960. But, for some strange reason, OpenCV ...
13
votes
3answers
11k views
Python API to access webcam stream?
On college, I needed to create a virtual reality software, and used this Python API to access the stream from the webcam which I came to know through this tutorial. Found out, though, it needed a ...
12
votes
4answers
5k views
Using a webcam with Javascript?
I just wanted to ask you, if there is any option of using a webcam with Javascript? I know, that there is no native support for webcams with JS, but maybe there are APIs using Flash to capture the ...
12
votes
11answers
62k views
Capturing image from webcam in java?
How can I continuously capture images from a webcam?
I want to experiment with object recognition (by maybe using java media framework).
I was thinking of creating two threads
one thread:
Node ...
10
votes
2answers
416 views
Getting input from webcam
Does .NET have a native support for getting input from webcam?
If not, what is the best/recommended way to get input from webcam using C#/.NET?
10
votes
6answers
8k views
Streaming a webcam from Silverlight 4 (Beta)
The new webcam stuff in Silverlight 4 is darned cool. By exposing it as a brush, it allows scenarios that are way beyond anything that Flash has.
At the same time, accessing the webcam locally seems ...
10
votes
3answers
8k views
Displaying WebCam video with Qt
I'm using Qt 4.5 (2009.03) on Linux Gnome (Ubuntu 9.04) and would like to display video captured by my webcam in a Phonon::VideoWidget of my Qt application.
I have a first implementation using the ...
8
votes
6answers
8k views
How to display webcam images captured with Emgu?
I'm currently working on a project that use Facial Recognition.
I therefore need a way to display the webcam images to the user so he can adjust his face.
I've been trying a lot of things to get ...
8
votes
3answers
8k views
Simple .NET webcam library
Is there a simple library for .NET that has a simply API that let's you do something like;
// pseudo-code
List<Webcam> cams = Webcam.GetAll();
Image i = cams[0].GrabImage();
I've looked at ...
7
votes
1answer
593 views
“Preferred” method to access webcam from C# in Windows Vista / 7
I've found plenty of posts discussing WIA, Windows Portable Devices API and DirectShow (and giving example code) for accessing a webcam from C# but when you research each method you seem to come ...
7
votes
4answers
2k views
How to join webcam FLVs
I want my website to join some webcam recordings in FLV files (like this one). This needs to be done on Linux without user input. How do I do this? For simplicity's sake, I'll use the same flv as both ...
7
votes
5answers
10k views
How to stream a remote webcam [closed]
I am looking to put a camera on top of a building in the process of being built and stream it to a website. How would I go about doing this?
Would I have to hook it up to a full-blown computer ...
6
votes
1answer
422 views
C# webcam library
I need a webcam library (for C#) so that I can implement the following things:
show the video stream
save the stream to a file on disk
capture single images
I have searched for libraries and found ...
6
votes
4answers
876 views
Efficiently Implementing Java Native Interface Webcam Feed
I'm working on a project that takes video input from a webcam and displays regions of motion to the user. My "beta" attempt at this project was to use the Java Media Framework to retrieve the webcam ...
6
votes
1answer
8k views
Displaying webcam feed using opencv and python
I have been trying to create a simple program with python which utilises opencv to get a video feed from my webcam and display it on the screen.
I know I am partly there because the window is ...
6
votes
1answer
1k views
Creating a Virtual Webcam Device for OS X
I am looking for a solution to create a "virtual" webcam device under OS X (that acts just as a normal hardware webcam, but the application has full control over what to output). I'm fairly ...
6
votes
1answer
7k views
Save video captured from webcam using Flash
I'd like to use Flash to capure video from the user's webcam and then save it on the same server that hosts the Flash file. The web server will be running ASP.Net technology. Seems easy, right?
Lot ...
6
votes
7answers
6k views
Streaming video from a live webcam [closed]
I building a .NET 2.0 web site for a client which requires a live video streaming feature. i.e. a subscriber of a the site can stream live recording of a an event using his webcam (from his browser) ...
6
votes
6answers
6k views
How to capture image from client webcam in asp.net
I am working on an ASP.Net application and I want users to be able to take a picture with their local webcam and then upload it to the server.
I can, of course, rely on users doing this manually via ...
5
votes
1answer
467 views
Writing a virtual webcam?
I need to create a virtual webcam that poses as a webcam, but takes as input a set of images that it plays. I have seen solutions like ManyCam, and Fake Webcam, but they all seem to one limitation or ...
5
votes
2answers
828 views
How to disable automatic white balance from Webcam?
I got a webcam and I'm running some algorithm on the received images to find movements in it.
But, the automatic auto white balance is changing the excepted result of the pixels color variance.
That's ...
5
votes
3answers
760 views
Draw on webcam using OpenCV
I want to draw/paint on a webcam screen using OpenCV. Since I'm reading from a cam, the frames are constantly changing, so I'm trying to figure out a way to keep or save the drawing on the current ...
5
votes
3answers
5k views
Accessing webcam with Javascript
I want to develop a web application to get a video stream from the webcam and process. i tried to google and find whether there any way to do it in javascript but i only came up with some flash ...
5
votes
1answer
395 views
Mac: stream a video file as webcam to applications (similar to CamTwist)
I am trying to program a feature, similar to that of CamTwist, with which a video file (on hard disk) can be broadcasted to other applications as video input.
However, I am not sure where to ...
5
votes
3answers
1k views
Webcam control in java
I am thinking of creating a project for controlling my integrated webcam in java.
I have tried searching and found that we need to use JMF for this kinda stuff.
But i couldn't find any good tuts ...
5
votes
3answers
7k views
OpenCV : How to display webcam capture in windows form application?
generally we display webcam or video motion in opencv windows with :
CvCapture* capture = cvCreateCameraCapture(0);
cvNamedWindow( "title", CV_WINDOW_AUTOSIZE );
...
5
votes
1answer
2k views
Programming webcam on Linux
I want to be able to capture images from a webcam on Linux. This is still a project requirement and I'm having a difficulty finding up-to-date information about capturing images from a webcam on ...
5
votes
3answers
850 views
Processing byte pixels with SSE/SSE2 intrinsics in C
I am programming, for cross-platform C, a library to do various things to webcam images. All operations are per-pixel and highly parallelizable - for example applying bit masks, multiplying color ...
5
votes
4answers
2k views
Detect WebCam device using with java
I am using JMF to operate my web cam.My usb webcam works perfectly with JMF,
I used it in JMStudio however,when I make this call from my java code
deviceListVector = ...
5
votes
5answers
6k views
How do I record video from a webcam in MATLAB?
I would like to know how I can record a video in MATLAB with my webcam.
5
votes
4answers
4k views
Silverlight Webcam
Is it possible to access a webcam in Silverlight
From what I've read it's not possible in Silverlight 1.0 but what about 2.0... 3.0 ... 4.0?
5
votes
4answers
9k views
How to read input from a webcam in C++?
is it possible to read data from a generic webcam in C++ as you would from a stream object? Is there a common API or standard that works with all webcams?
I'm talking about C++ in *nix environment.
...
5
votes
1answer
8k views
How to stream Webcam in WPF?
Can I stream a live video in WPF application from my web cam? If yes, then How?
5
votes
2answers
4k views
5
votes
2answers
4k views
Image Capture in C#
I'm working on a home project that involves comparing images to a database of images (using a quadrant - or so - histogram approach). I wanted to know what my options are in regards to web cams or ...
5
votes
9answers
7k views
Solutions for multiple webcam meeting [closed]
Currently our team is partially distributed with several members not at our local office. We do a lot of collaboration, and have decided to move to using webcams. I've done this before where we've had ...
5
votes
8answers
6k views
Accessing iSight programatically?
Is it possible to access the iSight camera on a macbook programatically? By this I mean I would like to be able to just grab still frames from the iSight camera on command and then do something with ...
4
votes
2answers
652 views
Java vs Flash for webcam access
I will make a video chat website, but coming from PHP and Python for the web i have no experience with video steaming.
What do you recommend? Java or Flash? What's more flexible ?
I am thinking of ...
4
votes
3answers
5k views
OpenCV webcam capture problem
I've installed OpenCV 2.2 and now I can't get webcam capture to work. It worked ok in 2.1. OpenCV detects a webcam, doesn't report any errors or warnings, but each frame is a gray image. I even tried ...
4
votes
2answers
388 views
how to implement a fake webcam?
I want to play a recorded movie as my webcam? How can i do this , i am a Delphi programmer it's necessary to write a device driver ?
I am waiting for ideas on getting this task done.Thank you!
4
votes
1answer
897 views
reading a barcode with a webcam
Hey,
I'm trying to read a EAN-13 barcode from my webcam.
I already wrote a class to do that work.
I'm taking a picture from my webcam, trimming it to show ONLY the barcode,
and reading the barcode ...
4
votes
3answers
2k views
C# Microsoft LifeCam HD mjpeg capture
I have a Microsoft LifeCam HD-5000 webcams. According to AMCap, the camera outputs a MJPEG stream at 30fps at 720p. I want to capture each JPEG frame in a small application without doing any preview ...
4
votes
2answers
1k views
Getting a snapshot from a webcam with Delphi
I need to get a regular snapshot from a webcam in Delphi. Speed is not a problem (once a second is fine). I have tried demo code from based on stuff from http://delphi.pjh2.de but I can't get it to ...
4
votes
3answers
870 views
Simulating Screen capturing as a webcam?
Do we have a way to simulate a webcam driver, that will provide realtime captured screen (30 frames per sec) as it's output?
4
votes
2answers
601 views
Silverlight 4 web cam permission on load of User Control
I am using Silverlight 4 to access the web cam. Everything works ok when I start the web cam on a button click event, I get the prompt for permission. I would like the web cam to start when User ...
4
votes
3answers
3k views
Open Source Video Gesture Recognition Library in C#
I need an open-source Video Gesture Recognition .NET Library/API (in C#). We have a web cam... we move a hand and it causes some events...
So I need motion detection for navigation lib/api...
...