vote up 1 vote down star
1

I am writing picture editing windows forms application using vb.net/c#. i have a client requirement to capture the photo from digital still camera attached to computer.

how can i capture a photo from USB connected digital still camera device in my windows application ?

flag

6 Answers

vote up 1 vote down check

If you use the Windows Image Acquisition Library, you'll see events there for capturing camera new picture events. I had a similar requirement and wrote a test rig; we went down to the local camera store and tried every camera they had. The only cameras we could find that supported this functionality were the Nikon D-series cameras.

We found that with most cameras, you can't even take a picture when they are plugged in. When you plug them in to the USB port, most cameras will switch into a mode where the only thing they'll do is transfer data. The quick way to find out if a camera will work at all is to plug it into a PC, then try to snap a picture. If it lets you do that you have a chance. It also needs to support PTP.

link|flag
vote up 2 vote down

This is depend on the interface the camera exporting. If this is standard mass storage interface you just use standard file interface, i.e you will see the camera as removable disk and can use standard Create/Read/Write/File operation.
Many new cameras have ptp (Picture transport protocol) interface. So you will need using Windows Image Acquisition API.

You might find useful following Link. If i understand correctly this is a sample code for exactly what are you looking for. Google is your friend :)

Another piece of info: many cameras will support both mass storage and ptp interfaces and it will be selectable by camera user interface. In case of automatic mode camera probably will switch to ptp interface.

link|flag
Thanks, i read WIA doc and may be its for c/c++ ? Not for VB.nET,C# – bugBurger Sep 16 '08 at 19:32
vote up 1 vote down

I assume you want to activate the action of taking a picture from the computer which the camera is attached to. If that is the case then the first thing I would do is search for an API for that particular camera model. I don't believe there is a standard protocol/framework for interacting with digital cameras besides accessing the memory card within the camera.

link|flag
vote up 0 vote down

Usually the camera is displayed as a removable drive when attached.

So for a Winforms application just let the user select the drive and the picture you want to upload. You can do any processing once you have the FileStream of the picture.

In ASP.net you are going to need a FileUpload Control where again the user can select the drive and picture to upload. Processing this time would be via MemoryStream on the HttpRequest.Files object.

Hope that helps.

link|flag
vote up 0 vote down

This depends on your camera.

Many cameras will simply mount as USB mass storage devices. If this is the case, then you can just copy the file from the visible file system like you would any other file on an external disk.

If the camera doesn't make its contents available in this way, you'll need to look at the camera driver documentation to see how they recommend interacting with it.

link|flag
vote up 0 vote down

It will depend on the brand of camera. Here is a link to start with for Canon.

link|flag
thanks Mark. This link will definatly help me to find SDK of camera model i am using. – bugBurger Sep 16 '08 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.