HomeSort by relevance Sort by last modified time
    Searched refs:WINDOW_NORMAL (Results 1 - 12 of 12) sorted by null

  /external/opencv3/samples/gpu/
alpha_comp.cpp 17 namedWindow("First Image", WINDOW_NORMAL);
18 namedWindow("Second Image", WINDOW_NORMAL);
bgfg_segm.cpp 106 namedWindow("image", WINDOW_NORMAL);
107 namedWindow("foreground mask", WINDOW_NORMAL);
108 namedWindow("foreground image", WINDOW_NORMAL);
111 namedWindow("mean background image", WINDOW_NORMAL);
video_reader.cpp 26 cv::namedWindow("CPU", cv::WINDOW_NORMAL);
pyrlk_optical_flow.cpp 127 namedWindow("PyrLK [Sparse]", WINDOW_NORMAL);
128 namedWindow("PyrLK [Dense] Flow Field", WINDOW_NORMAL);
  /external/opencv3/samples/cpp/
bgfg_segm.cpp 55 namedWindow("image", WINDOW_NORMAL);
56 namedWindow("foreground mask", WINDOW_NORMAL);
57 namedWindow("foreground image", WINDOW_NORMAL);
58 namedWindow("mean background image", WINDOW_NORMAL);
pca.cpp 163 namedWindow(winName, WINDOW_NORMAL);
  /external/opencv3/samples/cpp/tutorial_code/calib3d/stereoBM/
SBM_Sample.cpp 58 namedWindow( windowDisparity, WINDOW_NORMAL );
  /external/opencv3/modules/stitching/perf/opencl/
perf_warpers.cpp 146 namedWindow("src", WINDOW_NORMAL);
147 namedWindow("dst", WINDOW_NORMAL);
  /external/opencv3/modules/ts/src/
ocl_test.cpp 315 namedWindow("src", WINDOW_NORMAL);
316 namedWindow("gold", WINDOW_NORMAL);
317 namedWindow("actual", WINDOW_NORMAL);
318 namedWindow("diff", WINDOW_NORMAL);
cuda_test.cpp 424 namedWindow("gold", WINDOW_NORMAL);
425 namedWindow("actual", WINDOW_NORMAL);
426 namedWindow("diff", WINDOW_NORMAL);
  /external/opencv3/samples/tapi/
camshift.cpp 94 cv::namedWindow("Histogram", cv::WINDOW_NORMAL);
95 cv::namedWindow("CamShift Demo", cv::WINDOW_NORMAL);
  /external/opencv3/modules/highgui/include/opencv2/
highgui.hpp 137 enum { WINDOW_NORMAL = 0x00000000, // the user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size
147 enum { WND_PROP_FULLSCREEN = 0, // fullscreen property (can be WINDOW_NORMAL or WINDOW_FULLSCREEN)
148 WND_PROP_AUTOSIZE = 1, // autosize property (can be WINDOW_NORMAL or WINDOW_AUTOSIZE)
205 > - **WINDOW_NORMAL** If this is set, the user can resize the window (no constraint).
292 If you need to show an image that is bigger than the screen resolution, you will need to call namedWindow("", WINDOW_NORMAL) before the imshow.

Completed in 327 milliseconds