Searched defs:window_name (Results 1 - 25 of 35) sorted by relevance

12

/external/opencv3/samples/cpp/tutorial_code/ImgProc/
H A DPyramids.cpp19 const char* window_name = "Pyramids Demo"; variable
44 namedWindow( window_name, WINDOW_AUTOSIZE );
45 imshow( window_name, dst );
64 imshow( window_name, dst );
H A DSmoothing.cpp23 char window_name[] = "Smoothing Demo"; variable
35 namedWindow( window_name, WINDOW_AUTOSIZE );
95 imshow( window_name, dst );
106 imshow( window_name, dst );
H A DMorphology_2.cpp25 const char* window_name = "Morphology Transformations Demo"; variable
43 namedWindow( window_name, WINDOW_AUTOSIZE );
46 createTrackbar("Operator:\n 0: Opening - 1: Closing \n 2: Gradient - 3: Top Hat \n 4: Black Hat", window_name, &morph_operator, max_operator, Morphology_Operations );
49 createTrackbar( "Element:\n 0: Rect - 1: Cross - 2: Ellipse", window_name,
54 createTrackbar( "Kernel size:\n 2n +1", window_name,
78 imshow( window_name, dst );
H A DThreshold.cpp24 const char* window_name = "Threshold Demo"; variable
44 namedWindow( window_name, WINDOW_AUTOSIZE );
48 window_name, &threshold_type,
52 window_name, &threshold_value,
84 imshow( window_name, dst );
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
H A DcopyMakeBorder_demo.cpp19 const char* window_name = "copyMakeBorder Demo"; variable
47 namedWindow( window_name, WINDOW_AUTOSIZE );
54 imshow( window_name, dst );
70 imshow( window_name, dst );
H A DCannyDetector_Demo.cpp25 const char* window_name = "Edge Map"; variable
43 imshow( window_name, dst );
65 namedWindow( window_name, WINDOW_AUTOSIZE );
68 createTrackbar( "Min Threshold:", window_name, &lowThreshold, max_lowThreshold, CannyThreshold );
H A DLaplace_Demo.cpp26 const char* window_name = "Laplace Demo"; local
41 namedWindow( window_name, WINDOW_AUTOSIZE );
50 imshow( window_name, abs_dst );
H A DSobel_Demo.cpp23 const char* window_name = "Sobel Demo - Simple Edge Detector"; local
40 namedWindow( window_name, WINDOW_AUTOSIZE );
59 imshow( window_name, grad );
H A Dfilter2D_demo.cpp28 const char* window_name = "filter2D Demo"; local
39 namedWindow( window_name, WINDOW_AUTOSIZE );
61 imshow( window_name, dst );
/external/opencv3/samples/cpp/
H A Dstarter_video.cpp42 string window_name = "video | q or esc to quit"; local
44 namedWindow(window_name, WINDOW_KEEPRATIO); //resizable window;
52 imshow(window_name, frame);
/external/opencv3/samples/cpp/tutorial_code/objectDetection/
H A DobjectDetection.cpp20 String window_name = "Capture - Face detection"; variable
84 imshow( window_name, frame );
H A DobjectDetection2.cpp25 String window_name = "Capture - Face detection"; variable
97 imshow( window_name, frame );
/external/opencv3/apps/annotation/
H A Dopencv_annotation.cpp31 const string window_name="OpenCV Based Annotation Tool"; variable
59 imshow(window_name, current_view);
85 namedWindow(window_name, WINDOW_AUTOSIZE);
86 setMouseCallback(window_name, on_mouse);
88 imshow(window_name, image);
104 destroyWindow(window_name);
152 destroyWindow(window_name);
/external/opencv3/samples/directx/
H A Dwinapp.hpp15 WinApp(int width, int height, std::string& window_name) argument
19 m_window_name = window_name;
H A Dd3d10_interop.cpp30 D3D10WinApp(int width, int height, std::string& window_name, cv::VideoCapture& cap) : argument
31 D3DSample(width, height, window_name, cap) {}
H A Dd3d11_interop.cpp30 D3D11WinApp(int width, int height, std::string& window_name, cv::VideoCapture& cap) : argument
31 D3DSample(width, height, window_name, cap) {}
H A Dd3d9_interop.cpp30 D3D9WinApp(int width, int height, std::string& window_name, cv::VideoCapture& cap) : argument
31 D3DSample(width, height, window_name, cap) {}
H A Dd3d9ex_interop.cpp30 D3D9ExWinApp(int width, int height, std::string& window_name, cv::VideoCapture& cap) : argument
31 D3DSample(width, height, window_name, cap) {}
H A Dd3dsample.hpp30 D3DSample(int width, int height, std::string& window_name, cv::VideoCapture& cap) : argument
31 WinApp(width, height, window_name)
/external/opencv3/samples/cpp/tutorial_code/core/Matrix/
H A DDrawing_2.cpp27 int Drawing_Random_Lines( Mat image, char* window_name, RNG rng );
28 int Drawing_Random_Rectangles( Mat image, char* window_name, RNG rng );
29 int Drawing_Random_Ellipses( Mat image, char* window_name, RNG rng );
30 int Drawing_Random_Polylines( Mat image, char* window_name, RNG rng );
31 int Drawing_Random_Filled_Polygons( Mat image, char* window_name, RNG rng );
32 int Drawing_Random_Circles( Mat image, char* window_name, RNG rng );
33 int Displaying_Random_Text( Mat image, char* window_name, RNG rng );
34 int Displaying_Big_End( Mat image, char* window_name, RNG rng );
45 char window_name[] = "Drawing_2 Tutorial"; local
53 imshow( window_name, imag
108 Drawing_Random_Lines( Mat image, char* window_name, RNG rng ) argument
131 Drawing_Random_Rectangles( Mat image, char* window_name, RNG rng ) argument
157 Drawing_Random_Ellipses( Mat image, char* window_name, RNG rng ) argument
188 Drawing_Random_Polylines( Mat image, char* window_name, RNG rng ) argument
223 Drawing_Random_Filled_Polygons( Mat image, char* window_name, RNG rng ) argument
258 Drawing_Random_Circles( Mat image, char* window_name, RNG rng ) argument
282 Displaying_Random_Text( Mat image, char* window_name, RNG rng ) argument
306 Displaying_Big_End( Mat image, char* window_name, RNG ) argument
[all...]
/external/webrtc/webrtc/base/
H A Dmacwindowpicker.cc137 std::string window_name; local
138 ToUtf8(window_name_ref, &window_name);
149 << window_name local
/external/opencv3/modules/viz/src/
H A Dviz3d.cpp48 cv::viz::Viz3d::Viz3d(const String& window_name) : impl_(0) { create(window_name); } argument
70 void cv::viz::Viz3d::create(const String &window_name) argument
75 if (VizStorage::windowExists(window_name))
76 *this = VizStorage::get(window_name);
79 impl_ = new VizImpl(window_name);
H A Dvizcore.cpp108 cv::viz::Viz3d& cv::viz::VizStorage::get(const String &window_name) argument
110 String name = generateWindowName(window_name);
118 String window_name = window.getWindowName(); local
119 VizMap::iterator vm_itr = storage.m.find(window_name);
121 storage.m.insert(std::make_pair(window_name, window));
124 bool cv::viz::VizStorage::windowExists(const String &window_name) argument
126 String name = generateWindowName(window_name);
139 cv::String cv::viz::VizStorage::generateWindowName(const String &window_name) argument
143 if (window_name == output)
147 if (window_name
157 getWindowByName(const String &window_name) argument
160 imshow(const String& window_name, InputArray image, const Size& window_size) argument
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Dwindow_capturer_x11.cc401 XTextProperty window_name; local
402 window_name.value = NULL;
404 status = XGetWMName(display(), window, &window_name);
405 if (status && window_name.value && window_name.nitems) {
408 status = Xutf8TextPropertyToTextList(display(), &window_name, &list,
421 if (window_name.value)
422 XFree(window_name.value);
/external/libpng/contrib/gregbook/
H A Drpng-x.c122 static char titlebar[1024], *window_name = titlebar; variable
569 if (!XStringListToTextProperty(&window_name, 1, pWindowName))

Completed in 1230 milliseconds

12