HighImp

Results 28 comments of HighImp

Also, you don't necessarily have to use the InstantCameraArray. You can also create two instances of InstantCameras and call camera.RetrieveResult for each camera individually. If you use the Grab method:...

All commands to the camera do not help, because the exception says that the device is considered disconnected/removed. Is the camera still visible in Pylon Viewer after the error? If...

Hello Maschbauerkl, can you please execute this sample code and tell the output? ```python import pypylon.pylon as py import numpy as np camera = py.InstantCamera(py.TlFactory.GetInstance().CreateFirstDevice()) try: camera.Open() print(f"Camera Model Name:...

I'm not sure I understand your question, but I think you have confused "IsAvailable" with "IsImplemented". Some nodes, especially EnumEntries, change availability at runtime, like HighSpeedBurst Mode. And also "IsImpemented"...

Ah okay, i think its an "Ask forgiveness, not permission" way to handle non existing nodes. But if you want to avoid exception handling at all cost, may you can...

Hi @thomaswelter, can you please provide your Shematic and your code? For the GPIOs, the Arduino should be able to supply the desired current. To be sure that the voltage...

Hi, please measure your exposure active signal on Line2 and check the frequency. The ExposureActive Line should be nearly the same as your input signal, because of the TriggerWidth settings...

Hi @YacobBY, if your camera should be "open", you can use: ```python camera.IsCameraDeviceRemoved() ``` Will be True if your camera is not connected anymore. Or you access a node that...