Skip to content

1.2.0

Compare
Choose a tag to compare
@basler-oss basler-oss released this 06 Jul 12:16
pypylon release 1.2.0

Changes:
    - Remove the pylon build number from the python package name
    - Fixed a bug in GrabResult.GetArrayZeroCopy (accessing a non-existent# 1.2.0
      attribute). Added a zero-copy sample.
    - fix image format converter
    - enable enum_props in Pylon
    - fix SWIG include path in --pp-debug case
    - Fixed TlFactory.EnumerateDevices so that arbitrary objects are no longer
      accepted as boolean arguments - they have to be 'real' bool() objects.
      This was done to easily spot this unwitting omission:
        # programmer wrote:
        found1 = pylon.TlFactory.GetInstance().EnumerateDevices(single_di)
        # but meant to say:
        found2 = pylon.TlFactory.GetInstance().EnumerateDevices([single_di])
    - Pylon 5.0.11 and 5.0.12 require that the workaround for DLL loading on
      windows is reactivated (had been removed in 1.0.7).
    - Search for swig in PATH on windows
    - Ensure swig version is >= 3.0.12