|
| 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,但返回完整的鍵碼。
|
| |