|
| void | cv::addText (const Mat &img, const String &text, Point org, const QtFont &font) |
| | 在图像上绘制文本。
|
| |
| void | cv::addText (const Mat &img, const String &text, Point org, const String &nameFont, int pointSize=-1, Scalar color=Scalar::all(0), int weight=QT_FONT_NORMAL, int style=QT_STYLE_NORMAL, int spacing=0) |
| | 在图像上绘制文本。
|
| |
| int | cv::createButton (const String &bar_name, ButtonCallback on_change, void *userdata=0, int type=QT_PUSH_BUTTON, bool initial_button_state=false) |
| | Attaches a button to the control panel.
|
| |
| int | cv::createTrackbar (const String &trackbarname, const String &winname, int *value, int count, TrackbarCallback onChange=0, void *userdata=0) |
| | 创建滑动条并将其附加到指定窗口。
|
| |
| const std::string | cv::currentUIFramework () |
| | 使用的HighGUI后端。
|
| |
| void | cv::destroyAllWindows () |
| | 销毁所有HighGUI窗口。
|
| |
| void | cv::destroyWindow (const String &winname) |
| | 销毁指定窗口。
|
| |
| void | cv::displayOverlay (const String &winname, const String &text, int delayms=0) |
| | 在窗口图像上显示文本作为指定持续时间的叠加层。
|
| |
| void | cv::displayStatusBar (const String &winname, const String &text, int delayms=0) |
| | 在指定时间内在窗口状态栏上显示文本。
|
| |
| QtFont | cv::fontQt (const String &nameFont, int pointSize=-1, Scalar color=Scalar::all(0), int weight=QT_FONT_NORMAL, int style=QT_STYLE_NORMAL, int spacing=0) |
| | 创建用于在图像上绘制文本的字体。
|
| |
| int | cv::getMouseWheelDelta (int flags) |
| | 在处理鼠标滚轮事件 cv::EVENT_MOUSEWHEEL 和 cv::EVENT_MOUSEHWHEEL 时,获取鼠标滚轮的移动增量。
|
| |
| int | cv::getTrackbarPos (const String &trackbarname, const String &winname) |
| | 返回滑动条位置。
|
| |
| Rect | cv::getWindowImageRect (const String &winname) |
| | 提供窗口中图像的矩形区域。
|
| |
| double | cv::getWindowProperty (const String &winname, int prop_id) |
| | 提供窗口参数。
|
| |
| void | cv::imshow (const String &winname, const ogl::Texture2D &tex) |
| | 在指定窗口中显示 OpenGL 2D 纹理。
|
| |
| void | cv::imshow (const String &winname, InputArray mat) |
| | 在指定窗口中显示图像。
|
| |
| void | cv::loadWindowParameters (const String &windowName) |
| | 加载指定窗口的参数。
|
| |
| void | cv::moveWindow (const String &winname, int x, int y) |
| | 将窗口移动到指定位置。
|
| |
| void | cv::namedWindow (const String &winname, int flags=WINDOW_AUTOSIZE) |
| | 创建窗口。
|
| |
| int | cv::pollKey () |
| | 轮询按下的键。
|
| |
| void | cv::resizeWindow (const String &winname, const cv::Size &size) |
| |
| void | cv::resizeWindow (const String &winname, int width, int height) |
| | 将窗口调整到指定大小。
|
| |
| void | cv::saveWindowParameters (const String &windowName) |
| | 保存指定窗口的参数。
|
| |
| Rect | cv::selectROI (const String &windowName, InputArray img, bool showCrosshair=true, bool fromCenter=false, bool printNotice=true) |
| | 允许用户在给定图像上选择一个ROI。
|
| |
| Rect | cv::selectROI (InputArray img, bool showCrosshair=true, bool fromCenter=false, bool printNotice=true) |
| |
| void | cv::selectROIs (const String &windowName, InputArray img, std::vector< Rect > &boundingBoxes, bool showCrosshair=true, bool fromCenter=false, bool printNotice=true) |
| | 允许用户在给定图像上选择多个ROI。
|
| |
| void | cv::setMouseCallback (const String &winname, MouseCallback onMouse, void *userdata=0) |
| | 为指定窗口设置鼠标处理程序。
|
| |
| void | cv::setOpenGlContext (const String &winname) |
| | 将指定窗口设置为当前OpenGL上下文。
|
| |
| void | cv::setOpenGlDrawCallback (const String &winname, OpenGlDrawCallback onOpenGlDraw, void *userdata=0) |
| | 设置一个回调函数,用于在显示的图像顶部进行绘制。
|
| |
| void | cv::setTrackbarMax (const String &trackbarname, const String &winname, int maxval) |
| | 设置滑动条最大位置。
|
| |
| void | cv::setTrackbarMin (const String &trackbarname, const String &winname, int minval) |
| | 设置滑动条最小位置。
|
| |
| void | cv::setTrackbarPos (const String &trackbarname, const String &winname, int pos) |
| | 设置滑动条位置。
|
| |
| void | cv::setWindowProperty (const String &winname, int prop_id, double prop_value) |
| | 动态更改窗口参数。
|
| |
| void | cv::setWindowTitle (const String &winname, const String &title) |
| | 更新窗口标题。
|
| |
| int | cv::startLoop (int(*pt2Func)(int argc, char *argv[]), int argc, char *argv[]) |
| |
| int | cv::startWindowThread () |
| |
| void | cv::stopLoop () |
| |
| void | cv::updateWindow (const String &winname) |
| | 强制窗口重绘其上下文并调用绘制回调(请参阅 cv::setOpenGlDrawCallback)。
|
| |
| int | cv::waitKey (int delay=0) |
| | 等待按键按下。
|
| |
| int | cv::waitKeyEx (int delay=0) |
| | 类似于 waitKey,但返回完整的键码。
|
| |