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
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ The code in this repository create a simple binding, function in c++ are impleme
13
13
└── ...
14
14
```
15
15
16
-
There is 3 way to build the project, more information can be found on pybin11 website [here](https://pybind11.readthedocs.io/en/stable/compiling.html#build-systems) :
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
19
3. build with setup.py and setuptools : install your module in python and dependency are managed by python package (opencv and pybind11) *** Soon ***
@@ -94,3 +94,8 @@ Tests use the binding module generate by cmake.
94
94
```bash
95
95
python -m pytest
96
96
```
97
+
98
+
99
+
## Limitation
100
+
101
+
Currently, the conversion between cv::Mat and Numpy.ndarray is done by copy.
0 commit comments