pyramidsegment

pyramidsegment — Applies pyramid segmentation to a video or image.

Synopsis

                    GstPinch;
                    Gstpyramidsegment;

Properties

  "level"                    gint                  : Read / Write
  "silent"                   gboolean              : Read / Write
  "threshold1"               gdouble               : Read / Write
  "threshold2"               gdouble               : Read / Write

Description

FIXME:Describe pyramidsegment here.

Example launch line

gst-launch -v -m fakesrc ! pyramidsegment ! fakesink silent=TRUE

Details

GstPinch

typedef struct _GstPinch GstPinch;


Gstpyramidsegment

typedef struct {
  GstElement element;

  GstPad *sinkpad, *srcpad;

  gboolean silent;

  IplImage *cvImage, *cvSegmentedImage;

  CvMemStorage *storage;

  CvSeq *comp;

  double threshold1, threshold2;

  int level;
} Gstpyramidsegment;

Property Details

The "level" property

  "level"                    gint                  : Read / Write

Maximum level of the pyramid segmentation.

Allowed values: [0,4]

Default value: 4


The "silent" property

  "silent"                   gboolean              : Read / Write

Produce verbose output ?.

Default value: FALSE


The "threshold1" property

  "threshold1"               gdouble               : Read / Write

Error threshold for establishing links.

Allowed values: [0,1000]

Default value: 50


The "threshold2" property

  "threshold2"               gdouble               : Read / Write

Error threshold for segment clustering.

Allowed values: [0,1000]

Default value: 60