Table of Contents

Method Generate

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Generate()

Generates an observable sequence that contains the camera intrinsics using the specified focal length and distortion parameters.

public override IObservable<Intrinsics> Generate()

Returns

IObservable<Intrinsics>

A sequence containing the created Intrinsics structure.

Generate<TSource>(IObservable<TSource>)

Generates an observable sequence of camera intrinsics using the specified focal length and distortion parameters, and where each Intrinsics object is emitted only when an observable sequence emits a notification.

public IObservable<Intrinsics> Generate<TSource>(IObservable<TSource> source)

Parameters

source IObservable<TSource>

The sequence containing the notifications used for emitting new camera intrinsics.

Returns

IObservable<Intrinsics>

The sequence of created Intrinsics objects.

Type Parameters

TSource

The type of the elements in the source sequence.