First, my env.
- Python 3.11.x (newst)
- Visual enterprise 2022 (I install C++ component what I know that)
- Window 10 - recently reset.
- Cuda 12.1 with cuDNN for 12.x (all recent ver. since I reset the PC)
Situation.
I clone github git clone https://github.com/CMU-Perceptual-Computing-Lab/openpose as introduced in openpose.
after I update submodules. git submodule update --init --recursive --remote
generate directory \build
cmake-gui .. -> configulation. (with visual 2022 17) -> after checking my build_python box -> configulation once again.
Then, I face this set-up where my co-worker didn't see before. pybind11_cpp_standard
First, I didn't care because i already install pybind11 in my virtual anaconda env.
After generate -> open project. -> build solution with "release"
Build failed. for pyopenpose.vcxproj with problem. Undefined "sszie_t"
Here's my trial
At 5, Configulation again -> generate. But, build was also fail.
At 7, I realize that pybind11's numpy.h has about that code. "sszie_t"
I simple def SSZIE_t sszie_t
For that case, build was ok.
But run the example of openpose has error
Exception: Error: OpenPose library could not be found. Did you enable BUILD_PYTHON in CMake and have this Python script in the right folder?
I don't knw what to do anymore..
Did I miss something? Did I forget some C++ components?