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
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The official way is to use OpenVINO, but it is big and clumsy (just try to use i
43
43
### Main differences from OpenVINO
44
44
45
45
+ No model-optimizer
46
-
+ OpenBLAS instead of MKL ([details](https://github.com/banderlog/opencv-python-inference-engine/issues))
46
+
+ OpenBLAS instead of MKL ([details](https://github.com/banderlog/opencv-python-inference-engine/issues/5#issuecomment-599563729))
47
47
+ No [ITT](https://software.intel.com/en-us/articles/intel-itt-api-open-source)
48
48
+ No [IPP](https://software.intel.com/en-us/ipp)
49
49
+ No [Intel Media SDK](https://software.intel.com/en-us/media-sdk)
@@ -74,8 +74,13 @@ I am using Ubuntu 18.04 [multipass](https://multipass.run/) instance: `multipass
74
74
75
75
### Requirements
76
76
77
+
From [opencv](https://docs.opencv.org/master/d7/d9f/tutorial_linux_install.html), [dldt](https://docs.opencv.org/master/d7/d9f/tutorial_linux_install.html),
78
+
[ffmpeg](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu), [openBLAS](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu) and [ngraph](https://www.ngraph.ai/documentation/buildlb)
79
+
77
80
+`build-essential`
78
-
+`cmake`
81
+
+`>=cmake-3.11`
82
+
+`autoconf` (for ngraph)
83
+
+`libtool-bin` (for ngraph)
79
84
+`git`
80
85
+`pkg-config`
81
86
+`python3-dev`
@@ -84,9 +89,17 @@ I am using Ubuntu 18.04 [multipass](https://multipass.run/) instance: `multipass
84
89
+`libusb-1.0-0-dev` (for MYRIAD plugin)
85
90
+`nasm` (for ffmpeg)
86
91
87
-
```
92
+
```bash
93
+
# We need newer `cmake` for dldt (commands from <https://apt.kitware.com/>)
0 commit comments