Shoes-Try-On-in-AR
Shoes-Try-On-in-AR copied to clipboard
How to add pybind11?
I have set up everything but it gives an error of pybind11
`Starting OpenPose Python Wrapper... Auto-detecting all available GPUs... Detected 1 GPU(s), using 1 of them starting at GPU 0. (540, 960, 3) Wait for connection... Client Info: <socket.socket fd=2272, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 9000), raddr=('127.0.0.1', 61761)> ('127.0.0.1', 61761) emplaceAndPop(): incompatible function arguments. The following argument types are supported: 1. (self: pyopenpose.WrapperPython, arg0: std::vector<std::shared_ptrop::Datum,std::allocator<std::shared_ptrop::Datum > >) -> bool
Invoked with: <pyopenpose.WrapperPython object at 0x000001F2386CCA30>, [<pyopenpose.Datum object at 0x000001F2364714B0>]
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 resolve this in windows?