Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 8a0bb40

Browse files
committed
new package versions update
1 parent 63032b7 commit 8a0bb40

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ There is a [guy with an exellent pre-built set of OpenCV packages](https://githu
99

1010
**Limitations**:
1111
+ Package comes without contrib modules.
12-
+ It was tested on Ubuntu 16.04, Ubuntu 18.04, Ubuntu 18.10 as Windows 10 Subsystem and Gentoo.
12+
+ It was tested on Ubuntu 18.04, Ubuntu 18.10 as Windows 10 Subsystem and Gentoo.
13+
+ It will not work for Ubuntu 16.04 and below (except v4.1.0.4).
1314
+ I had not made builds for Windows or MacOS.
1415
+ It is 64 bit.
1516
+ It built with `ffmpeg` and `v4l` support (`ffmpeg` libs included).
@@ -33,6 +34,16 @@ pip3 install opencv-python-inference-engine
3334

3435
## Known problems and TODOs
3536

37+
### No Ubuntu 16.04 support
38+
39+
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+
3647
### No GTK/QT support
3748

3849
[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
96107
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)
97108
2. Unpack archives to `dldt`,`opencv` and `ffmpeg` folders.
98109

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):
100111

101112
```bash
102113
cd dldt/inference-engine/thirdparty/ade
@@ -126,9 +137,6 @@ make -j8
126137
make install
127138

128139
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)")
131-
# <https://github.com/opencv/dldt/pull/139>
132140
./dldt_setup.sh
133141
make -j8
134142

create_wheel/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ For additional info read <https://github.com/banderlog/opencv-python-inference-e
1212

1313
**Why:**
1414

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/).
16+

create_wheel/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ def __len__(self):
1515

1616
setuptools.setup(
1717
name="opencv-python-inference-engine",
18-
version="4.1.0.4",
18+
version="4.1.1.0",
1919
url="https://github.com/banderlog/opencv-python-inference-engine",
2020
maintainer="Kabakov Borys",
2121
license='MIT, BSD',
22-
description="Wrapper package for OpenCV 4.1.0 with Inference Engine 2019_R1.1 python bindings",
22+
description="Wrapper package for OpenCV 4.1.1 with Inference Engine 2019_R2 python bindings",
2323
long_description=long_description,
2424
long_description_content_type="text/markdown",
2525
ext_modules=EmptyListWithLength(),

0 commit comments

Comments
 (0)