Table of Contents

Class ConvertToImage

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents an operator that converts each array-like object in the sequence into an image.

[Combinator]
[WorkflowElementCategory(ElementCategory.Transform)]
public class ConvertToImage
Inheritance
ConvertToImage
Inherited Members

Methods

Process<TArray>(IObservable<TArray>)

Converts each array-like object in an observable sequence into an image.

public IObservable<IplImage> Process<TArray>(IObservable<TArray> source) where TArray : Arr

Parameters

source IObservable<TArray>

The sequence of array-like objects to be converted.

Returns

IObservable<IplImage>

A sequence of IplImage objects representing the image header for the arbitrary array.

Type Parameters

TArray

The type of the array-like objects in the source sequence.