You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi !
I have ros1 (noetic) package in C++ (https://github.com/ov2slam/ov2slam)
I want to convert it to python so that I can import one class and create objects that can later call functions of this class. I want to dot it without rosrun <package> <script>, I want just something like this:
from import
object = class()
object.feed_image()
something like that. How should I confgure CMakeLists in order to import class instead of rosrun package ? Thanks in advance)
The text was updated successfully, but these errors were encountered:
Hi !
I have ros1 (noetic) package in C++ (https://github.com/ov2slam/ov2slam)
I want to convert it to python so that I can import one class and create objects that can later call functions of this class. I want to dot it without
rosrun <package> <script>
, I want just something like this:from import
object = class()
object.feed_image()
something like that. How should I confgure CMakeLists in order to import class instead of rosrun package ? Thanks in advance)
The text was updated successfully, but these errors were encountered: