cvsmooth

cvsmooth

Properties

gint param1 Read / Write
gint param2 Read / Write
gdouble param3 Read / Write
gdouble param4 Read / Write
GstCvSmoothTypeType type Read / Write

Types and Values

struct GstCvSmooth

Description

Functions

Types and Values

struct GstCvSmooth

struct GstCvSmooth {
  GstOpencvVideoFilter element;

  gint type;

  gint param1;
  gint param2;
  gdouble param3;
  gdouble param4;
};

Property Details

The “param1” property

  “param1”                   gint

The aperture width (Must be positive and odd).Check cvSmooth OpenCV docs: http://opencv.willowgarage.com/documentation/image_filtering.html#cvSmooth.

Flags: Read / Write

Allowed values: >= 1

Default value: 3

The “param2” property

  “param2”                   gint

The aperture height, if zero, the width is used.(Must be positive and odd or zero, unuset in median and bilateral types). Check cvSmooth OpenCV docs: http://opencv.willowgarage.com/documentation/image_filtering.html#cvSmooth.

Flags: Read / Write

Allowed values: >= 0

Default value: 0

The “param3” property

  “param3”                   gdouble

If type is gaussian, this means the standard deviation.If type is bilateral, this means the color-sigma. If zero, Default values are used.Check cvSmooth OpenCV docs: http://opencv.willowgarage.com/documentation/image_filtering.html#cvSmooth.

Flags: Read / Write

Allowed values: >= 0

Default value: 0

The “param4” property

  “param4”                   gdouble

Only used in bilateral type, means the spatial-sigma.Check cvSmooth OpenCV docs: http://opencv.willowgarage.com/documentation/image_filtering.html#cvSmooth.

Flags: Read / Write

Allowed values: >= 0

Default value: 0

The “type” property

  “type”                     GstCvSmoothTypeType

Smooth Type.

Flags: Read / Write

Default value: CV Gaussian