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
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Release [v4.1.0.4](https://github.com/banderlog/opencv-python-inference-engine/releases/tag/v4.1.0.4) is working with Ubuntu 16.04.
40
+
41
+
All releases before it were compiled on Ubuntu 18.04 and it has different versions of `glibc`, `cmake`, etc.
42
+
So make it Ubuntu 16.04 compatible was pretty easy -- just change one standard build environment to another.
43
+
44
+
But `dldt-2019R2` requires `cmake-3.7.2`, which is absent in Ubuntu 16.04. And, of course, it can be installed, but works-from-the-box behavior is loosed
45
+
from now on.
46
+
36
47
### No GTK/QT support
37
48
38
49
[skvarks's package](https://github.com/skvark/opencv-python) has `Qt4` GUI for `opencv` and it is +16 MB to file size.
@@ -96,7 +107,7 @@ Last successfully tested with dldt-2019_R1.1, opencv-4.1.0, ffmpeg-4.1.3
96
107
1. Download releases of [dldt](https://github.com/opencv/dldt/releases), [opencv](https://github.com/opencv/opencv/releases) and [ffmpeg](https://github.com/FFmpeg/FFmpeg/releases) (or clone their repos)
97
108
2. Unpack archives to `dldt`,`opencv` and `ffmpeg` folders.
98
109
99
-
3. You'll need to get 3rd party `ade` code for dldt of certain commit (as in original dldt repo):
110
+
3. You'll need to get 3rd party `ade` code for dldt of certain commit (if you did not download a `sources_with_submodules`, they are avaliable from v2019_R2):
100
111
101
112
```bash
102
113
cd dldt/inference-engine/thirdparty/ade
@@ -126,9 +137,6 @@ make -j8
126
137
make install
127
138
128
139
cd ../dldt
129
-
# if you do not want to buld all IE tests --
130
-
# comment L:142 in `../../dldt/inference-engine/CMakeLists.txt` ("add_subdirectory(tests)")
Copy file name to clipboardExpand all lines: create_wheel/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,4 +12,5 @@ For additional info read <https://github.com/banderlog/opencv-python-inference-e
12
12
13
13
**Why:**
14
14
15
-
Now [opencv-python](https://github.com/skvark/opencv-python) package comes with [dldt](https://github.com/opencv/dldt) module, thus just for fun.
15
+
There is a [guy with an exellent pre-built set of OpenCV packages](https://github.com/skvark/opencv-python), but they are all came without [dldt module](https://github.com/opencv/dldt). And you need that module if you want to run models from [Intel's model zoo](https://github.com/opencv/open_model_zoo/).
0 commit comments