mirror of
https://github.com/gosticks/openpose.git
synced 2026-08-12 20:30:20 +00:00
Added pthread in Ubuntu
This commit is contained in:
+7
-3
@@ -201,11 +201,11 @@ option(BUILD_SHARED_LIBS "Build as shared lib" ON)
|
||||
# Speed profiler
|
||||
option(PROFILER_ENABLED "If enabled, OpenPose will be able to print out speed information at runtime." OFF)
|
||||
|
||||
# Threads
|
||||
if (${GPU_MODE} MATCHES "OPENCL")
|
||||
# Threads - Pthread
|
||||
if (${GPU_MODE} MATCHES "OPENCL" OR (UNIX AND NOT APPLE))
|
||||
unset(CMAKE_THREAD_LIBS_INIT CACHE)
|
||||
find_package(Threads)
|
||||
endif ()
|
||||
endif (${GPU_MODE} MATCHES "OPENCL" OR (UNIX AND NOT APPLE))
|
||||
|
||||
### FIND REQUIRED PACKAGES
|
||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
|
||||
@@ -607,6 +607,10 @@ endif (WITH_CERES)
|
||||
if (WITH_FLIR_CAMERA)
|
||||
set(OpenPose_3rdparty_libraries ${OpenPose_3rdparty_libraries} ${SPINNAKER_LIB})
|
||||
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})
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ OpenPose - Frequently Asked Question (FAQ)
|
||||
6. [Cannot Find OpenPose.dll Error](#cannot-find-openpose.dll-error-windows)
|
||||
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)
|
||||
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
|
||||
**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`.
|
||||
|
||||
|
||||
|
||||
### 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`.
|
||||
|
||||
Reference in New Issue
Block a user