views:

25

answers:

1

Hi, I am developing an C# app in WM 6. I am using CameraCaptureDialog to open the camera.

I would need to receive callbacks from the camera, I know this method is not implemented by CameraCaptureDialog.

I would need for Windows Mobile, sth similar to this method in Android:

camera.setOneShotPreviewCallback(previewCallback);

Do you know any other library I can use to do this?

+1  A: 

The CameraCaptureDialog isn't going to be of much use at all. To get access to the camera on a WinMo device, you need to use a DirectShow filtergraph. There's a reasonably good article on CodeGuru that covers WinMo specifically.

ctacke