Question about Integrating with existing C++ Project
See original GitHub issue@Daniil-Osokin hello!
Thank you for this phenomenal work!
I have an existing C++ project that is using OpenVINO to run inference. I would like to also include this model in the C++ project.
I have followed the instructions and ran:
python setup.py build_ext
export PYTHONPATH=pose_extractor/build/:$PYTHONPATH
and I have my pose_extractor
folder:
Forgive me if this a dumb question but what do I need to do to get this integrated with my existing C++ project?
- I assume at the minimum I need to incorporate everything from CMakeLists.txt into my current CMakeLists.txt (so I build with the appropriate headers and libraries)
- Where does the
pose_extractor
come into play when running the OpenVINO inference when I am looking for 3D pose?
From the “hello_classification” example from OpenVINO, at what point would I need to run the pose_extractor
?:
Could I include the source C++ files in my project? Once I run the OpenVINO reference, what do I need to call on the results in order to output the 3D poses? I see in python it runs parse_poses
on the inference results, I would need to do the same but in C++, what function should I call? (there doesn’t seem to be parse_poses
function in C++)
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top GitHub Comments
Thank you @Daniil-Osokin !
Hope, it helped.