mmskeleton
mmskeleton copied to clipboard
question about run python main.py demo_offline
I use the old STGCN model,when I run the command"python main.py demo_offline ",I encountered the problem
" warnings.warn("Setting attributes on ParameterList is not supported.")
Starting OpenPose Python Wrapper...
Auto-detecting all available GPUs... Detected 1 GPU(s), using 1 of them starting at GPU 0.
Traceback (most recent call last):
File "main.py", line 33, in
Invoked with: <openpose.pyopenpose.WrapperPython object at 0x7f7101f58cb0>, [<openpose.pyopenpose.Datum object at 0x7f7101f586f0>]
Did you forget to #include <pybind11/stl.h>
? Or <pybind11/complex.h>,
<pybind11/functional.h>, <pybind11/chrono.h>, etc. Some automatic
conversions are optional and require extra headers to be included
when compiling your pybind11 module."
how to fix the bug,thanks
@KrisLee512 you should fix /home/llb/codes/ST_source/st-gcn/processor/demo_offline.py", line 137 :opWrapper.emplaceAndPop([datum]) is opWrapper.emplaceAndPop(op.VectorDatum([datum])).
@KrisLee512 you should fix /home/llb/codes/ST_source/st-gcn/processor/demo_offline.py", line 137 :opWrapper.emplaceAndPop([datum]) is opWrapper.emplaceAndPop(op.VectorDatum([datum])).
thanks,it work for me.