|
void | cv::namedWindow (const string &winname, int flags=WINDOW_AUTOSIZE) |
|
void | cv::destroyWindow (const string &winname) |
|
void | cv::destroyAllWindows () |
|
int | cv::startWindowThread () |
|
int | cv::waitKey (int delay=0) |
|
void | cv::imshow (const string &winname, InputArray mat) |
|
void | cv::resizeWindow (const string &winname, int width, int height) |
|
void | cv::moveWindow (const string &winname, int x, int y) |
|
void | cv::setWindowProperty (const string &winname, int prop_id, double prop_value) |
|
double | cv::getWindowProperty (const string &winname, int prop_id) |
|
void | cv::setMouseCallback (const string &winname, MouseCallback onMouse, void *userdata=0) |
| assigns callback for mouse events More...
|
|
int | cv::createTrackbar (const string &trackbarname, const string &winname, int *value, int count, TrackbarCallback onChange=0, void *userdata=0) |
|
int | cv::getTrackbarPos (const string &trackbarname, const string &winname) |
|
void | cv::setTrackbarPos (const string &trackbarname, const string &winname, int pos) |
|
void | cv::setOpenGlDrawCallback (const string &winname, OpenGlDrawCallback onOpenGlDraw, void *userdata=0) |
|
void | cv::setOpenGlContext (const string &winname) |
|
void | cv::updateWindow (const string &winname) |
|
void | cv::pointCloudShow (const string &winname, const GlCamera &camera, const GlArrays &arr) |
|
void | cv::pointCloudShow (const string &winname, const GlCamera &camera, InputArray points, InputArray colors=noArray()) |
|
CvFont | cv::fontQt (const string &nameFont, int pointSize=-1, Scalar color=Scalar::all(0), int weight=CV_FONT_NORMAL, int style=CV_STYLE_NORMAL, int spacing=0) |
|
void | cv::addText (const Mat &img, const string &text, Point org, CvFont font) |
|
void | cv::displayOverlay (const string &winname, const string &text, int delayms CV_DEFAULT(0)) |
|
void | cv::displayStatusBar (const string &winname, const string &text, int delayms CV_DEFAULT(0)) |
|
void | cv::saveWindowParameters (const string &windowName) |
|
void | cv::loadWindowParameters (const string &windowName) |
|
int | cv::startLoop (int(*pt2Func)(int argc, char *argv[]), int argc, char *argv[]) |
|
void | cv::stopLoop () |
|
int | cv::createButton (const string &bar_name, ButtonCallback on_change, void *userdata=NULL, int type=CV_PUSH_BUTTON, bool initial_button_state=0) |
|
Mat | cv::imread (const string &filename, int flags=1) |
|
bool | cv::imwrite (const string &filename, InputArray img, const vector< int > ¶ms=vector< int >()) |
|
Mat | cv::imdecode (InputArray buf, int flags) |
|
Mat | cv::imdecode (InputArray buf, int flags, Mat *dst) |
|
bool | cv::imencode (const string &ext, InputArray img, CV_OUT vector< uchar > &buf, const vector< int > ¶ms=vector< int >()) |
|