M
Miso
Hello.
Please, where should I start
if I want to snap photos from the web camera connected via usb
and show them in my ASP NET web application ?
I found web cameras on the internet and there the situation is like this
string uri = "";
uri = "http://***.***.***.***/CameraImages/cam***.jpg";
// load a bitmap from a Web response stream
WebRequest req = WebRequest.Create(uri);
WebResponse resp = req.GetResponse();
Stream s = resp.GetResponseStream();
Bitmap bmp = new Bitmap(s);
But I want to use the usb and manually
from the web application
press the trigger to acquire the photo.
Thanks.
miso
Please, where should I start
if I want to snap photos from the web camera connected via usb
and show them in my ASP NET web application ?
I found web cameras on the internet and there the situation is like this
string uri = "";
uri = "http://***.***.***.***/CameraImages/cam***.jpg";
// load a bitmap from a Web response stream
WebRequest req = WebRequest.Create(uri);
WebResponse resp = req.GetResponse();
Stream s = resp.GetResponseStream();
Bitmap bmp = new Bitmap(s);
But I want to use the usb and manually
from the web application
press the trigger to acquire the photo.
Thanks.
miso