Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
camenduru
/
openpose
like
8
arxiv:
4 papers
Model card
Files
Files and versions
xet
Community
1
main
openpose
/
3rdparty
/
pybind11
/
tests
/
test_cmake_build
/
main.cpp
camenduru
thanks to openpose ❤
f5bb0c0
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
152 Bytes
#
include
<pybind11/pybind11.h>
namespace
py = pybind11;
PYBIND11_MODULE
(test_cmake_build, m) {
m.
def
(
"add"
, [](
int
i,
int
j) {
return
i + j; });
}