I am trying to get a Mac app working with a Canon Mark II 5D.
Basically I want to be able to click a button and snap a photo, retrieve the photo, and display it. There is a lot more I am doing, but this is the part I am having trouble with.
Anyway, I am using the ICDeviceBrowser
to find devices, and I am able to find it. I set it as my decive using the following delgate method.
- (void)deviceBrowser:(ICDeviceBrowser*)browser didAddDevice:(ICDevice*)addedDevice moreComing:(BOOL)moreComing {
ICCameraDevice *thisCamera = (ICCameraDevice*)addedDevice;
thisCamera.delegate = self;
self.camera = thisCamera;
[self.camera requestOpenSession];
}
Then to fire off the camera I would think I would do this...but nothing is happening.
[self.camera requestTakePicture];
Has anyone ever played with this, or might know what's going on?
you can check what ICCameraDevice think about taking pictures via
and
also, see about camera connection mode here. and here implementation of the downloading process from camera.