beny lim
beny lim

Reputation: 1304

Activating the in built web camera on a laptop in .NET

I want to activate the built-in web camera on a laptop for my application using .NET.

Is there any method that I can get this done in visual studio 2010?

Upvotes: 3

Views: 845

Answers (3)

Tariqulazam
Tariqulazam

Reputation: 4585

Are you talking about ASP.NET application? The answer is no unless you use some sort of activeX to be installed on the client browser.

Upvotes: 0

Dirk Dastardly
Dirk Dastardly

Reputation: 1047

Touchless SDK (http://touchless.codeplex.com/releases/view/17986) contains a generic DLL for accessing webcams. Some of the cams, like the Toughbook, require accessing their own API. The Toughbook also has a downloadable SDK for their camera.

Upvotes: 0

Daniel Elliott
Daniel Elliott

Reputation: 22867

The article here shows how you might do so using DirectShow and .NET

But ...

DirectShow on Windows Server 2008 (& R2) is fraught with problems so you might want to consider a different solution if this is the target OS

Upvotes: 1

Related Questions