#Spinnaker/FLIR source

Media Blocks SDK .Net

The Spinnaker/FLIR source supports connection to FLIR cameras using Spinnaker SDK.

#Block info

Name: SpinnakerSourceBlock.

Pin directionMedia typePins count
Output videovariousone or more

#The sample pipeline

SpinnakerSourceBlock:OutputVideoRendererBlock

#Sample code

var pipeline = new MediaBlocksPipeline(); var sources = await DeviceEnumerator.Shared.SpinnakerSourcesAsync(); var sourceSettings = new SpinnakerSourceSettings(sources[0].Name, new VisioForge.Core.Types.Rect(0, 0, 1280, 720), new VideoFrameRate(10)); var source = new SpinnakerSourceBlock(sourceSettings); var videoRenderer = new VideoRendererBlock(pipeline, VideoView1); pipeline.Connect(source.Output, videoRenderer.Input); await pipeline.StartAsync();

#Requirements

  • Spinnaker SDK installed.

#Platforms

Windows