/external/opencv3/modules/highgui/include/opencv2/ |
D | highgui.hpp | 231 CV_EXPORTS_W void namedWindow(const String& winname, int flags = WINDOW_AUTOSIZE); 239 CV_EXPORTS_W void destroyWindow(const String& winname); 305 CV_EXPORTS_W void imshow(const String& winname, InputArray mat); 318 CV_EXPORTS_W void resizeWindow(const String& winname, int width, int height); 326 CV_EXPORTS_W void moveWindow(const String& winname, int x, int y); 349 CV_EXPORTS_W void setWindowProperty(const String& winname, int prop_id, double prop_value); 353 CV_EXPORTS_W void setWindowTitle(const String& winname, const String& title); 370 CV_EXPORTS_W double getWindowProperty(const String& winname, int prop_id); 380 CV_EXPORTS void setMouseCallback(const String& winname, MouseCallback onMouse, void* userdata = 0); 435 CV_EXPORTS int createTrackbar(const String& trackbarname, const String& winname, [all …]
|
/external/opencv3/modules/highgui/src/ |
D | window.cpp | 156 void cv::namedWindow( const String& winname, int flags ) in namedWindow() argument 158 cvNamedWindow( winname.c_str(), flags ); in namedWindow() 161 void cv::destroyWindow( const String& winname ) in destroyWindow() argument 163 cvDestroyWindow( winname.c_str() ); in destroyWindow() 171 void cv::resizeWindow( const String& winname, int width, int height ) in resizeWindow() argument 173 cvResizeWindow( winname.c_str(), width, height ); in resizeWindow() 176 void cv::moveWindow( const String& winname, int x, int y ) in moveWindow() argument 178 cvMoveWindow( winname.c_str(), x, y ); in moveWindow() 181 void cv::setWindowProperty(const String& winname, int prop_id, double prop_value) in setWindowProperty() argument 183 cvSetWindowProperty( winname.c_str(), prop_id, prop_value); in setWindowProperty() [all …]
|
D | window_carbon.cpp | 837 void cv::setWindowTitle(const String& winname, const String& title) in setWindowTitle() argument 839 CvWindow* window = icvFindWindowByName(winname.c_str()); in setWindowTitle() 843 namedWindow(winname); in setWindowTitle() 844 window = icvFindWindowByName(winname.c_str()); in setWindowTitle() 851 …CV_Error_(Error::StsError, ("Failed to set \"%s\" window title to \"%s\"", winname.c_str(), title.… in setWindowTitle()
|
D | window_cocoa.mm | 639 void cv::setWindowTitle(const String& winname, const String& title) 641 CVWindow *window = cvGetWindow(winname.c_str()); 645 namedWindow(winname); 646 window = cvGetWindow(winname.c_str());
|
D | window_gtk.cpp | 736 void cv::setWindowTitle(const String& winname, const String& title) in setWindowTitle() argument 738 CvWindow* window = icvFindWindowByName(winname.c_str()); in setWindowTitle() 742 namedWindow(winname); in setWindowTitle() 743 window = icvFindWindowByName(winname.c_str()); in setWindowTitle()
|
D | window_w32.cpp | 493 void cv::setWindowTitle(const String& winname, const String& title) in setWindowTitle() argument 495 CvWindow* window = icvFindWindowByName(winname.c_str()); in setWindowTitle() 499 namedWindow(winname); in setWindowTitle() 500 window = icvFindWindowByName(winname.c_str()); in setWindowTitle() 507 …CV_Error_(Error::StsError, ("Failed to set \"%s\" window title to \"%s\"", winname.c_str(), title.… in setWindowTitle()
|
D | window_QT.cpp | 184 void cv::setWindowTitle(const String& winname, const String& title) in setWindowTitle() argument 192 Q_ARG(QString, QString(winname.c_str())), in setWindowTitle()
|
/external/opencv3/samples/cpp/ |
D | intelperc_capture.cpp | 155 static void imshowImage(const char *winname, Mat &image, VideoCapture &capture) in imshowImage() argument 180 imshow(winname, image); in imshowImage() 182 static void imshowIR(const char *winname, Mat &ir) in imshowIR() argument 225 imshow(winname, image); in imshowIR() 227 static void imshowDepth(const char *winname, Mat &depth, VideoCapture &capture) in imshowDepth() argument 284 imshow(winname, image); in imshowDepth()
|