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.
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# opencv-python-inference-engine
4
4
5
-
This is *Unofficial* pre-built OpenCV with the inference engine part of [dldt module](https://github.com/opencv/dldt/) package for Python.
5
+
This is *Unofficial* pre-built OpenCV with the inference engine part of [OpenVINO](https://github.com/openvinotoolkit/openvino) package for Python.
6
6
7
7
## Installing from `pip3`
8
8
@@ -23,23 +23,23 @@ You will need to preprocess data as a model requires and decode the output. A de
23
23
24
24
The official way is clumsy because you need to git clone the whole [model_zoo](https://github.com/opencv/open_model_zoo) ([details](https://github.com/opencv/open_model_zoo/issues/522))
25
25
26
-
Better to find a model description [here](https://github.com/opencv/open_model_zoo/blob/master/models/intel/index.md) and download manually from [here](https://download.01.org/opencv/2020/openvinotoolkit/2020.1/open_model_zoo/models_bin/1/)
26
+
Better to find a model description [here](https://github.com/opencv/open_model_zoo/blob/master/models/intel/index.md) and download manually from [here](https://download.01.org/opencv/2021/openvinotoolkit/2021.2/open_model_zoo/models_bin/3/)
27
27
28
28
29
29
## Description
30
30
31
31
32
32
### Why
33
33
34
-
I needed an ability to fast deploy a small package that able to run models from [Intel's model zoo](https://github.com/opencv/open_model_zoo/) and use [Movidius NCS](https://software.intel.com/en-us/neural-compute-stick).
34
+
I needed an ability to fast deploy a small package that able to run models from [Intel's model zoo](https://github.com/openvinotoolkit/open_model_zoo) and use [Movidius NCS](https://software.intel.com/en-us/neural-compute-stick).
35
35
Well-known [opencv-python](https://github.com/skvark/opencv-python) can't do this.
36
36
The official way is to use OpenVINO, but it is big and clumsy (just try to use it with python venv or fast download it on cloud instance).
37
37
38
38
39
39
### Limitations
40
40
41
41
+ Package comes without contrib modules.
42
-
+ You need to [add udev rules](https://github.com/opencv/dldt/blob/2019/inference-engine/README.md#for-linux-raspbian-stretch-os) if you want working MYRIAD plugin.
42
+
+ You need to [add udev rules](https://www.intel.com/content/www/us/en/support/articles/000057005/boards-and-kits.html) if you want working MYRIAD plugin.
43
43
+ It was tested on Ubuntu 18.04, Ubuntu 18.10 as Windows 10 Subsystem and Gentoo.
44
44
+ It will not work for Ubuntu 16.04 and below (except v4.1.0.4).
45
45
+ I had not made builds for Windows or MacOS.
@@ -89,7 +89,7 @@ From [opencv](https://docs.opencv.org/master/d7/d9f/tutorial_linux_install.html)
89
89
[ffmpeg](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu), [openBLAS](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu) and [ngraph](https://www.ngraph.ai/documentation/buildlb)
90
90
91
91
+`build-essential`
92
-
+`>=cmake-3.11`
92
+
+`>=cmake-3.16`
93
93
+`autoconf` (for ngraph)
94
94
+`libtool-bin` (for ngraph)
95
95
+`git`
@@ -174,8 +174,8 @@ for i in cv2/*.so; do chrpath -r '$ORIGIN' $i; done
Copy file name to clipboardExpand all lines: create_wheel/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# README
2
2
3
-
This is a pre-built [OpenCV](https://github.com/opencv/opencv) with [dldt](https://github.com/opencv/dldt) module package for Python3.
4
-
You need that module if you want to run models from [Intel's model zoo](https://github.com/opencv/open_model_zoo/).
3
+
This is a pre-built [OpenCV](https://github.com/opencv/opencv) with [Inference Engine](https://github.com/openvinotoolkit/openvino) module package for Python3.
4
+
You need that module if you want to run models from [Intel's model zoo](https://github.com/openvinotoolkit/open_model_zoo).
5
5
6
6
It built with `ffmpeg` and `v4l` but without GTK/QT (use matplotlib for plotting your results).
7
7
Contrib modules and haarcascades are not included.
0 commit comments