Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Sample C code for Canon EDSDK Liveview?

Is there anyone with a working piece of sample C code that implements LiveView using the Canon EDSDK? The sample code in the documentation looks great until you get to this bit: // // Display image ...
3
votes
3answers
6k views

Live View with Canon EDSDK 2.5.2 VB.NET

I am trying to do 1 of two things, preference number 1: Turn on the Live View using VB.NET and the Canon EDSDK 2.5.2 and render the live output in a Windows Forms application. Currently I am trying ...
2
votes
6answers
285 views

Advice about building an error code lookup in C#

I'm new to C# and so forgive me if I have some of my concepts skewed. I'm working with the Canon EDSDK, and to make life easier I'd like to be able to see error messages as text rather than hex ...
1
vote
0answers
25 views

Why DSLR Pro can access my Canon 500D on Windows 64bit system?

Hello dearest community, Currently I am building a Canon EDSDK Application using VB.NET that access a Canon 500D camera. It's a DLSR system. I've read that the EDSDK is only working on 32 bit system, ...
1
vote
0answers
105 views

Canon 500D live stream

I have a canon 500D and need to stream recordings real time to my pc. I already tried to capture the liveview stream with the EDSDK (in C++) but the quality was to low for my application. Are there ...
1
vote
2answers
555 views

Taking picture with EDSDK and retrieving it immediately

For few days I've tried to retrieve the taken picture from camera. Today I found EdsSetPropertyData(cRef, PropID_SaveTo, 0, 4, 2); which doesn't save the picture to camera. But my problem is ...
1
vote
0answers
1k views

Retrieving pictures from Canon camera using EDSDK 2.9

I been trying to retrieve images taken on the camera for a very long time now. I am able to take pictures with the SDK using: err = EDSDK.EdsSendCommand(cameraDev, EDSDK.CameraCommand_TakePicture, ...
1
vote
2answers
510 views

How to start/stop video recording on Canon camera via SDK?

I have a Canon 7D digital camera and I'd like to have an ability to control video recording from PC. I've downloaded Canon SDK 2.8, read all the document it contains but still cant figure out how to ...
1
vote
2answers
2k views

take picture and directly save image to pc using edsdk 2.8

I'm new to the EDSDK 2.8 At the moment, my program can take pictures. However, when a picture is taken, that picture is temporarily stored in a buffer in the Canon camera. I would like to know how to ...
1
vote
3answers
1k views

Canon EDSDK 2.8 (Xcode 3.2.2 - Snow Leopard 10.6.3)

I'm trying to build an application using the Canon EDSDK 2.8. I created a new Cocoa Application project in Xcode, and imported the headers and framework files. When I try to build and run (without ...
1
vote
4answers
5k views

Canon Remote SDK Alternative?

Is there any Solution from another vendor? (With another Camera?) Canon does not want to support the SDK anylonger. The Solution shoul contain live preview, zooming and configurable Flash. A c# ...
0
votes
1answer
142 views

How to display streaming images in OpenCV?

I'd like to implement the live view function using EDSDK. I have used EdsGetPointer to get the pointer of the memory address for memory streaming. Now I want to display the streaming image on the PC. ...
0
votes
1answer
128 views

Using Android NDK to implement EDSDK

I am now doing a final year project of making a remote control of Canon DSLR from Android devices. What I know is that using Android NDK, I will be able to call a function from the EDSDK from the ...
0
votes
1answer
64 views

Inconsistent behavior when calling same method from different event handlers

I've built a little camera capture daemon which captures a sequence of images from an attached DSLR using Canon's EDSDK and Wayne Hartman's C# wrapper. Capturing works great and very reliably when I ...
0
votes
2answers
207 views

Need to record video with a DSLR using an SDK

I want to be able to control a DSLR camera to start/stop recording video. Canon has a nice SDK, but it seems that Video capture is not supported. Anyone know if Nikon SDK supports this ? Maybe there ...
0
votes
0answers
301 views

Canon EDSDK ObjectEvent_DirItemRequestTransfer

My C# application is shooting an image every 3 minutes and I get the image from the EDSDK as expected every time. My problem is that the application is leaking about 5 mb for every shot and Iøm very ...
0
votes
2answers
579 views

problem with download picture from canon camera to pc

i connected a eos canon camera to pc i have an application that i could take picture remotly ,and download image to pc, but when i remove the SD card from camera , i cant download image from buffer ...
0
votes
1answer
3k views

Canon EDSDK MemoryStream Image

I've been fighting with the Canon EDSDK for a while now. I can successfully get the library to save a file directly to disk, however, I cannot get a hold of the image byte[] in memory. Whenever I ...