PySpin Module Overview¶
The PySpin module is the top-level Python package for Spinnaker SDK camera
control. All classes, enumerations, and constants are accessible directly from
this namespace after a standard import PySpin.
Quick start¶
import PySpin
system = PySpin.System.GetInstance()
cam_list = system.GetCameras()
for cam in cam_list:
cam.Init()
cam.BeginAcquisition()
image = cam.GetNextImage()
image.Release()
cam.EndAcquisition()
cam.DeInit()
cam_list.Clear()
system.ReleaseInstance()
Class summary¶
The table below lists every public class exported by PySpin. Follow the
links for full method and property documentation.