Table of Contents

Class CVSmoothSettings

Namespace
VisioForge.Core.Types.X.OpenCV
Assembly
VisioForge.Core.dll

OpenCV smooth settings.

public class CVSmoothSettings

Inheritance

Inherited Members

Properties

Color

Gets or sets the color. If type is gaussian, this means the standard deviation. If type is bilateral, this means the color-sigma. If zero, Default values are used.

public double Color { get; set; }

Property Value

double

Height

Gets or sets the height of the area to blur.

public int Height { get; set; }

Property Value

int

KernelHeight

Gets or sets the gaussian kernel height.

public int KernelHeight { get; set; }

Property Value

int

KernelWidth

Gets or sets the gaussian kernel width. If type is median, this means the aperture linear size.

public int KernelWidth { get; set; }

Property Value

int

PositionX

Gets or sets the starting X position for blur.

public int PositionX { get; set; }

Property Value

int

PositionY

Gets or sets the starting Y position for blur.

public int PositionY { get; set; }

Property Value

int

SpatialSigma

Gets or sets the spatial sigma value. Only used in bilateral type.

public double SpatialSigma { get; set; }

Property Value

double

Type

Gets or sets the type.

public CVSmoothType Type { get; set; }

Property Value

CVSmoothType

Width

Gets or sets the width of the area to blur.

public int Width { get; set; }

Property Value

int