OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:delayms
(Results
1 - 5
of
5
) sorted by null
/external/opencv3/modules/highgui/src/
window_QT.h
128
void displayInfo( QString name, QString text, int
delayms
);
129
void displayStatusBar( QString name, QString text, int
delayms
);
304
void displayInfo(QString text, int
delayms
);
305
void displayStatusBar(QString text, int
delayms
);
396
virtual void startDisplayInfo(QString text, int
delayms
) = 0;
427
void startDisplayInfo(QString text, int
delayms
);
483
void startDisplayInfo(QString text, int
delayms
);
window.cpp
397
void cv::displayStatusBar(const String& name, const String& text, int
delayms
)
399
cvDisplayStatusBar(name.c_str(),text.c_str(),
delayms
);
402
void cv::displayOverlay(const String& name, const String& text, int
delayms
)
404
cvDisplayOverlay(name.c_str(),text.c_str(),
delayms
);
window_QT.cpp
227
CV_IMPL void cvDisplayOverlay(const char* name, const char* text, int
delayms
)
237
Q_ARG(int,
delayms
));
265
CV_IMPL void cvDisplayStatusBar(const char* name, const char* text, int
delayms
)
275
Q_ARG(int,
delayms
));
286
unsigned long
delayms
= delay <= 0 ? ULONG_MAX : delay; //in milliseconds
local
291
if (key_pressed.wait(&mutexKey,
delayms
)) //false if timeout
965
void GuiReceiver::displayInfo(QString name, QString text, int
delayms
)
970
w->displayInfo(text,
delayms
);
974
void GuiReceiver::displayStatusBar(QString name, QString text, int
delayms
)
979
w->displayStatusBar(text,
delayms
);
[
all
...]
/external/opencv3/modules/highgui/include/opencv2/highgui/
highgui_c.h
83
CVAPI(void) cvDisplayOverlay(const char* name, const char* text, int
delayms
CV_DEFAULT(0));
84
CVAPI(void) cvDisplayStatusBar(const char* name, const char* text, int
delayms
CV_DEFAULT(0));
/external/opencv3/modules/highgui/include/opencv2/
highgui.hpp
615
@param
delayms
The period (in milliseconds), during which the overlay text is displayed. If this
620
amount of time *
delayms
*. The function does not modify the image, displayed in the window, that is,
623
CV_EXPORTS void displayOverlay(const String& winname, const String& text, int
delayms
= 0);
629
@param
delayms
Duration (in milliseconds) to display the text. If this function is called before
634
amount of time *
delayms
* . This information is displayed on the window statusbar (the window must be
637
CV_EXPORTS void displayStatusBar(const String& winname, const String& text, int
delayms
= 0);
Completed in 54 milliseconds