mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
422 B
14 lines
422 B
#ifndef CV2_HIGHGUI_HPP |
|
#define CV2_HIGHGUI_HPP |
|
|
|
#include "cv2.hpp" |
|
#include "opencv2/opencv_modules.hpp" |
|
|
|
#ifdef HAVE_OPENCV_HIGHGUI |
|
PyObject *pycvSetMouseCallback(PyObject*, PyObject *args, PyObject *kw); |
|
// workaround for #20408, use nullptr, set value later |
|
PyObject *pycvCreateTrackbar(PyObject*, PyObject *args); |
|
PyObject *pycvCreateButton(PyObject*, PyObject *args, PyObject *kw); |
|
#endif |
|
|
|
#endif // CV2_HIGHGUI_HPP
|
|
|