Added the property for setting x and y co-ordinates

modified:   ext/opencv/textwrite/gsttextwrite.c
	modified:   ext/opencv/textwrite/gsttextwrite.h
This commit is contained in:
Sreerenj Balachandran 2010-03-02 12:45:58 +05:30 committed by Thiago Santos
parent d962551fb7
commit ce5eb639cd
2 changed files with 1 additions and 1 deletions

View file

@ -178,6 +178,7 @@ gst_textwrite_class_init (GsttextwriteClass * klass)
g_param_spec_int ("xpos", "horizontal position",
"Sets the Horizontal position", 0, G_MAXINT,
DEFAULT_PROP_XPOS, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class, PROP_YPOS,
g_param_spec_int ("ypos", "vertical position",
"Sets the Vertical position", 0, G_MAXINT,

View file

@ -47,7 +47,6 @@
#define __GST_textwrite_H__
#include <gst/gst.h>
//sreechage
#include <cv.h>
#include <cvaux.h>
#include <highgui.h>