|
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) |
| 将按钮附加到控制面板上。
|
|
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 类似,但返回完整的按键代码。
|
|