Qt new functions ================ .. highlight:: c .. image:: ../../pics/Qt_GUI.png This figure explains the new functionalities implemented with Qt GUI. As we can see, the new GUI provides a statusbar, a toolbar, and a control panel. The control panel can have trackbars and buttonbars attached to it. * To attach a trackbar, the window _ name parameter must be NULL. * To attach a buttonbar, a button must be created. If the last bar attached to the control panel is a buttonbar, the new button is added on the right of the last button. If the last bar attached to the control panel is a trackbar, or the control panel is empty, a new buttonbar is created. Then a new button is attached to it. The following code is an example used to generate the figure. :: int main(int argc, char *argv[]) int value = 50; int value2 = 0; cvNamedWindow("main1",CV_WINDOW_NORMAL); cvNamedWindow("main2",CV_WINDOW_AUTOSIZE | CV_GUI_NORMAL); cvCreateTrackbar( "track1", "main1", &value, 255, NULL);//OK tested char* nameb1 = "button1"; char* nameb2 = "button2"; cvCreateButton(nameb1,callbackButton,nameb1,CV_CHECKBOX,1); cvCreateButton(nameb2,callbackButton,nameb2,CV_CHECKBOX,0); cvCreateTrackbar( "track2", NULL, &value2, 255, NULL); cvCreateButton("button5",callbackButton1,NULL,CV_RADIOBOX,0); cvCreateButton("button6",callbackButton2,NULL,CV_RADIOBOX,1); cvSetMouseCallback( "main2",on_mouse,NULL ); IplImage* img1 = cvLoadImage("files/flower.jpg"); IplImage* img2 = cvCreateImage(cvGetSize(img1),8,3); CvCapture* video = cvCaptureFromFile("files/hockey.avi"); IplImage* img3 = cvCreateImage(cvGetSize(cvQueryFrame(video)),8,3); while(cvWaitKey(33) != 27) { cvAddS(img1,cvScalarAll(value),img2); cvAddS(cvQueryFrame(video),cvScalarAll(value2),img3); cvShowImage("main1",img2); cvShowImage("main2",img3); } cvDestroyAllWindows(); cvReleaseImage(&img1); cvReleaseImage(&img2); cvReleaseImage(&img3); cvReleaseCapture(&video); return 0; } .. .. index:: SetWindowProperty .. _SetWindowProperty: SetWindowProperty ----------------- `id=0.760031672134 Comments from the Wiki `__ .. cfunction:: void cvSetWindowProperty(const char* name, int prop_id, double prop_value) Change the parameters of the window dynamically. :param name: Name of the window. :param prop_id: Window's property to edit. The operation flags: * **CV_WND_PROP_FULLSCREEN** Change if the window is fullscreen ( ``CV_WINDOW_NORMAL`` or ``CV_WINDOW_FULLSCREEN`` ). * **CV_WND_PROP_AUTOSIZE** Change if the user can resize the window (texttt {CV\_WINDOW\_NORMAL} or ``CV_WINDOW_AUTOSIZE`` ). * **CV_WND_PROP_ASPECTRATIO** Change if the image's aspect ratio is preserved (texttt {CV\_WINDOW\_FREERATIO} or ``CV_WINDOW_KEEPRATIO`` ). :param prop_value: New value of the Window's property. The operation flags: * **CV_WINDOW_NORMAL** Change the window in normal size, or allows the user to resize the window. * **CV_WINDOW_AUTOSIZE** The user cannot resize the window, the size is constrainted by the image displayed. * **CV_WINDOW_FULLSCREEN** Change the window to fullscreen. * **CV_WINDOW_FREERATIO** The image expends as much as it can (no ratio constraint) * **CV_WINDOW_KEEPRATIO** The ration image is respected. The function `` cvSetWindowProperty`` allows to change the window's properties. .. index:: GetWindowProperty .. _GetWindowProperty: GetWindowProperty ----------------- `id=0.0290551637129 Comments from the Wiki `__ .. cfunction:: void cvGetWindowProperty(const char* name, int prop_id) Get the parameters of the window. :param name: Name of the window. :param prop_id: Window's property to retrive. The operation flags: * **CV_WND_PROP_FULLSCREEN** Change if the window is fullscreen ( ``CV_WINDOW_NORMAL`` or ``CV_WINDOW_FULLSCREEN`` ). * **CV_WND_PROP_AUTOSIZE** Change if the user can resize the window (texttt {CV\_WINDOW\_NORMAL} or ``CV_WINDOW_AUTOSIZE`` ). * **CV_WND_PROP_ASPECTRATIO** Change if the image's aspect ratio is preserved (texttt {CV\_WINDOW\_FREERATIO} or ``CV_WINDOW_KEEPRATIO`` ). See :ref:`SetWindowProperty` to know the meaning of the returned values. The function `` cvGetWindowProperty`` return window's properties. .. index:: FontQt .. _FontQt: FontQt ------ `id=0.186050798255 Comments from the Wiki `__ :ref:`addText` .. cfunction:: CvFont cvFontQt(const char* nameFont, int pointSize = -1, CvScalar color = cvScalarAll(0), int weight = CV_FONT_NORMAL, int style = CV_STYLE_NORMAL, int spacing = 0) Create the font to be used to draw text on an image (with ). :param nameFont: Name of the font. The name should match the name of a system font (such as ``Times''). If the font is not found, a default one will be used. :param pointSize: Size of the font. If not specified, equal zero or negative, the point size of the font is set to a system-dependent default value. Generally, this is 12 points. :param color: Color of the font in BGRA -- A = 255 is fully transparent. Use the macro CV _ RGB for simplicity. :param weight: The operation flags: * **CV_FONT_LIGHT** Weight of 25 * **CV_FONT_NORMAL** Weight of 50 * **CV_FONT_DEMIBOLD** Weight of 63 * **CV_FONT_BOLD** Weight of 75 * **CV_FONT_BLACK** Weight of 87 You can also specify a positive integer for more control. :param style: The operation flags: * **CV_STYLE_NORMAL** Font is normal * **CV_STYLE_ITALIC** Font is in italic * **CV_STYLE_OBLIQUE** Font is oblique :param spacing: Spacing between characters. Can be negative or positive The function ``cvFontQt`` creates a CvFont object to be used with :ref:`addText` . This CvFont is not compatible with cvPutText. A basic usage of this function is: :: CvFont font = cvFontQt(''Times''); cvAddText( img1, ``Hello World !'', cvPoint(50,50), font); .. .. index:: AddText .. _AddText: AddText ------- `id=0.275443808813 Comments from the Wiki `__ .. cfunction:: void cvAddText(const CvArr* img, const char* text, CvPoint location, CvFont *font) Create the font to be used to draw text on an image :param img: Image where the text should be drawn :param text: Text to write on the image :param location: Point(x,y) where the text should start on the image :param font: Font to use to draw the text The function ``cvAddText`` draw *text* on the image *img* using a specific font *font* (see example :ref:`FontQt` ) .. index:: DisplayOverlay .. _DisplayOverlay: DisplayOverlay -------------- `id=0.42279169533 Comments from the Wiki `__ .. cfunction:: void cvDisplayOverlay(const char* name, const char* text, int delay) Display text on the window's image as an overlay for delay milliseconds. This is not editing the image's data. The text is display on the top of the image. :param name: Name of the window :param text: Overlay text to write on the window's image :param delay: Delay to display the overlay text. If this function is called before the previous overlay text time out, the timer is restarted and the text updated. . If this value is zero, the text never disapers. The function ``cvDisplayOverlay`` aims at displaying useful information/tips on the window for a certain amount of time *delay* . This information is display on the top of the window. .. index:: DisplayStatusBar .. _DisplayStatusBar: DisplayStatusBar ---------------- `id=0.267686004474 Comments from the Wiki `__ .. cfunction:: void cvDisplayStatusBar(const char* name, const char* text, int delayms) Display text on the window's statusbar as for delay milliseconds. :param name: Name of the window :param text: Text to write on the window's statusbar :param delay: Delay to display the text. If this function is called before the previous text time out, the timer is restarted and the text updated. If this value is zero, the text never disapers. The function ``cvDisplayOverlay`` aims at displaying useful information/tips on the window for a certain amount of time *delay* . This information is displayed on the window's statubar (the window must be created with ``CV_GUI_EXPANDED`` flags). .. index:: CreateOpenGLCallback .. _CreateOpenGLCallback: CreateOpenGLCallback -------------------- `id=0.324543301958 Comments from the Wiki `__ *_* .. cfunction:: void cvCreateOpenGLCallback( const char* window_name, CvOpenGLCallback callbackOpenGL, void* userdata CV_DEFAULT(NULL), double angle CV_DEFAULT(-1), double zmin CV_DEFAULT(-1), double zmax CV_DEFAULT(-1) Create a callback function called to draw OpenGL on top the the image display by windowname. :param window_name: Name of the window :param callbackOpenGL: Pointer to the function to be called every frame. This function should be prototyped as ``void Foo(*void);`` . :param userdata: pointer passed to the callback function. *(Optional)* :param angle: Specifies the field of view angle, in degrees, in the y direction.. *(Optional - Default 45 degree)* :param zmin: Specifies the distance from the viewer to the near clipping plane (always positive). *(Optional - Default 0.01)* :param zmax: Specifies the distance from the viewer to the far clipping plane (always positive). *(Optional - Default 1000)* The function ``cvCreateOpenGLCallback`` can be used to draw 3D data on the window. An example of callback could be: :: void on_opengl(void* param) { //draw scene here glLoadIdentity(); glTranslated(0.0, 0.0, -1.0); glRotatef( 55, 1, 0, 0 ); glRotatef( 45, 0, 1, 0 ); glRotatef( 0, 0, 0, 1 ); static const int coords[6][4][3] = { { { +1, -1, -1 }, { -1, -1, -1 }, { -1, +1, -1 }, { +1, +1, -1 } }, { { +1, +1, -1 }, { -1, +1, -1 }, { -1, +1, +1 }, { +1, +1, +1 } }, { { +1, -1, +1 }, { +1, -1, -1 }, { +1, +1, -1 }, { +1, +1, +1 } }, { { -1, -1, -1 }, { -1, -1, +1 }, { -1, +1, +1 }, { -1, +1, -1 } }, { { +1, -1, +1 }, { -1, -1, +1 }, { -1, -1, -1 }, { +1, -1, -1 } }, { { -1, -1, +1 }, { +1, -1, +1 }, { +1, +1, +1 }, { -1, +1, +1 } } }; for (int i = 0; i < 6; ++i) { glColor3ub( i*20, 100+i*10, i*42 ); glBegin(GL_QUADS); for (int j = 0; j < 4; ++j) { glVertex3d(0.2 * coords[i][j][0], 0.2 * coords[i][j][1], 0.2 * coords[i][j][2]); } glEnd(); } } .. :: CV_EXTERN_C_FUNCPTR( *CvOpenGLCallback)(void* userdata)); .. .. index:: SaveWindowParameters .. _SaveWindowParameters: SaveWindowParameters -------------------- `id=0.707889321891 Comments from the Wiki `__ *_* .. cfunction:: void cvSaveWindowParameters(const char* name) Save parameters of the window windowname. :param name: Name of the window The function ``cvSaveWindowParameters`` saves size, location, flags, trackbars' value, zoom and panning location of the window *window_name* .. index:: LoadWindowParameters .. _LoadWindowParameters: LoadWindowParameters -------------------- `id=0.804404226716 Comments from the Wiki `__ *_* .. cfunction:: void cvLoadWindowParameters(const char* name) Load parameters of the window windowname. :param name: Name of the window The function ``cvLoadWindowParameters`` load size, location, flags, trackbars' value, zoom and panning location of the window *window_name* .. index:: CreateButton .. _CreateButton: CreateButton ------------ `id=0.697638167277 Comments from the Wiki `__ *_* .. cfunction:: cvCreateButton( const char* button_name CV_DEFAULT(NULL),CvButtonCallback on_change CV_DEFAULT(NULL), void* userdata CV_DEFAULT(NULL) , int button_type CV_DEFAULT(CV_PUSH_BUTTON), int initial_button_state CV_DEFAULT(0) Create a callback function called to draw OpenGL on top the the image display by windowname. :param button_name: Name of the button *( if NULL, the name will be "button ")* :param on_change: Pointer to the function to be called every time the button changed its state. This function should be prototyped as ``void Foo(int state,*void);`` . *state* is the current state of the button. It could be -1 for a push button, 0 or 1 for a check/radio box button. :param userdata: pointer passed to the callback function. *(Optional)* The ``button_type`` parameter can be : *(Optional -- Will be a push button by default.) * **CV_PUSH_BUTTON** The button will be a push button. * **CV_CHECKBOX** The button will be a checkbox button. * **CV_RADIOBOX** The button will be a radiobox button. The radiobox on the same buttonbar (same line) are exclusive; one on can be select at the time. * * **initial_button_state** Default state of the button. Use for checkbox and radiobox, its value could be 0 or 1. *(Optional)* The function ``cvCreateButton`` attach button to the control panel. Each button is added to a buttonbar on the right of the last button. A new buttonbar is create if nothing was attached to the control panel before, or if the last element attached to the control panel was a trackbar. Here are various example of ``cvCreateButton`` function call: :: cvCreateButton(NULL,callbackButton);//create a push button "button 0", that will call callbackButton. cvCreateButton("button2",callbackButton,NULL,CV_CHECKBOX,0); cvCreateButton("button3",callbackButton,&value); cvCreateButton("button5",callbackButton1,NULL,CV_RADIOBOX); cvCreateButton("button6",callbackButton2,NULL,CV_PUSH_BUTTON,1); .. :: CV_EXTERN_C_FUNCPTR( *CvButtonCallback)(int state, void* userdata)); ..