You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+5-9
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# pybind11_opencv_numpy
2
2
3
-
Binding between cv::Mat and np.array. And a small code example of how it work. The code work for `OpenCV 2.4`, `OpenCV 3+` and `OpenCV 4+`
3
+
Binding between cv::Mat and np.array. And a small code example of how it work. The code work for `OpenCV 3+` and `OpenCV 4+`
4
4
5
5
The code in this repository create a simple binding, function in c++ are implemented in [`tests/cpp/test.cpp`](tests/cpp/test.cpp) file and python script that use them are in the tests folder like [`tests/test_binding.py`](tests/test_binding.py).
6
6
@@ -16,11 +16,11 @@ The code in this repository create a simple binding, function in c++ are impleme
16
16
There is 3 way to build the project, more information can be found on pybind11 website [here](https://pybind11.readthedocs.io/en/stable/compiling.html#build-systems) :
17
17
1. build with cmake : the basic, compiled library will be generated in build folder
18
18
2. build with setup.py and cmake : install your module in python and dependency are managed by cmake/vcpkg (opencv and pybind11)
19
-
3. build with setup.py and setuptools : install your module in python and dependency are managed by python package (opencv and pybind11)***Soon***
19
+
3.***Not Supported Yet***build with setup.py and setuptools : install your module in python and dependency are managed by python package (opencv and pybind11)
20
20
21
21
## Build with cmake
22
22
23
-
*Note* : This method support opencv 2.4, opencv 3 and opencv 4.
23
+
*Note* : This method support opencv 3 and opencv 4.
0 commit comments