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
I'm currently working on a custom package. I've walked through the PyFlowBase and PyFlowOpenCv packages. It is noticed that the display names of nodes are the function names (define using FunctionLibrary) or class names (define using NodeBase) of a node.
In the FunctionLibrary way, the __init__ function creates a self._foo dict to store the function names and its address. There is no specific way to parse a name to node.
In the NodeBase way, there is a name attribute while initializing. But, still, no specific way to parse a name to the initialization.
IMO, the Node Name is important while defining, cuz the customization of it could be essential for localization, especially package development.
I may make mistake on how to define the node name, hope someboby could help with this topic.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I'm currently working on a custom package. I've walked through the PyFlowBase and PyFlowOpenCv packages. It is noticed that the display names of nodes are the function names (define using
FunctionLibrary
) or class names (define usingNodeBase
) of a node.In the
FunctionLibrary
way, the__init__
function creates aself._foo
dict to store the function names and its address. There is no specific way to parse a name to node.In the
NodeBase
way, there is aname
attribute while initializing. But, still, no specific way to parse a name to the initialization.IMO, the Node Name is important while defining, cuz the customization of it could be essential for localization, especially package development.
I may make mistake on how to define the node name, hope someboby could help with this topic.
Beta Was this translation helpful? Give feedback.
All reactions