提交 2bfdc5e0 编写于 作者: G gineshidalgo99

Added pthread in Ubuntu

上级 8e13c82a
...@@ -201,11 +201,11 @@ option(BUILD_SHARED_LIBS "Build as shared lib" ON) ...@@ -201,11 +201,11 @@ option(BUILD_SHARED_LIBS "Build as shared lib" ON)
# Speed profiler # Speed profiler
option(PROFILER_ENABLED "If enabled, OpenPose will be able to print out speed information at runtime." OFF) option(PROFILER_ENABLED "If enabled, OpenPose will be able to print out speed information at runtime." OFF)
# Threads # Threads - Pthread
if (${GPU_MODE} MATCHES "OPENCL") if (${GPU_MODE} MATCHES "OPENCL" OR (UNIX AND NOT APPLE))
unset(CMAKE_THREAD_LIBS_INIT CACHE) unset(CMAKE_THREAD_LIBS_INIT CACHE)
find_package(Threads) find_package(Threads)
endif () endif (${GPU_MODE} MATCHES "OPENCL" OR (UNIX AND NOT APPLE))
### FIND REQUIRED PACKAGES ### FIND REQUIRED PACKAGES
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
...@@ -607,6 +607,10 @@ endif (WITH_CERES) ...@@ -607,6 +607,10 @@ endif (WITH_CERES)
if (WITH_FLIR_CAMERA) if (WITH_FLIR_CAMERA)
set(OpenPose_3rdparty_libraries ${OpenPose_3rdparty_libraries} ${SPINNAKER_LIB}) set(OpenPose_3rdparty_libraries ${OpenPose_3rdparty_libraries} ${SPINNAKER_LIB})
endif (WITH_FLIR_CAMERA) endif (WITH_FLIR_CAMERA)
# Pthread
if (UNIX AND NOT APPLE)
set(OpenPose_3rdparty_libraries ${OpenPose_3rdparty_libraries} pthread)
endif (UNIX AND NOT APPLE)
set(examples_3rdparty_libraries ${OpenPose_3rdparty_libraries} ${GFLAGS_LIBRARY}) set(examples_3rdparty_libraries ${OpenPose_3rdparty_libraries} ${GFLAGS_LIBRARY})
......
...@@ -11,6 +11,7 @@ OpenPose - Frequently Asked Question (FAQ) ...@@ -11,6 +11,7 @@ OpenPose - Frequently Asked Question (FAQ)
6. [Cannot Find OpenPose.dll Error](#cannot-find-openpose.dll-error-windows) 6. [Cannot Find OpenPose.dll Error](#cannot-find-openpose.dll-error-windows)
7. [Free Invalid Pointer Error](#free-invalid-pointer-error) 7. [Free Invalid Pointer Error](#free-invalid-pointer-error)
8. [Source Directory does not Contain CMakeLists.txt (Windows)](#source-directory-does-not-contain-cmakelists.txt-windows) 8. [Source Directory does not Contain CMakeLists.txt (Windows)](#source-directory-does-not-contain-cmakelists.txt-windows)
9. [How Should I Link my IP Camera?](#how-should-i-link-my-ip-camera)
...@@ -80,3 +81,10 @@ Note: OpenPose library is not an executable, but a library. So instead clicking ...@@ -80,3 +81,10 @@ Note: OpenPose library is not an executable, but a library. So instead clicking
**Q: I am getting an error of the type: `The source directory {path to file} does not contain a CMakeLists.txt file.`.** **Q: I am getting an error of the type: `The source directory {path to file} does not contain a CMakeLists.txt file.`.**
**A**: You might not have writing access to that folder. If you are in Windows, you should not try to install it in `Program Files`. **A**: You might not have writing access to that folder. If you are in Windows, you should not try to install it in `Program Files`.
### How Should I Link my IP Camera?
**Q: How Should I Link my IP Camera with http protocol?.**
**A**: Usually with `http://CamIP:PORT_NO./video?x.mjpeg`.
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册