edsdk-python
edsdk-python copied to clipboard
Canon EDSDK wrapper for Python
I developed a software that takes photos regularly with Python. I did all the steps in your descriptions. The program works smoothly. But in rare cases **"edsdk.SendCommand(cam, CameraCommand.TakePicture, 0)"** stops...
Traceback (most recent call last): File "C:\Users\33Lab\Documents\Dev\Graduation_project\edsdk-python\examples\save_image.py", line 5, in import edsdk File "C:\Users\33Lab\Documents\Dev\Graduation_project\edsdk-python\edsdk\__init__.py", line 1, in from edsdk.api import * ModuleNotFoundError: No module named 'edsdk.api' Process finished with exit...
Thank you for your edsdk-python code. I am trying this "save_image.py" There are two problem. (1) 'PropertyEvent' is not defined def callback_property(event: PropertyEvent, property_id: PropID, parameter: int) -> int: NameError:...
There is a missing import, `PropertyEvent` for the `callback_property` function (in the example) There is no index set for the `GetPropertyData` (default doesn't work?) As well as a better description...
using SetCameraAddedHandler and passing either a function or method with 0 or 1 argument always throws an error: ValueError: expected a callable object with 0 or 1 parameters(context: Any =...
The latest version of EDSDK already has the enum definition Unknown in all caps (UNKNOWN) as the readme suggests, so it seems to be redundant to instruct to change it.
I can not start live stream with your library. I can take a photo easily but live stream is not working. Can you suggest any code block for that
Hello GitHub Community, I am working on a project where I aim to capture images with a Canon camera and transfer them to my PC using the Canon EDSDK. However,...