diff --git a/Notebooks/Node Streaming Benchmark.ipynb b/Notebooks/Node Streaming Benchmark.ipynb index ae2a9f9..02aa49e 100644 --- a/Notebooks/Node Streaming Benchmark.ipynb +++ b/Notebooks/Node Streaming Benchmark.ipynb @@ -26,7 +26,8 @@ "source": [ "load = ld2dap.LoadTIFF('../Data/test.tiff')\n", "trsh = ld2dap.Treshold(1e3)\n", - "disp = ld2dap.ShowFig(fname=None)" + "disp = ld2dap.ShowFig(fname=None)\n", + "out = ld2dap.Output()" ] }, { @@ -36,7 +37,8 @@ "outputs": [], "source": [ "disp.input = trsh\n", - "trsh.input = load" + "trsh.input = load\n", + "out.input = trsh" ] }, { @@ -48,6 +50,15 @@ "disp.run()" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "out.data, out.metadata" + ] + }, { "cell_type": "code", "execution_count": null,