Questions tagged [pyspin]

The tag pyspin is related to question about PySpin from Flir using the Spinnaker SDK and Python wrapper.

The tag pyspin is related to question about PySpin using the Spinnaker SDK and the Python wrapper. This is all about camera control libraries from Flir. The wrapper can be downloaded from the Flir software download website if you have an account.

19 questions
0
votes
1 answer

Cannot access PySpin system instance with Windows executable (created with pyinstaller)

I'm trying to create an executable on Windows 10 from a python app which takes camera images using Spinnaker and its PySpin wrapper. The first step is to acquire the PySpin "System" instance. I can successfully run this python script from the…
Edvin444
  • 31
  • 5
0
votes
1 answer

What is the PySpin equivalent of the PyCapture2 camera Power ON function/method?

I am searching for a method to test if the camera is on for PTG camera. In PyCapture2 the below code works but the presumed PySpin cam.DeviceConnectionStatus() will not work because the function seems not to be present. PySpin Camera library…
ZF007
  • 3,708
  • 8
  • 29
  • 48
0
votes
1 answer

Why does PySpin.CameraList().GetSize() return zero devices?

Why does the following code return a cameralist with a device via PySpin.System() class and not via PySpin.CameraList() class? The return value may differ depending on how many cameras you've attached from the manufacturer. import PySpin system =…
ZF007
  • 3,708
  • 8
  • 29
  • 48
0
votes
1 answer

TypeError: GetSize() missing 1 required positional argument: 'self'

I am getting the following error iwht below code: TypeError: GetSize() missing 1 required positional argument: 'self' import PySpin system = PySpin.System.GetInstance() cam_list = system.GetCameras() # This works: numCams =…
ZF007
  • 3,708
  • 8
  • 29
  • 48
1
2