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

Commit 3d5fee4

Browse files
committed
Update usr guide, releae note, README and FAQ
Changed dependent software versions: Ubuntu 18.04 -> Ubuntu 20.04 OpenVINO 21.1 -> OpenVINO 21.4 On TGL, the recommanded Linux kernel version is changed from Intel lts 5.4.102 to Intel lts 5.10.41 Signed-off-by: dwang26 <[email protected]>
1 parent e3d44ba commit 3d5fee4

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ See [user guide](./doc/concurrent_video_analytic_sample_application_user_guide_2
3838
# System requirements
3939

4040
**Operating System:**
41-
* Ubuntu 18.04.05
41+
* Ubuntu 18.04.02
4242

4343
**Software:**
4444
* [MediaSDK 21.1.3](https://github.com/Intel-Media-SDK/MediaSDK/releases/tag/intel-mediasdk-21.1.3)
@@ -53,7 +53,7 @@ See [user guide](./doc/concurrent_video_analytic_sample_application_user_guide_2
5353

5454
Run build_and_install.sh to install dependent software packages and build sample application video_e2e_sample.
5555

56-
Please refer to ”Installation Guide“ in [user guide](./doc/concurrent_video_analytic_sample_application_user_guide.pdf) for details.
56+
Please refer to ”Installation Guide“ in [user guide](./doc/concurrent_video_analytic_sample_application_user_guide_2021.1.0.pdf) for details.
5757

5858
## Build steps
5959

doc/FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Frequently asked questions (SVET sample application)
22

33
## Where can I find the descritpion of options used in par file?
4-
See chapter 2.4 in doc/svet_sample_application_user_guide_2021.1.0.pdf
4+
See chapter 2.4 in doc/concurrent_video_analytic_sample_application_user_guide.pdf
55
Running the SVET sample applicton with option "-?" can show the usage of options.
66

77
## Why does the system need to be switched to text console mode before running the sample application
Binary file not shown.
Binary file not shown.

video_e2e_sample/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ set(OPENCV_LIB $ENV{INTEL_CVSDK_DIR}/opencv/lib)
1111
set(DL_SDK_INCLUDE $ENV{INTEL_CVSDK_DIR}/deployment_tools/inference_engine/include)
1212
set(DL_SDK_LIB $ENV{INTEL_CVSDK_DIR}/deployment_tools/inference_engine/lib/intel64/)
1313
set(DL_SAMPLE_INCLUDE $ENV{INTEL_OPENVINO_DIR}/inference_engine/samples/cpp/common/)
14+
set(DL_SAMPLE_INCLUDE_V214 $ENV{INTEL_OPENVINO_DIR}/deployment_tools/inference_engine/samples/cpp/common/utils/include/)
1415
set(NGRAPH_INCLUDE $ENV{INTEL_OPENVINO_DIR}/deployment_tools/ngraph/include/)
1516
set(NGRAPH_LIB $ENV{INTEL_OPENVINO_DIR}/deployment_tools/ngraph/lib/)
1617

1718
set(MFX_INCLUDE $ENV{MFX_HOME}/include)
1819
set(MFX_LIB_OPENSOURCE $ENV{MFX_HOME}/lib)
1920
set(MFX_LIB $ENV{MFX_HOME}/lib/lin_x64)
20-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -m64 -msse4.2 -pipe -fPIC -Wall -Wformat -Wformat-security -Wnon-virtual-dtor -Wno-deprecated-declarations -Wno-unknown-pragmas -Wno-unused -DUNIX -D__USE_LARGEFILE64 -D_FILE_OFFSET_BITS=64 -DLINUX -DLINUX32 -DLINUX64 -DMFX_API_VERSION=\"1.34\" -DMFX_GIT_COMMIT=\"34c7cbbb\" -DENABLE_INFERENCE -DMEDIA_VERSION_STR=\"20.3.0\" -g -O3 -std=c++11 -funroll-loops -ftree-vectorize -I${DL_SAMPLE_INCLUDE} -I${NGRAPH_INCLUDE} -I${MFX_INCLUDE} -I${DL_SDK_INCLUDE} -I${DL_SDK_INCLUDE}/cpp -I${OPENCV_INCLUDE} -DLIBVA_SUPPORT -DLIBVA_DRM_SUPPORT -DLIBVA_X11_SUPPORT")
21+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -m64 -msse4.2 -pipe -fPIC -Wall -Wformat -Wformat-security -Wnon-virtual-dtor -Wno-deprecated-declarations -Wno-unknown-pragmas -Wno-unused -DUNIX -D__USE_LARGEFILE64 -D_FILE_OFFSET_BITS=64 -DLINUX -DLINUX32 -DLINUX64 -DMFX_API_VERSION=\"1.34\" -DMFX_GIT_COMMIT=\"34c7cbbb\" -DENABLE_INFERENCE -DMEDIA_VERSION_STR=\"20.3.0\" -g -O3 -std=c++11 -funroll-loops -ftree-vectorize -I${DL_SAMPLE_INCLUDE} -I${DL_SAMPLE_INCLUDE_V214} -I${NGRAPH_INCLUDE} -I${MFX_INCLUDE} -I${DL_SDK_INCLUDE} -I${DL_SDK_INCLUDE}/cpp -I${OPENCV_INCLUDE} -DLIBVA_SUPPORT -DLIBVA_DRM_SUPPORT -DLIBVA_X11_SUPPORT")
2122

2223
set(ENABLE_EXPORTS false)
2324
set(CMAKE_EXE_LINKER_FLAGS "-L${OPENCV_LIB} -L${DL_SDK_LIB} -L${NGRAPH_LIB}")

0 commit comments

Comments
 (0)