Skip to main content

User interface library for visiongraph projects.

Project description

Visiongraph UI

User interface library for visiongraph projects. The idea behind this project is to create a structure for computer vision applications. The idea is to have a configuration, app and graph. And if needed a window.

Example

Configuration

class DemoConfig:
    def __init__(self):
        container = ContainerHelper(self)

        # non-ui bound settings
        with container.section("Test"):
            self.enable_input = DataField(False) | ui.Boolean("Enable") | Argument(help="Enable input.")

Application

class DemoApp(VisiongraphApp[vg.VisionGraph, DemoConfig]):
    def __init__(self, config: DemoConfig):
        super().__init__(config)

    def create_graph(self) -> vg.Visiongraph:
        graph = DemoGraph().create_graph(vg.VideoCaptureInput())
        graph.multi_threaded = True
        return graph

Graph

class DemoGraph:
    def __init__(self):
        self.on_frame_ready: Event[np.ndarray] = Event()
        self.graph: Optional[vg.VisionGraph] = None

    def _on_frame_ready(self, frame: np.ndarray) -> np.ndarray:
        self.on_frame_ready(frame)
        return frame

    def create_graph(self, input_device: vg.BaseInput) -> vg.VisionGraph:
        self.graph = (
            vg.create_graph(name="Demo Graph", input_node=input_device, multi_threaded=True)
            .then(vg.custom(self._on_frame_ready))
            .build()
        )
        return self.graph

Window

class DemoWindow(VisiongraphUserInterface[DemoApp, DemoConfig]):
    def __init__(self, app: DemoApp):
        super().__init__(app)

Usage

def main():
    config = DemoConfig()
    app = DemoApp(config)

    with UIContext():
        window = DemoWindow(app)

About

This is a first draft of the library and the api will change in future release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

visiongraph_ui-0.4.0a3-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file visiongraph_ui-0.4.0a3-py3-none-any.whl.

File metadata

File hashes

Hashes for visiongraph_ui-0.4.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 cf384306dafb6acedcd63c3369a70817d2bcb87fdf5466d80d5ca024e9d75a0f
MD5 ae7ed904cab6f7754664ce92474e7b01
BLAKE2b-256 1b2c37d54c0694c2c3799f7555494042cc22a9b25fd08d56852bce30bf771274

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page