Path: blob/master/modules/highgui/include/opencv2/highgui.hpp
16337 views
/*M///////////////////////////////////////////////////////////////////////////////////////1//2// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.3//4// By downloading, copying, installing or using the software you agree to this license.5// If you do not agree to this license, do not download, install,6// copy or use the software.7//8//9// License Agreement10// For Open Source Computer Vision Library11//12// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.13// Copyright (C) 2009, Willow Garage Inc., all rights reserved.14// Third party copyrights are property of their respective owners.15//16// Redistribution and use in source and binary forms, with or without modification,17// are permitted provided that the following conditions are met:18//19// * Redistribution's of source code must retain the above copyright notice,20// this list of conditions and the following disclaimer.21//22// * Redistribution's in binary form must reproduce the above copyright notice,23// this list of conditions and the following disclaimer in the documentation24// and/or other materials provided with the distribution.25//26// * The name of the copyright holders may not be used to endorse or promote products27// derived from this software without specific prior written permission.28//29// This software is provided by the copyright holders and contributors "as is" and30// any express or implied warranties, including, but not limited to, the implied31// warranties of merchantability and fitness for a particular purpose are disclaimed.32// In no event shall the Intel Corporation or contributors be liable for any direct,33// indirect, incidental, special, exemplary, or consequential damages34// (including, but not limited to, procurement of substitute goods or services;35// loss of use, data, or profits; or business interruption) however caused36// and on any theory of liability, whether in contract, strict liability,37// or tort (including negligence or otherwise) arising in any way out of38// the use of this software, even if advised of the possibility of such damage.39//40//M*/4142#ifndef OPENCV_HIGHGUI_HPP43#define OPENCV_HIGHGUI_HPP4445#include "opencv2/core.hpp"46#ifdef HAVE_OPENCV_IMGCODECS47#include "opencv2/imgcodecs.hpp"48#endif49#ifdef HAVE_OPENCV_VIDEOIO50#include "opencv2/videoio.hpp"51#endif5253/**54@defgroup highgui High-level GUI5556While OpenCV was designed for use in full-scale applications and can be used within functionally57rich UI frameworks (such as Qt\*, WinForms\*, or Cocoa\*) or without any UI at all, sometimes there58it is required to try functionality quickly and visualize the results. This is what the HighGUI59module has been designed for.6061It provides easy interface to:6263- Create and manipulate windows that can display images and "remember" their content (no need to64handle repaint events from OS).65- Add trackbars to the windows, handle simple mouse events as well as keyboard commands.6667@{68@defgroup highgui_opengl OpenGL support69@defgroup highgui_qt Qt New Functions70717273This figure explains new functionality implemented with Qt\* GUI. The new GUI provides a statusbar,74a toolbar, and a control panel. The control panel can have trackbars and buttonbars attached to it.75If you cannot see the control panel, press Ctrl+P or right-click any Qt window and select **Display76properties window**.7778- To attach a trackbar, the window name parameter must be NULL.7980- To attach a buttonbar, a button must be created. If the last bar attached to the control panel81is a buttonbar, the new button is added to the right of the last button. If the last bar82attached to the control panel is a trackbar, or the control panel is empty, a new buttonbar is83created. Then, a new button is attached to it.8485See below the example used to generate the figure:86@code87int main(int argc, char *argv[])88{8990int value = 50;91int value2 = 0;929394namedWindow("main1",WINDOW_NORMAL);95namedWindow("main2",WINDOW_AUTOSIZE | CV_GUI_NORMAL);96createTrackbar( "track1", "main1", &value, 255, NULL);9798String nameb1 = "button1";99String nameb2 = "button2";100101createButton(nameb1,callbackButton,&nameb1,QT_CHECKBOX,1);102createButton(nameb2,callbackButton,NULL,QT_CHECKBOX,0);103createTrackbar( "track2", NULL, &value2, 255, NULL);104createButton("button5",callbackButton1,NULL,QT_RADIOBOX,0);105createButton("button6",callbackButton2,NULL,QT_RADIOBOX,1);106107setMouseCallback( "main2",on_mouse,NULL );108109Mat img1 = imread("files/flower.jpg");110VideoCapture video;111video.open("files/hockey.avi");112113Mat img2,img3;114115while( waitKey(33) != 27 )116{117img1.convertTo(img2,-1,1,value);118video >> img3;119120imshow("main1",img2);121imshow("main2",img3);122}123124destroyAllWindows();125126return 0;127}128@endcode129130131@defgroup highgui_winrt WinRT support132133This figure explains new functionality implemented with WinRT GUI. The new GUI provides an Image control,134and a slider panel. Slider panel holds trackbars attached to it.135136Sliders are attached below the image control. Every new slider is added below the previous one.137138See below the example used to generate the figure:139@code140void sample_app::MainPage::ShowWindow()141{142static cv::String windowName("sample");143cv::winrt_initContainer(this->cvContainer);144cv::namedWindow(windowName); // not required145146cv::Mat image = cv::imread("Assets/sample.jpg");147cv::Mat converted = cv::Mat(image.rows, image.cols, CV_8UC4);148cv::cvtColor(image, converted, COLOR_BGR2BGRA);149cv::imshow(windowName, converted); // this will create window if it hasn't been created before150151int state = 42;152cv::TrackbarCallback callback = [](int pos, void* userdata)153{154if (pos == 0) {155cv::destroyWindow(windowName);156}157};158cv::TrackbarCallback callbackTwin = [](int pos, void* userdata)159{160if (pos >= 70) {161cv::destroyAllWindows();162}163};164cv::createTrackbar("Sample trackbar", windowName, &state, 100, callback);165cv::createTrackbar("Twin brother", windowName, &state, 100, callbackTwin);166}167@endcode168169@defgroup highgui_c C API170@}171*/172173///////////////////////// graphical user interface //////////////////////////174namespace cv175{176177//! @addtogroup highgui178//! @{179180//! Flags for cv::namedWindow181enum WindowFlags {182WINDOW_NORMAL = 0x00000000, //!< the user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size.183WINDOW_AUTOSIZE = 0x00000001, //!< the user cannot resize the window, the size is constrainted by the image displayed.184WINDOW_OPENGL = 0x00001000, //!< window with opengl support.185186WINDOW_FULLSCREEN = 1, //!< change the window to fullscreen.187WINDOW_FREERATIO = 0x00000100, //!< the image expends as much as it can (no ratio constraint).188WINDOW_KEEPRATIO = 0x00000000, //!< the ratio of the image is respected.189WINDOW_GUI_EXPANDED=0x00000000, //!< status bar and tool bar190WINDOW_GUI_NORMAL = 0x00000010, //!< old fashious way191};192193//! Flags for cv::setWindowProperty / cv::getWindowProperty194enum WindowPropertyFlags {195WND_PROP_FULLSCREEN = 0, //!< fullscreen property (can be WINDOW_NORMAL or WINDOW_FULLSCREEN).196WND_PROP_AUTOSIZE = 1, //!< autosize property (can be WINDOW_NORMAL or WINDOW_AUTOSIZE).197WND_PROP_ASPECT_RATIO = 2, //!< window's aspect ration (can be set to WINDOW_FREERATIO or WINDOW_KEEPRATIO).198WND_PROP_OPENGL = 3, //!< opengl support.199WND_PROP_VISIBLE = 4 //!< checks whether the window exists and is visible200};201202//! Mouse Events see cv::MouseCallback203enum MouseEventTypes {204EVENT_MOUSEMOVE = 0, //!< indicates that the mouse pointer has moved over the window.205EVENT_LBUTTONDOWN = 1, //!< indicates that the left mouse button is pressed.206EVENT_RBUTTONDOWN = 2, //!< indicates that the right mouse button is pressed.207EVENT_MBUTTONDOWN = 3, //!< indicates that the middle mouse button is pressed.208EVENT_LBUTTONUP = 4, //!< indicates that left mouse button is released.209EVENT_RBUTTONUP = 5, //!< indicates that right mouse button is released.210EVENT_MBUTTONUP = 6, //!< indicates that middle mouse button is released.211EVENT_LBUTTONDBLCLK = 7, //!< indicates that left mouse button is double clicked.212EVENT_RBUTTONDBLCLK = 8, //!< indicates that right mouse button is double clicked.213EVENT_MBUTTONDBLCLK = 9, //!< indicates that middle mouse button is double clicked.214EVENT_MOUSEWHEEL = 10,//!< positive and negative values mean forward and backward scrolling, respectively.215EVENT_MOUSEHWHEEL = 11 //!< positive and negative values mean right and left scrolling, respectively.216};217218//! Mouse Event Flags see cv::MouseCallback219enum MouseEventFlags {220EVENT_FLAG_LBUTTON = 1, //!< indicates that the left mouse button is down.221EVENT_FLAG_RBUTTON = 2, //!< indicates that the right mouse button is down.222EVENT_FLAG_MBUTTON = 4, //!< indicates that the middle mouse button is down.223EVENT_FLAG_CTRLKEY = 8, //!< indicates that CTRL Key is pressed.224EVENT_FLAG_SHIFTKEY = 16,//!< indicates that SHIFT Key is pressed.225EVENT_FLAG_ALTKEY = 32 //!< indicates that ALT Key is pressed.226};227228//! Qt font weight229enum QtFontWeights {230QT_FONT_LIGHT = 25, //!< Weight of 25231QT_FONT_NORMAL = 50, //!< Weight of 50232QT_FONT_DEMIBOLD = 63, //!< Weight of 63233QT_FONT_BOLD = 75, //!< Weight of 75234QT_FONT_BLACK = 87 //!< Weight of 87235};236237//! Qt font style238enum QtFontStyles {239QT_STYLE_NORMAL = 0, //!< Normal font.240QT_STYLE_ITALIC = 1, //!< Italic font.241QT_STYLE_OBLIQUE = 2 //!< Oblique font.242};243244//! Qt "button" type245enum QtButtonTypes {246QT_PUSH_BUTTON = 0, //!< Push button.247QT_CHECKBOX = 1, //!< Checkbox button.248QT_RADIOBOX = 2, //!< Radiobox button.249QT_NEW_BUTTONBAR = 1024 //!< Button should create a new buttonbar250};251252/** @brief Callback function for mouse events. see cv::setMouseCallback253@param event one of the cv::MouseEventTypes constants.254@param x The x-coordinate of the mouse event.255@param y The y-coordinate of the mouse event.256@param flags one of the cv::MouseEventFlags constants.257@param userdata The optional parameter.258*/259typedef void (*MouseCallback)(int event, int x, int y, int flags, void* userdata);260261/** @brief Callback function for Trackbar see cv::createTrackbar262@param pos current position of the specified trackbar.263@param userdata The optional parameter.264*/265typedef void (*TrackbarCallback)(int pos, void* userdata);266267/** @brief Callback function defined to be called every frame. See cv::setOpenGlDrawCallback268@param userdata The optional parameter.269*/270typedef void (*OpenGlDrawCallback)(void* userdata);271272/** @brief Callback function for a button created by cv::createButton273@param state current state of the button. It could be -1 for a push button, 0 or 1 for a check/radio box button.274@param userdata The optional parameter.275*/276typedef void (*ButtonCallback)(int state, void* userdata);277278/** @brief Creates a window.279280The function namedWindow creates a window that can be used as a placeholder for images and281trackbars. Created windows are referred to by their names.282283If a window with the same name already exists, the function does nothing.284285You can call cv::destroyWindow or cv::destroyAllWindows to close the window and de-allocate any associated286memory usage. For a simple program, you do not really have to call these functions because all the287resources and windows of the application are closed automatically by the operating system upon exit.288289@note290291Qt backend supports additional flags:292- **WINDOW_NORMAL or WINDOW_AUTOSIZE:** WINDOW_NORMAL enables you to resize the293window, whereas WINDOW_AUTOSIZE adjusts automatically the window size to fit the294displayed image (see imshow ), and you cannot change the window size manually.295- **WINDOW_FREERATIO or WINDOW_KEEPRATIO:** WINDOW_FREERATIO adjusts the image296with no respect to its ratio, whereas WINDOW_KEEPRATIO keeps the image ratio.297- **WINDOW_GUI_NORMAL or WINDOW_GUI_EXPANDED:** WINDOW_GUI_NORMAL is the old way to draw the window298without statusbar and toolbar, whereas WINDOW_GUI_EXPANDED is a new enhanced GUI.299By default, flags == WINDOW_AUTOSIZE | WINDOW_KEEPRATIO | WINDOW_GUI_EXPANDED300301@param winname Name of the window in the window caption that may be used as a window identifier.302@param flags Flags of the window. The supported flags are: (cv::WindowFlags)303*/304CV_EXPORTS_W void namedWindow(const String& winname, int flags = WINDOW_AUTOSIZE);305306/** @brief Destroys the specified window.307308The function destroyWindow destroys the window with the given name.309310@param winname Name of the window to be destroyed.311*/312CV_EXPORTS_W void destroyWindow(const String& winname);313314/** @brief Destroys all of the HighGUI windows.315316The function destroyAllWindows destroys all of the opened HighGUI windows.317*/318CV_EXPORTS_W void destroyAllWindows();319320CV_EXPORTS_W int startWindowThread();321322/** @brief Similar to #waitKey, but returns full key code.323324@note325326Key code is implementation specific and depends on used backend: QT/GTK/Win32/etc327328*/329CV_EXPORTS_W int waitKeyEx(int delay = 0);330331/** @brief Waits for a pressed key.332333The function waitKey waits for a key event infinitely (when \f$\texttt{delay}\leq 0\f$ ) or for delay334milliseconds, when it is positive. Since the OS has a minimum time between switching threads, the335function will not wait exactly delay ms, it will wait at least delay ms, depending on what else is336running on your computer at that time. It returns the code of the pressed key or -1 if no key was337pressed before the specified time had elapsed.338339@note340341This function is the only method in HighGUI that can fetch and handle events, so it needs to be342called periodically for normal event processing unless HighGUI is used within an environment that343takes care of event processing.344345@note346347The function only works if there is at least one HighGUI window created and the window is active.348If there are several HighGUI windows, any of them can be active.349350@param delay Delay in milliseconds. 0 is the special value that means "forever".351*/352CV_EXPORTS_W int waitKey(int delay = 0);353354/** @brief Displays an image in the specified window.355356The function imshow displays an image in the specified window. If the window was created with the357cv::WINDOW_AUTOSIZE flag, the image is shown with its original size, however it is still limited by the screen resolution.358Otherwise, the image is scaled to fit the window. The function may scale the image, depending on its depth:359360- If the image is 8-bit unsigned, it is displayed as is.361- If the image is 16-bit unsigned or 32-bit integer, the pixels are divided by 256. That is, the362value range [0,255\*256] is mapped to [0,255].363- If the image is 32-bit or 64-bit floating-point, the pixel values are multiplied by 255. That is, the364value range [0,1] is mapped to [0,255].365366If window was created with OpenGL support, cv::imshow also support ogl::Buffer , ogl::Texture2D and367cuda::GpuMat as input.368369If the window was not created before this function, it is assumed creating a window with cv::WINDOW_AUTOSIZE.370371If you need to show an image that is bigger than the screen resolution, you will need to call namedWindow("", WINDOW_NORMAL) before the imshow.372373@note This function should be followed by cv::waitKey function which displays the image for specified374milliseconds. Otherwise, it won't display the image. For example, **waitKey(0)** will display the window375infinitely until any keypress (it is suitable for image display). **waitKey(25)** will display a frame376for 25 ms, after which display will be automatically closed. (If you put it in a loop to read377videos, it will display the video frame-by-frame)378379@note380381[__Windows Backend Only__] Pressing Ctrl+C will copy the image to the clipboard.382383[__Windows Backend Only__] Pressing Ctrl+S will show a dialog to save the image.384385@param winname Name of the window.386@param mat Image to be shown.387*/388CV_EXPORTS_W void imshow(const String& winname, InputArray mat);389390/** @brief Resizes window to the specified size391392@note393394- The specified window size is for the image area. Toolbars are not counted.395- Only windows created without cv::WINDOW_AUTOSIZE flag can be resized.396397@param winname Window name.398@param width The new window width.399@param height The new window height.400*/401CV_EXPORTS_W void resizeWindow(const String& winname, int width, int height);402403/** @overload404@param winname Window name.405@param size The new window size.406*/407CV_EXPORTS_W void resizeWindow(const String& winname, const cv::Size& size);408409/** @brief Moves window to the specified position410411@param winname Name of the window.412@param x The new x-coordinate of the window.413@param y The new y-coordinate of the window.414*/415CV_EXPORTS_W void moveWindow(const String& winname, int x, int y);416417/** @brief Changes parameters of a window dynamically.418419The function setWindowProperty enables changing properties of a window.420421@param winname Name of the window.422@param prop_id Window property to edit. The supported operation flags are: (cv::WindowPropertyFlags)423@param prop_value New value of the window property. The supported flags are: (cv::WindowFlags)424*/425CV_EXPORTS_W void setWindowProperty(const String& winname, int prop_id, double prop_value);426427/** @brief Updates window title428@param winname Name of the window.429@param title New title.430*/431CV_EXPORTS_W void setWindowTitle(const String& winname, const String& title);432433/** @brief Provides parameters of a window.434435The function getWindowProperty returns properties of a window.436437@param winname Name of the window.438@param prop_id Window property to retrieve. The following operation flags are available: (cv::WindowPropertyFlags)439440@sa setWindowProperty441*/442CV_EXPORTS_W double getWindowProperty(const String& winname, int prop_id);443444/** @brief Provides rectangle of image in the window.445446The function getWindowImageRect returns the client screen coordinates, width and height of the image rendering area.447448@param winname Name of the window.449450@sa resizeWindow moveWindow451*/452CV_EXPORTS_W Rect getWindowImageRect(const String& winname);453454/** @example samples/cpp/create_mask.cpp455This program demonstrates using mouse events and how to make and use a mask image (black and white) .456*/457/** @brief Sets mouse handler for the specified window458459@param winname Name of the window.460@param onMouse Callback function for mouse events. See OpenCV samples on how to specify and use the callback.461@param userdata The optional parameter passed to the callback.462*/463CV_EXPORTS void setMouseCallback(const String& winname, MouseCallback onMouse, void* userdata = 0);464465/** @brief Gets the mouse-wheel motion delta, when handling mouse-wheel events cv::EVENT_MOUSEWHEEL and466cv::EVENT_MOUSEHWHEEL.467468For regular mice with a scroll-wheel, delta will be a multiple of 120. The value 120 corresponds to469a one notch rotation of the wheel or the threshold for action to be taken and one such action should470occur for each delta. Some high-precision mice with higher-resolution freely-rotating wheels may471generate smaller values.472473For cv::EVENT_MOUSEWHEEL positive and negative values mean forward and backward scrolling,474respectively. For cv::EVENT_MOUSEHWHEEL, where available, positive and negative values mean right and475left scrolling, respectively.476477With the C API, the macro CV_GET_WHEEL_DELTA(flags) can be used alternatively.478479@note480481Mouse-wheel events are currently supported only on Windows.482483@param flags The mouse callback flags parameter.484*/485CV_EXPORTS int getMouseWheelDelta(int flags);486487/** @brief Selects ROI on the given image.488Function creates a window and allows user to select a ROI using mouse.489Controls: use `space` or `enter` to finish selection, use key `c` to cancel selection (function will return the zero cv::Rect).490491@param windowName name of the window where selection process will be shown.492@param img image to select a ROI.493@param showCrosshair if true crosshair of selection rectangle will be shown.494@param fromCenter if true center of selection will match initial mouse position. In opposite case a corner of495selection rectangle will correspont to the initial mouse position.496@return selected ROI or empty rect if selection canceled.497498@note The function sets it's own mouse callback for specified window using cv::setMouseCallback(windowName, ...).499After finish of work an empty callback will be set for the used window.500*/501CV_EXPORTS_W Rect selectROI(const String& windowName, InputArray img, bool showCrosshair = true, bool fromCenter = false);502503/** @overload504*/505CV_EXPORTS_W Rect selectROI(InputArray img, bool showCrosshair = true, bool fromCenter = false);506507/** @brief Selects ROIs on the given image.508Function creates a window and allows user to select a ROIs using mouse.509Controls: use `space` or `enter` to finish current selection and start a new one,510use `esc` to terminate multiple ROI selection process.511512@param windowName name of the window where selection process will be shown.513@param img image to select a ROI.514@param boundingBoxes selected ROIs.515@param showCrosshair if true crosshair of selection rectangle will be shown.516@param fromCenter if true center of selection will match initial mouse position. In opposite case a corner of517selection rectangle will correspont to the initial mouse position.518519@note The function sets it's own mouse callback for specified window using cv::setMouseCallback(windowName, ...).520After finish of work an empty callback will be set for the used window.521*/522CV_EXPORTS_W void selectROIs(const String& windowName, InputArray img,523CV_OUT std::vector<Rect>& boundingBoxes, bool showCrosshair = true, bool fromCenter = false);524525/** @brief Creates a trackbar and attaches it to the specified window.526527The function createTrackbar creates a trackbar (a slider or range control) with the specified name528and range, assigns a variable value to be a position synchronized with the trackbar and specifies529the callback function onChange to be called on the trackbar position change. The created trackbar is530displayed in the specified window winname.531532@note533534[__Qt Backend Only__] winname can be empty (or NULL) if the trackbar should be attached to the535control panel.536537Clicking the label of each trackbar enables editing the trackbar values manually.538539@param trackbarname Name of the created trackbar.540@param winname Name of the window that will be used as a parent of the created trackbar.541@param value Optional pointer to an integer variable whose value reflects the position of the542slider. Upon creation, the slider position is defined by this variable.543@param count Maximal position of the slider. The minimal position is always 0.544@param onChange Pointer to the function to be called every time the slider changes position. This545function should be prototyped as void Foo(int,void\*); , where the first parameter is the trackbar546position and the second parameter is the user data (see the next parameter). If the callback is547the NULL pointer, no callbacks are called, but only value is updated.548@param userdata User data that is passed as is to the callback. It can be used to handle trackbar549events without using global variables.550*/551CV_EXPORTS int createTrackbar(const String& trackbarname, const String& winname,552int* value, int count,553TrackbarCallback onChange = 0,554void* userdata = 0);555556/** @brief Returns the trackbar position.557558The function returns the current position of the specified trackbar.559560@note561562[__Qt Backend Only__] winname can be empty (or NULL) if the trackbar is attached to the control563panel.564565@param trackbarname Name of the trackbar.566@param winname Name of the window that is the parent of the trackbar.567*/568CV_EXPORTS_W int getTrackbarPos(const String& trackbarname, const String& winname);569570/** @brief Sets the trackbar position.571572The function sets the position of the specified trackbar in the specified window.573574@note575576[__Qt Backend Only__] winname can be empty (or NULL) if the trackbar is attached to the control577panel.578579@param trackbarname Name of the trackbar.580@param winname Name of the window that is the parent of trackbar.581@param pos New position.582*/583CV_EXPORTS_W void setTrackbarPos(const String& trackbarname, const String& winname, int pos);584585/** @brief Sets the trackbar maximum position.586587The function sets the maximum position of the specified trackbar in the specified window.588589@note590591[__Qt Backend Only__] winname can be empty (or NULL) if the trackbar is attached to the control592panel.593594@param trackbarname Name of the trackbar.595@param winname Name of the window that is the parent of trackbar.596@param maxval New maximum position.597*/598CV_EXPORTS_W void setTrackbarMax(const String& trackbarname, const String& winname, int maxval);599600/** @brief Sets the trackbar minimum position.601602The function sets the minimum position of the specified trackbar in the specified window.603604@note605606[__Qt Backend Only__] winname can be empty (or NULL) if the trackbar is attached to the control607panel.608609@param trackbarname Name of the trackbar.610@param winname Name of the window that is the parent of trackbar.611@param minval New minimum position.612*/613CV_EXPORTS_W void setTrackbarMin(const String& trackbarname, const String& winname, int minval);614615//! @addtogroup highgui_opengl OpenGL support616//! @{617618/** @brief Displays OpenGL 2D texture in the specified window.619620@param winname Name of the window.621@param tex OpenGL 2D texture data.622*/623CV_EXPORTS void imshow(const String& winname, const ogl::Texture2D& tex);624625/** @brief Sets a callback function to be called to draw on top of displayed image.626627The function setOpenGlDrawCallback can be used to draw 3D data on the window. See the example of628callback function below:629@code630void on_opengl(void* param)631{632glLoadIdentity();633634glTranslated(0.0, 0.0, -1.0);635636glRotatef( 55, 1, 0, 0 );637glRotatef( 45, 0, 1, 0 );638glRotatef( 0, 0, 0, 1 );639640static const int coords[6][4][3] = {641{ { +1, -1, -1 }, { -1, -1, -1 }, { -1, +1, -1 }, { +1, +1, -1 } },642{ { +1, +1, -1 }, { -1, +1, -1 }, { -1, +1, +1 }, { +1, +1, +1 } },643{ { +1, -1, +1 }, { +1, -1, -1 }, { +1, +1, -1 }, { +1, +1, +1 } },644{ { -1, -1, -1 }, { -1, -1, +1 }, { -1, +1, +1 }, { -1, +1, -1 } },645{ { +1, -1, +1 }, { -1, -1, +1 }, { -1, -1, -1 }, { +1, -1, -1 } },646{ { -1, -1, +1 }, { +1, -1, +1 }, { +1, +1, +1 }, { -1, +1, +1 } }647};648649for (int i = 0; i < 6; ++i) {650glColor3ub( i*20, 100+i*10, i*42 );651glBegin(GL_QUADS);652for (int j = 0; j < 4; ++j) {653glVertex3d(0.2 * coords[i][j][0], 0.2 * coords[i][j][1], 0.2 * coords[i][j][2]);654}655glEnd();656}657}658@endcode659660@param winname Name of the window.661@param onOpenGlDraw Pointer to the function to be called every frame. This function should be662prototyped as void Foo(void\*) .663@param userdata Pointer passed to the callback function.(__Optional__)664*/665CV_EXPORTS void setOpenGlDrawCallback(const String& winname, OpenGlDrawCallback onOpenGlDraw, void* userdata = 0);666667/** @brief Sets the specified window as current OpenGL context.668669@param winname Name of the window.670*/671CV_EXPORTS void setOpenGlContext(const String& winname);672673/** @brief Force window to redraw its context and call draw callback ( See cv::setOpenGlDrawCallback ).674675@param winname Name of the window.676*/677CV_EXPORTS void updateWindow(const String& winname);678679//! @} highgui_opengl680681//! @addtogroup highgui_qt682//! @{683684/** @brief QtFont available only for Qt. See cv::fontQt685*/686struct QtFont687{688const char* nameFont; //!< Name of the font689Scalar color; //!< Color of the font. Scalar(blue_component, green_component, red_component[, alpha_component])690int font_face; //!< See cv::QtFontStyles691const int* ascii; //!< font data and metrics692const int* greek;693const int* cyrillic;694float hscale, vscale;695float shear; //!< slope coefficient: 0 - normal, >0 - italic696int thickness; //!< See cv::QtFontWeights697float dx; //!< horizontal interval between letters698int line_type; //!< PointSize699};700701/** @brief Creates the font to draw a text on an image.702703The function fontQt creates a cv::QtFont object. This cv::QtFont is not compatible with putText .704705A basic usage of this function is the following: :706@code707QtFont font = fontQt("Times");708addText( img1, "Hello World !", Point(50,50), font);709@endcode710711@param nameFont Name of the font. The name should match the name of a system font (such as712*Times*). If the font is not found, a default one is used.713@param pointSize Size of the font. If not specified, equal zero or negative, the point size of the714font is set to a system-dependent default value. Generally, this is 12 points.715@param color Color of the font in BGRA where A = 255 is fully transparent. Use the macro CV_RGB716for simplicity.717@param weight Font weight. Available operation flags are : cv::QtFontWeights You can also specify a positive integer for better control.718@param style Font style. Available operation flags are : cv::QtFontStyles719@param spacing Spacing between characters. It can be negative or positive.720*/721CV_EXPORTS QtFont fontQt(const String& nameFont, int pointSize = -1,722Scalar color = Scalar::all(0), int weight = QT_FONT_NORMAL,723int style = QT_STYLE_NORMAL, int spacing = 0);724725/** @brief Draws a text on the image.726727The function addText draws *text* on the image *img* using a specific font *font* (see example cv::fontQt728)729730@param img 8-bit 3-channel image where the text should be drawn.731@param text Text to write on an image.732@param org Point(x,y) where the text should start on an image.733@param font Font to use to draw a text.734*/735CV_EXPORTS void addText( const Mat& img, const String& text, Point org, const QtFont& font);736737/** @brief Draws a text on the image.738739@param img 8-bit 3-channel image where the text should be drawn.740@param text Text to write on an image.741@param org Point(x,y) where the text should start on an image.742@param nameFont Name of the font. The name should match the name of a system font (such as743*Times*). If the font is not found, a default one is used.744@param pointSize Size of the font. If not specified, equal zero or negative, the point size of the745font is set to a system-dependent default value. Generally, this is 12 points.746@param color Color of the font in BGRA where A = 255 is fully transparent.747@param weight Font weight. Available operation flags are : cv::QtFontWeights You can also specify a positive integer for better control.748@param style Font style. Available operation flags are : cv::QtFontStyles749@param spacing Spacing between characters. It can be negative or positive.750*/751CV_EXPORTS_W void addText(const Mat& img, const String& text, Point org, const String& nameFont, int pointSize = -1, Scalar color = Scalar::all(0),752int weight = QT_FONT_NORMAL, int style = QT_STYLE_NORMAL, int spacing = 0);753754/** @brief Displays a text on a window image as an overlay for a specified duration.755756The function displayOverlay displays useful information/tips on top of the window for a certain757amount of time *delayms*. The function does not modify the image, displayed in the window, that is,758after the specified delay the original content of the window is restored.759760@param winname Name of the window.761@param text Overlay text to write on a window image.762@param delayms The period (in milliseconds), during which the overlay text is displayed. If this763function is called before the previous overlay text timed out, the timer is restarted and the text764is updated. If this value is zero, the text never disappears.765*/766CV_EXPORTS_W void displayOverlay(const String& winname, const String& text, int delayms = 0);767768/** @brief Displays a text on the window statusbar during the specified period of time.769770The function displayStatusBar displays useful information/tips on top of the window for a certain771amount of time *delayms* . This information is displayed on the window statusbar (the window must be772created with the CV_GUI_EXPANDED flags).773774@param winname Name of the window.775@param text Text to write on the window statusbar.776@param delayms Duration (in milliseconds) to display the text. If this function is called before777the previous text timed out, the timer is restarted and the text is updated. If this value is778zero, the text never disappears.779*/780CV_EXPORTS_W void displayStatusBar(const String& winname, const String& text, int delayms = 0);781782/** @brief Saves parameters of the specified window.783784The function saveWindowParameters saves size, location, flags, trackbars value, zoom and panning785location of the window windowName.786787@param windowName Name of the window.788*/789CV_EXPORTS void saveWindowParameters(const String& windowName);790791/** @brief Loads parameters of the specified window.792793The function loadWindowParameters loads size, location, flags, trackbars value, zoom and panning794location of the window windowName.795796@param windowName Name of the window.797*/798CV_EXPORTS void loadWindowParameters(const String& windowName);799800CV_EXPORTS int startLoop(int (*pt2Func)(int argc, char *argv[]), int argc, char* argv[]);801802CV_EXPORTS void stopLoop();803804/** @brief Attaches a button to the control panel.805806The function createButton attaches a button to the control panel. Each button is added to a807buttonbar to the right of the last button. A new buttonbar is created if nothing was attached to the808control panel before, or if the last element attached to the control panel was a trackbar or if the809QT_NEW_BUTTONBAR flag is added to the type.810811See below various examples of the cv::createButton function call: :812@code813createButton(NULL,callbackButton);//create a push button "button 0", that will call callbackButton.814createButton("button2",callbackButton,NULL,QT_CHECKBOX,0);815createButton("button3",callbackButton,&value);816createButton("button5",callbackButton1,NULL,QT_RADIOBOX);817createButton("button6",callbackButton2,NULL,QT_PUSH_BUTTON,1);818createButton("button6",callbackButton2,NULL,QT_PUSH_BUTTON|QT_NEW_BUTTONBAR);// create a push button in a new row819@endcode820821@param bar_name Name of the button.822@param on_change Pointer to the function to be called every time the button changes its state.823This function should be prototyped as void Foo(int state,\*void); . *state* is the current state824of the button. It could be -1 for a push button, 0 or 1 for a check/radio box button.825@param userdata Pointer passed to the callback function.826@param type Optional type of the button. Available types are: (cv::QtButtonTypes)827@param initial_button_state Default state of the button. Use for checkbox and radiobox. Its828value could be 0 or 1. (__Optional__)829*/830CV_EXPORTS int createButton( const String& bar_name, ButtonCallback on_change,831void* userdata = 0, int type = QT_PUSH_BUTTON,832bool initial_button_state = false);833834//! @} highgui_qt835836//! @} highgui837838} // cv839840#endif841842843