highgui_c.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // Intel License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000, Intel Corporation, 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 documentation
  24. // and/or other materials provided with the distribution.
  25. //
  26. // * The name of Intel Corporation may not be used to endorse or promote products
  27. // derived from this software without specific prior written permission.
  28. //
  29. // This software is provided by the copyright holders and contributors "as is" and
  30. // any express or implied warranties, including, but not limited to, the implied
  31. // 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 damages
  34. // (including, but not limited to, procurement of substitute goods or services;
  35. // loss of use, data, or profits; or business interruption) however caused
  36. // and on any theory of liability, whether in contract, strict liability,
  37. // or tort (including negligence or otherwise) arising in any way out of
  38. // the use of this software, even if advised of the possibility of such damage.
  39. //
  40. //M*/
  41. #ifndef OPENCV_HIGHGUI_H
  42. #define OPENCV_HIGHGUI_H
  43. #include "opencv2/core/core_c.h"
  44. #include "opencv2/imgproc/imgproc_c.h"
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif /* __cplusplus */
  48. /** @addtogroup highgui_c
  49. @{
  50. */
  51. /****************************************************************************************\
  52. * Basic GUI functions *
  53. \****************************************************************************************/
  54. //YV
  55. //-----------New for Qt
  56. /* For font */
  57. enum { CV_FONT_LIGHT = 25,//QFont::Light,
  58. CV_FONT_NORMAL = 50,//QFont::Normal,
  59. CV_FONT_DEMIBOLD = 63,//QFont::DemiBold,
  60. CV_FONT_BOLD = 75,//QFont::Bold,
  61. CV_FONT_BLACK = 87 //QFont::Black
  62. };
  63. enum { CV_STYLE_NORMAL = 0,//QFont::StyleNormal,
  64. CV_STYLE_ITALIC = 1,//QFont::StyleItalic,
  65. CV_STYLE_OBLIQUE = 2 //QFont::StyleOblique
  66. };
  67. /* ---------*/
  68. //for color cvScalar(blue_component, green_component, red_component[, alpha_component])
  69. //and alpha= 0 <-> 0xFF (not transparent <-> transparent)
  70. CVAPI(CvFont) cvFontQt(const char* nameFont, int pointSize CV_DEFAULT(-1), CvScalar color CV_DEFAULT(cvScalarAll(0)), int weight CV_DEFAULT(CV_FONT_NORMAL), int style CV_DEFAULT(CV_STYLE_NORMAL), int spacing CV_DEFAULT(0));
  71. CVAPI(void) cvAddText(const CvArr* img, const char* text, CvPoint org, CvFont *arg2);
  72. CVAPI(void) cvDisplayOverlay(const char* name, const char* text, int delayms CV_DEFAULT(0));
  73. CVAPI(void) cvDisplayStatusBar(const char* name, const char* text, int delayms CV_DEFAULT(0));
  74. CVAPI(void) cvSaveWindowParameters(const char* name);
  75. CVAPI(void) cvLoadWindowParameters(const char* name);
  76. CVAPI(int) cvStartLoop(int (*pt2Func)(int argc, char *argv[]), int argc, char* argv[]);
  77. CVAPI(void) cvStopLoop( void );
  78. typedef void (CV_CDECL *CvButtonCallback)(int state, void* userdata);
  79. enum {CV_PUSH_BUTTON = 0, CV_CHECKBOX = 1, CV_RADIOBOX = 2};
  80. CVAPI(int) 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));
  81. //----------------------
  82. /* this function is used to set some external parameters in case of X Window */
  83. CVAPI(int) cvInitSystem( int argc, char** argv );
  84. CVAPI(int) cvStartWindowThread( void );
  85. // --------- YV ---------
  86. enum
  87. {
  88. //These 3 flags are used by cvSet/GetWindowProperty
  89. CV_WND_PROP_FULLSCREEN = 0, //to change/get window's fullscreen property
  90. CV_WND_PROP_AUTOSIZE = 1, //to change/get window's autosize property
  91. CV_WND_PROP_ASPECTRATIO= 2, //to change/get window's aspectratio property
  92. CV_WND_PROP_OPENGL = 3, //to change/get window's opengl support
  93. CV_WND_PROP_VISIBLE = 4,
  94. //These 2 flags are used by cvNamedWindow and cvSet/GetWindowProperty
  95. CV_WINDOW_NORMAL = 0x00000000, //the user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size
  96. CV_WINDOW_AUTOSIZE = 0x00000001, //the user cannot resize the window, the size is constrainted by the image displayed
  97. CV_WINDOW_OPENGL = 0x00001000, //window with opengl support
  98. //Those flags are only for Qt
  99. CV_GUI_EXPANDED = 0x00000000, //status bar and tool bar
  100. CV_GUI_NORMAL = 0x00000010, //old fashious way
  101. //These 3 flags are used by cvNamedWindow and cvSet/GetWindowProperty
  102. CV_WINDOW_FULLSCREEN = 1,//change the window to fullscreen
  103. CV_WINDOW_FREERATIO = 0x00000100,//the image expends as much as it can (no ratio constraint)
  104. CV_WINDOW_KEEPRATIO = 0x00000000//the ration image is respected.
  105. };
  106. /* create window */
  107. CVAPI(int) cvNamedWindow( const char* name, int flags CV_DEFAULT(CV_WINDOW_AUTOSIZE) );
  108. /* Set and Get Property of the window */
  109. CVAPI(void) cvSetWindowProperty(const char* name, int prop_id, double prop_value);
  110. CVAPI(double) cvGetWindowProperty(const char* name, int prop_id);
  111. #ifdef __cplusplus // FIXIT remove in OpenCV 4.0
  112. /* Get window image rectangle coordinates, width and height */
  113. CVAPI(cv::Rect)cvGetWindowImageRect(const char* name);
  114. #endif
  115. /* display image within window (highgui windows remember their content) */
  116. CVAPI(void) cvShowImage( const char* name, const CvArr* image );
  117. /* resize/move window */
  118. CVAPI(void) cvResizeWindow( const char* name, int width, int height );
  119. CVAPI(void) cvMoveWindow( const char* name, int x, int y );
  120. /* destroy window and all the trackers associated with it */
  121. CVAPI(void) cvDestroyWindow( const char* name );
  122. CVAPI(void) cvDestroyAllWindows(void);
  123. /* get native window handle (HWND in case of Win32 and Widget in case of X Window) */
  124. CVAPI(void*) cvGetWindowHandle( const char* name );
  125. /* get name of highgui window given its native handle */
  126. CVAPI(const char*) cvGetWindowName( void* window_handle );
  127. typedef void (CV_CDECL *CvTrackbarCallback)(int pos);
  128. /* create trackbar and display it on top of given window, set callback */
  129. CVAPI(int) cvCreateTrackbar( const char* trackbar_name, const char* window_name,
  130. int* value, int count, CvTrackbarCallback on_change CV_DEFAULT(NULL));
  131. typedef void (CV_CDECL *CvTrackbarCallback2)(int pos, void* userdata);
  132. CVAPI(int) cvCreateTrackbar2( const char* trackbar_name, const char* window_name,
  133. int* value, int count, CvTrackbarCallback2 on_change,
  134. void* userdata CV_DEFAULT(0));
  135. /* retrieve or set trackbar position */
  136. CVAPI(int) cvGetTrackbarPos( const char* trackbar_name, const char* window_name );
  137. CVAPI(void) cvSetTrackbarPos( const char* trackbar_name, const char* window_name, int pos );
  138. CVAPI(void) cvSetTrackbarMax(const char* trackbar_name, const char* window_name, int maxval);
  139. CVAPI(void) cvSetTrackbarMin(const char* trackbar_name, const char* window_name, int minval);
  140. enum
  141. {
  142. CV_EVENT_MOUSEMOVE =0,
  143. CV_EVENT_LBUTTONDOWN =1,
  144. CV_EVENT_RBUTTONDOWN =2,
  145. CV_EVENT_MBUTTONDOWN =3,
  146. CV_EVENT_LBUTTONUP =4,
  147. CV_EVENT_RBUTTONUP =5,
  148. CV_EVENT_MBUTTONUP =6,
  149. CV_EVENT_LBUTTONDBLCLK =7,
  150. CV_EVENT_RBUTTONDBLCLK =8,
  151. CV_EVENT_MBUTTONDBLCLK =9,
  152. CV_EVENT_MOUSEWHEEL =10,
  153. CV_EVENT_MOUSEHWHEEL =11
  154. };
  155. enum
  156. {
  157. CV_EVENT_FLAG_LBUTTON =1,
  158. CV_EVENT_FLAG_RBUTTON =2,
  159. CV_EVENT_FLAG_MBUTTON =4,
  160. CV_EVENT_FLAG_CTRLKEY =8,
  161. CV_EVENT_FLAG_SHIFTKEY =16,
  162. CV_EVENT_FLAG_ALTKEY =32
  163. };
  164. #define CV_GET_WHEEL_DELTA(flags) ((short)((flags >> 16) & 0xffff)) // upper 16 bits
  165. typedef void (CV_CDECL *CvMouseCallback )(int event, int x, int y, int flags, void* param);
  166. /* assign callback for mouse events */
  167. CVAPI(void) cvSetMouseCallback( const char* window_name, CvMouseCallback on_mouse,
  168. void* param CV_DEFAULT(NULL));
  169. /* wait for key event infinitely (delay<=0) or for "delay" milliseconds */
  170. CVAPI(int) cvWaitKey(int delay CV_DEFAULT(0));
  171. // OpenGL support
  172. typedef void (CV_CDECL *CvOpenGlDrawCallback)(void* userdata);
  173. CVAPI(void) cvSetOpenGlDrawCallback(const char* window_name, CvOpenGlDrawCallback callback, void* userdata CV_DEFAULT(NULL));
  174. CVAPI(void) cvSetOpenGlContext(const char* window_name);
  175. CVAPI(void) cvUpdateWindow(const char* window_name);
  176. /****************************************************************************************\
  177. * Obsolete functions/synonyms *
  178. \****************************************************************************************/
  179. #define cvAddSearchPath(path)
  180. #define cvvInitSystem cvInitSystem
  181. #define cvvNamedWindow cvNamedWindow
  182. #define cvvShowImage cvShowImage
  183. #define cvvResizeWindow cvResizeWindow
  184. #define cvvDestroyWindow cvDestroyWindow
  185. #define cvvCreateTrackbar cvCreateTrackbar
  186. #define cvvAddSearchPath cvAddSearchPath
  187. #define cvvWaitKey(name) cvWaitKey(0)
  188. #define cvvWaitKeyEx(name,delay) cvWaitKey(delay)
  189. #define HG_AUTOSIZE CV_WINDOW_AUTOSIZE
  190. #define set_preprocess_func cvSetPreprocessFuncWin32
  191. #define set_postprocess_func cvSetPostprocessFuncWin32
  192. #if defined _WIN32
  193. CVAPI(void) cvSetPreprocessFuncWin32_(const void* callback);
  194. CVAPI(void) cvSetPostprocessFuncWin32_(const void* callback);
  195. #define cvSetPreprocessFuncWin32(callback) cvSetPreprocessFuncWin32_((const void*)(callback))
  196. #define cvSetPostprocessFuncWin32(callback) cvSetPostprocessFuncWin32_((const void*)(callback))
  197. #endif
  198. /** @} highgui_c */
  199. #ifdef __cplusplus
  200. }
  201. #endif
  202. #endif