Skip to content

Commit

Permalink
openvino: chnages to accomodate release 2018R4
Browse files Browse the repository at this point in the history
Signed-off-by: Ron Evans <[email protected]>
  • Loading branch information
deadprogram committed Nov 19, 2018
1 parent c54b138 commit 7228f53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions openvino/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Using the Intel OpenVINO toolkit
# Using the Intel® Distribution of OpenVINO toolkit

The [Intel OpenVINO toolkit](https://software.intel.com/en-us/openvino-toolkit) is a set of tools and libraries for computer vision applications, that uses computer vision and imaging algorithms developed at Intel. It also includes a complete build of OpenCV.
The [Intel® Distribution of OpenVINO toolkit](https://software.intel.com/en-us/openvino-toolkit) is a set of tools and libraries for computer vision applications, that uses computer vision and imaging algorithms developed at Intel. It also includes a complete build of OpenCV 4.0.

GoCV supports using the Intel OpenVINO Inference Engine as a backend for the OpenCV deep neural network (DNN) module. For details, please see:
https://github.com/hybridgroup/gocv/blob/master/openvino/ie/README.md
Expand Down Expand Up @@ -36,8 +36,8 @@ Now you can run the version command example to make sure you are compiling/linki

```
$ go run -tags openvino ./cmd/version/main.go
gocv version: 0.16.0
opencv lib version: 3.4.2-openvino_2018_R2.0.0
gocv version: 0.18.0
opencv lib version: 4.0.0-pre
```

Note the use of `-tags openvino` is needed when using `go run`, `go build`, and `go test` with OpenVINO, so the CGo compiler can pickup the correct settings for the environment, and ignore the usual defaults.
Expand Down
2 changes: 1 addition & 1 deletion openvino/env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export CGO_CXXFLAGS="--std=c++11"
export CGO_CPPFLAGS="-I${INTEL_CVSDK_DIR}/opencv/include -I${INTEL_CVSDK_DIR}/deployment_tools/inference_engine/include"
export CGO_LDFLAGS="-L${INTEL_CVSDK_DIR}/opencv/lib -L${INTEL_CVSDK_DIR}/deployment_tools/inference_engine/lib/ubuntu_16.04/intel64 -lpthread -ldl -ldla -ldliaPlugin -lHeteroPlugin -lMKLDNNPlugin -lmyriadPlugin -linference_engine -lclDNNPlugin -lopencv_core -lopencv_pvl -lopencv_face -lopencv_videoio -lopencv_imgproc -lopencv_highgui -lopencv_imgcodecs -lopencv_objdetect -lopencv_features2d -lopencv_video -lopencv_dnn -lopencv_calib3d"
export CGO_LDFLAGS="-L${INTEL_CVSDK_DIR}/opencv/lib -L${INTEL_CVSDK_DIR}/deployment_tools/inference_engine/lib/ubuntu_16.04/intel64 -lpthread -ldl -ldliaPlugin -lHeteroPlugin -lMKLDNNPlugin -lmyriadPlugin -linference_engine -lclDNNPlugin -lopencv_core -lopencv_pvl -lopencv_face -lopencv_videoio -lopencv_imgproc -lopencv_highgui -lopencv_imgcodecs -lopencv_objdetect -lopencv_features2d -lopencv_video -lopencv_dnn -lopencv_calib3d"
export PKG_CONFIG_PATH=/usr/lib64/pkgconfig

0 comments on commit 7228f53

Please sign in to comment.