SignalView.jl

Visualizes the Reactive Signal graph
Author SimonDanisch
Popularity
5 Stars
Updated Last
3 Years Ago
Started In
February 2016

SignalView

This library lets you visualize the signal graph of Reactive's signals.

It's using GLVisualize for the visualization and GraphLayout to layout the signal graph.

You can interactively edit some nodes like colors and numbers.

TODO: Interactively edit the graph layout and let user resize and annotate nodes.

API

# create any kind of signal graph
using Reactive, SignalView, GLVisualize
a = Signal(2)
b = Signal(1)
c = map(+, a, b)
# view it
window = glscreen()
# any signal in the graph will do, since both parents and children will get pushed into graph recursevely
view_signal(a, window)
renderloop(window)

Examples

Image Processing

Image Processing

video | code

Surface / Contour

Surface / Contour

video | code