Codeproject Blue Iris -

pipeline.add_source(camera) pipeline.add_node(thermal_check) pipeline.run()

For Docker users:

# Blue Iris Python pipeline snippet import blue_iris as bi import cv2 from tensorflow import lite interpreter = lite.Interpreter(model_path="thermal_anomaly.tflite") Define pipeline camera = bi.Camera("rtsp://192.168.1.100/stream") pipeline = bi.Pipeline() codeproject blue iris