Closed netanelf closed 6 years ago
Ok, Fond the answer (or at least a usable way):
factory = pylon.TlFactory.GetInstance()
ptl = factory.CreateTl('BaslerGigE')
empty_camera_info = ptl.CreateDeviceInfo()
empty_camera_info.SetPropertyValue('IpAddress', 'yout_ip_address, ie 192.168.1.1')
camera_device = ptl.CreateDevice(empty_camera_info)
cam_obj = pylon.InstantCamera(camera_device)
This worked great for me,
Netanel
Hi, Currently I connect to cameras that are found by:
Sometimes there are cameras behind routers that are not listed in EnumerateDevices() In pylon, you can connect to these cameras if you know their IP, as described in: https://www.baslerweb.com/en/sales-support/knowledge-base/frequently-asked-questions/what-is-the-add-remote-gige-camera-feature-in-pylon-for/14874/
Did someone manage to this manually through the library? Thanks,