Table of Contents

Class Resize

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

Represents an operator that resizes each image in the sequence to the specified size.

public class Resize : Transform<IplImage, IplImage>
Inheritance
Resize
Inherited Members

Properties

Interpolation

Gets or sets a value specifying the interpolation method used to transform individual image pixels.

public SubPixelInterpolation Interpolation { get; set; }

Property Value

SubPixelInterpolation

Size

Gets or sets the size of the output images.

public Size Size { get; set; }

Property Value

Size

Methods

Process(IObservable<IplImage>)

Resizes each image in an observable sequence to the specified size.

public override IObservable<IplImage> Process(IObservable<IplImage> source)

Parameters

source IObservable<IplImage>

The sequence of images to resize.

Returns

IObservable<IplImage>

The sequence of resized images.