Environment: windows 10 x64, visual studio 2017 community(has installed c++ modules following the video), cuda 10.2.89, cudnn 7.6.5, cmake 3.16-rc3, openpose-1.5.0.
Following the official README document and recommended video, I try to build openpose with python api.
Unfortunately, when I try to use the Cmake(Version 3.16) configure or build the source code of openpose-1.5.0, I meet a problem.
There are some variables below set to NOTFOUND in cmake, and I can't solve it.
I checked the "WITH_PYTHON" option, so there is some information about "BOOST". If I don't check it, it will disappear.
I have tried to install the boost-1.66.0 and add it to path, but it doesn't work.
The error information is here:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
BOOST_FILESYSTEM_LIB_RELEASE
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
BOOST_SYSTEM_LIB_RELEASE
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
Caffe_LIB
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
Caffe_Proto_LIB
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
GFLAGS_LIBRARY_DEBUG
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
GFLAGS_LIBRARY_RELEASE
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
GLOG_LIBRARY_DEBUG
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
GLOG_LIBRARY_RELEASE
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
OpenCV_LIBS
linked by target "openpose" in directory C:/code/source_code/openpose-1.5.0/src/openpose
linked by target "Calibration" in directory C:/code/source_code/openpose-1.5.0/examples/calibration
linked by target "OpenPoseDemo" in directory C:/code/source_code/openpose-1.5.0/examples/openpose
linked by target "pyopenpose" in directory C:/code/source_code/openpose-1.5.0/python/openpose
...
Because the text is too long, I use replace some repeated information with ... .
Thanks for everyone's answer!