Created
May 7, 2019 01:04
-
-
Save immengineer/0bf30a97e0811a79b1d5b6ecf0bd81f3 to your computer and use it in GitHub Desktop.
Harvester DetectUSB3Camera
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from harvesters.core import Harvester | |
h = Harvester() | |
h.add_cti_file('C:/Program Files/JAI/SDK/bin/JaiUSB3vTL.cti') | |
h.update_device_info_list() | |
print("NumberOfCamera = {0}".format(len(h.device_info_list))) | |
h.device_info_list[0] | |
print(h.device_info_list[0]) | |
h.reset() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment