OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:waitKey
(Results
126 - 150
of
204
) sorted by null
1
2
3
4
5
6
7
8
9
/external/opencv3/samples/python2/
dft.py
99
cv2.
waitKey
(0)
feature_homography.py
79
ch = cv2.
waitKey
(1)
fitline.py
82
ch = cv2.
waitKey
(0) & 0xFF
gaussian_mix.py
56
ch = 0xFF & cv2.
waitKey
(0)
hist.py
84
k = cv2.
waitKey
(0)&0xFF
kalman.py
82
code = cv2.
waitKey
(100) % 0x100
mouse_and_match.py
73
if (cv2.
waitKey
() & 255) == 27:
watershed.py
58
ch = 0xFF & cv2.
waitKey
(50)
/external/opencv3/samples/cpp/
smiledetect.cpp
137
if(
waitKey
( 10 ) >= 0 )
141
waitKey
(0);
create_mask.cpp
148
waitKey
(0);
distrans.cpp
134
int c =
waitKey
(0) & 255;
logistic_regression.cpp
180
waitKey
(0);
pca.cpp
182
key =
waitKey
();
squares.cpp
163
int c =
waitKey
();
watershed.cpp
71
int c =
waitKey
(0);
/external/opencv3/samples/tapi/
pyrlk_optical_flow.cpp
185
char key = (char)
waitKey
(10);
229
waitKey
();
tvl1_optical_flow.cpp
183
char key = (char)
waitKey
(10);
230
waitKey
();
/external/opencv3/apps/annotation/
opencv_annotation.cpp
100
key_pressed = 0xFF &
waitKey
(0);
/external/opencv3/modules/highgui/include/opencv2/
highgui.hpp
253
The function
waitKey
waits for a key event infinitely (when \f$\texttt{delay}\leq 0\f$ ) or for delay
270
CV_EXPORTS_W int
waitKey
(int delay = 0);
294
@note This function should be followed by
waitKey
function which displays the image for specified
295
milliseconds. Otherwise, it won't display the image. For example,
waitKey
(0) will display the window
296
infinitely until any keypress (it is suitable for image display).
waitKey
(25) will display a frame
/external/opencv3/modules/stitching/perf/opencl/
perf_warpers.cpp
151
cv::
waitKey
();
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
imageSegmentation.cpp
166
waitKey
(0);
/external/opencv3/samples/cpp/tutorial_code/core/Matrix/
Drawing_1.cpp
72
waitKey
( 0 );
/external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
introduction_to_pca.cpp
144
waitKey
(0);
/external/opencv3/samples/cpp/tutorial_code/ml/non_linear_svms/
non_linear_svms.cpp
142
waitKey
(0);
/external/opencv3/samples/gpu/
driver_api_stereo_multi.cpp
197
waitKey
();
Completed in 429 milliseconds
1
2
3
4
5
6
7
8
9