balthazarneveu / interactive_pipe

create interactive image processing pipeline with friendly sliders
The Unlicense
8 stars 1 forks source link

matplotlib: support 2D signal plots #14

Closed balthazarneveu closed 1 year ago

balthazarneveu commented 1 year ago

Description

You may want to plot some signals along with your images...

Several ways to make this happen:

  1. a filter could return a Signal instance... Signal(x= ..., y=...) , exactly like you'd pass to matplotlib. This will allow combining several signals together by the way. :+1:
  2. Another trick would be to return a dictionary ... some a library remains a library and does not depend on the interactive_pipe Signal class. :thinking: but this may actually make things harder to read...

Todo