-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python Embedding Example #3074
Python Embedding Example #3074
Conversation
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update the release notes by adding a file in |
cdc08df
to
8b38aa6
Compare
|
Replaced by #3135 |
A fake device (
fakePythonSpeechTranscription
) as example on how to do a Python embedding using C++There is some commented code that gives insight on the use of some functions, and how to test.
It's provided also a yarprobotinterface example file to ease utilization.
There are two basic idea to take-away from this code:
1- How to call a function in a
.py
module and exchange parameters and objects.2- How to instantiate a class in Python and call its methods, exchanging parameters and objects.
This is still a draft, done to share ideas