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

Commit f9e6b79

Browse files
committed
doc refactoring
1 parent 2041733 commit f9e6b79

2 files changed

Lines changed: 7 additions & 16 deletions

File tree

README.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,9 @@ For additional info read `cv2.getBuildInformation()` output.
7070

7171
### Versioning
7272

73-
~~The first 3 letters are the version of OpenCV, underscore, then inference engine (dldt/openvino) version, underscore, package version.
74-
E.g, `4.5.1_2120.2_0` -- first version of based on 4.5.1 OpenCV package with 2021.2 inference engine module.
75-
Package versions are not continuously numbered -- each new OpenCV-dldt version pair starts its own numbering.~~
73+
`YYYY.MM.DD`, because it is the most simple way to track opencv/openvino versions.
7674

77-
YYYY.MM.DD
75+
The newer the better.
7876

7977

8078
## Compiling from source
@@ -88,24 +86,17 @@ I am using Ubuntu 18.04 [multipass](https://multipass.run/) instance: `multipass
8886
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),
8987
[ffmpeg](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu), [openBLAS](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu) and [ngraph](https://www.ngraph.ai/documentation/buildlb)
9088

91-
+ `build-essential`
92-
+ `>=cmake-3.16`
93-
+ `git`
94-
+ `pkg-config`
95-
+ `python3-dev`
96-
+ `virtualenv`
97-
+ `chrpath`
98-
+ `libusb-1.0-0-dev` (for MYRIAD plugin)
99-
+ `nasm` (for ffmpeg)
100-
10189
```bash
10290
# We need newer `cmake` for dldt (fastest way I know)
91+
# >=cmake-3.16
10392
sudo apt remove --purge cmake
10493
hash -r
10594
sudo snap install cmake --classic
10695

10796
sudo apt-get update
108-
sudo apt install build-essential git pkg-config python3-dev nasm python3 virtualenv libusb-1.0-0-dev chrpath
97+
# nasm for ffmpeg
98+
# libusb-1.0-0-dev for MYRIAD plugin
99+
sudo apt install build-essential git pkg-config python3-dev nasm python3 virtualenv libusb-1.0-0-dev chrpath shellcheck
109100

110101
# for ngraph
111102
# the `dldt/_deps/ext_onnx-src/onnx/gen_proto.py` has `#!/usr/bin/env python` string and will throw an error otherwise

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
numpy==1.19.2
1+
numpy

0 commit comments

Comments
 (0)