Erste Schritte mit Python und einer TIS Kamera

Aus The Imaging Source Wissensdatenbank
Zur Navigation springen Zur Suche springen

Mit Python, wie auch mit anderen Programmiersprachen wie C, C++ und C# kann alles nötige mit der The Imaging Source Kamera gemacht werden:

  • Livevideo anzeigen
  • Bilder holen, sowohl manuell als auch automatisch
  • Videodateien aufnehmen
  • Alle Kameraeigenschaften setzen

Windows:

Installation: python3 -m pip install imagingcontrol4

Treiber: Es wird der GenTL Producer für die The Imaging Source Kamera from https://www.theimagingsource.com/en-us/support/download/ benötigt

Dokumentation: IC Imaging Control 4 Python Library

Beispiele: https://github.com/TheImagingSource/ic4-examples/tree/master/python

Ein Beispielscript für das holen und speichern eines Bildes:

import imagingcontrol4 as ic4
ic4.Library.init()

# Create a Grabber object
grabber = ic4.Grabber()

# Open the first available video capture device
first_device_info = ic4.DeviceEnum.devices()[0]
grabber.device_open(first_device_info)

# Set the resolution to 640x480
grabber.device_property_map.set_value(ic4.PropId.WIDTH, 640)
grabber.device_property_map.set_value(ic4.PropId.HEIGHT, 480)

# Create a SnapSink. A SnapSink allows grabbing single images (or image sequences) out of a data stream.
sink = ic4.SnapSink()
# Setup data stream from the video capture device to the sink and start image acquisition.
grabber.stream_setup(sink, setup_option=ic4.StreamSetupOption.ACQUISITION_START)

try:
    # Grab a single image out of the data stream.
    image = sink.snap_single(1000)

    # Print image information.
    print(f"Received an image. ImageType: {image.image_type}")

    # Save the image.
    image.save_as_bmp("test.bmp")

except ic4.IC4Exception as ex:
    print(ex.message)
	
# Stop the data stream.
grabber.stream_stop()

Linux:

Installation: At https://www.theimagingsource.com/de-de/support/download/ im Kapitel “SDKs”. “tiscamera” wird für die verwendete Linuxplattform benötigt

Treiber: Nicht notwendig

Dokumentation: tiscamera

Beispiele: https://github.com/TheImagingSource/tiscamera/tree/master/examples/python und https://github.com/TheImagingSource/Linux-tiscamera-Programming-Samples/tree/master/python

Beispielscript für einen Livestream:

import time
import sys
import gi

gi.require_version("Gst", "1.0")

from gi.repository import Gst

def main():

    Gst.init(sys.argv)  # init gstreamer

    serial = None

    pipeline = Gst.parse_launch("tcambin name=bin "
                                " ! videoconvert"
                                " ! ximagesink sync=false")

    # retrieve the bin element from the pipeline
    camera = pipeline.get_by_name("bin")

    # serial is defined, thus make the source open that device
    if serial is not None:
        camera.set_property("serial", serial)

    pipeline.set_state(Gst.State.PLAYING)

    print("Press Ctrl-C to stop.")

    # We wait with this thread until a
    # KeyboardInterrupt in the form of a Ctrl-C
    # arrives. This will cause the pipline
    # to be set to state NULL
    try:
        while True:
            time.sleep(1)
    except KeyboardInterrupt:
        pass
    finally:
        pipeline.set_state(Gst.State.NULL)

if __name__ == "__main__":
    main()

Für Fragen können Sie uns direkt unter TIS Kontaktformular ansprechen