1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #21182 from mshabunin:split-cv2cpp

Split cv2.cpp

* split cv2.cpp: util, numpy

* split cv2.cpp: convert

* split cv2.cpp: highgui, more utils

* split cv2.cpp: fix numpy import
This commit is contained in:
Maksim Shabunin
2021-12-05 15:49:36 +03:00
committed by GitHub
parent 676a724491
commit 973e1acb67
12 changed files with 2458 additions and 2142 deletions
+14
View File
@@ -0,0 +1,14 @@
#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