|
| 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 に似ているが、完全なキーコードを返す。
|
| |