├── LICENSE ├── README.md ├── depthai_pipeline_graph ├── NodeGraphQt │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ ├── commands.py │ │ ├── factory.py │ │ ├── graph.py │ │ ├── graph_actions.py │ │ ├── menu.py │ │ ├── model.py │ │ ├── node.py │ │ └── port.py │ ├── constants.py │ ├── custom_widgets │ │ ├── __init__.py │ │ ├── nodes_palette.py │ │ ├── nodes_tree.py │ │ ├── properties.py │ │ └── properties_bin.py │ ├── errors.py │ ├── nodes │ │ ├── __init__.py │ │ ├── backdrop_node.py │ │ ├── base_node.py │ │ ├── group_node.py │ │ └── port_node.py │ ├── pkg_info.py │ ├── qgraphics │ │ ├── __init__.py │ │ ├── node_abstract.py │ │ ├── node_backdrop.py │ │ ├── node_base.py │ │ ├── node_group.py │ │ ├── node_overlay_disabled.py │ │ ├── node_port_in.py │ │ ├── node_port_out.py │ │ ├── node_text_item.py │ │ ├── pipe.py │ │ ├── port.py │ │ └── slicer.py │ └── widgets │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── dialogs.py │ │ ├── icons │ │ └── node_base.png │ │ ├── node_graph.py │ │ ├── node_widgets.py │ │ ├── scene.py │ │ ├── tab_search.py │ │ ├── viewer.py │ │ └── viewer_nav.py ├── __init__.py └── pipeline_graph.py ├── media ├── graph_human_machine_safety.png ├── pipeline_graph_naming.png └── ports.png ├── requirements.txt └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/README.md -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/__init__.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/__init__.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/commands.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/factory.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/graph.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/graph_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/graph_actions.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/menu.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/model.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/node.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/base/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/base/port.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/constants.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/custom_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/custom_widgets/nodes_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/custom_widgets/nodes_palette.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/custom_widgets/nodes_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/custom_widgets/nodes_tree.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/custom_widgets/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/custom_widgets/properties.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/custom_widgets/properties_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/custom_widgets/properties_bin.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/errors.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/nodes/backdrop_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/nodes/backdrop_node.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/nodes/base_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/nodes/base_node.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/nodes/group_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/nodes/group_node.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/nodes/port_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/nodes/port_node.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/pkg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/pkg_info.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_abstract.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_backdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_backdrop.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_base.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_group.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_overlay_disabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_overlay_disabled.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_port_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_port_in.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_port_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_port_out.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/node_text_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/node_text_item.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/pipe.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/port.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/qgraphics/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/qgraphics/slicer.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/__init__.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/actions.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/dialogs.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/icons/node_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/icons/node_base.png -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/node_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/node_graph.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/node_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/node_widgets.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/scene.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/tab_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/tab_search.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/viewer.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/NodeGraphQt/widgets/viewer_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/NodeGraphQt/widgets/viewer_nav.py -------------------------------------------------------------------------------- /depthai_pipeline_graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthai_pipeline_graph/pipeline_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/depthai_pipeline_graph/pipeline_graph.py -------------------------------------------------------------------------------- /media/graph_human_machine_safety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/media/graph_human_machine_safety.png -------------------------------------------------------------------------------- /media/pipeline_graph_naming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/media/pipeline_graph_naming.png -------------------------------------------------------------------------------- /media/ports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/media/ports.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Qt.py>=1.3.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geaxgx/depthai_pipeline_graph/HEAD/setup.py --------------------------------------------------------------------------------