Hello,
I would like to visualize our Holoscan pipeline using graphviz but I can’t manage to extract structural information from any Holoscan object.
app.graph.get_operators()
TypeError: Unregistered type : std::vector<std::shared_ptr<holoscan::Operator>, std::allocator<std::shared_ptr<holoscan::Operator> > >
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "<string>", line 1, in <module>
TypeError: Unable to convert function return value to a Python type! The signature was
(arg0: holoscan.graphs._graphs.FlowGraph) -> std::vector<std::shared_ptr<holoscan::Operator>, std::allocator<std::shared_ptr<holoscan::Operator> > >
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 did you create the pipeline diagrams used in the Holoscan user guide?