Skip to content
Snippets Groups Projects
Commit 497a6dad authored by Felipe Delestro Matos's avatar Felipe Delestro Matos
Browse files

localthickness gui hotfix

parent 41d6bfef
No related branches found
No related tags found
No related merge requests found
...@@ -145,17 +145,16 @@ class Interface: ...@@ -145,17 +145,16 @@ class Interface:
cmap_original = gr.Dropdown( cmap_original = gr.Dropdown(
value="viridis", value="viridis",
choices=plt.colormaps(), choices=plt.colormaps(),
label="Colormap", label="Colormap - input",
interactive=True, interactive=True,
) )
cmap_lt = gr.Dropdown( cmap_lt = gr.Dropdown(
value="magma", value="magma",
choices=plt.colormaps(), choices=plt.colormaps(),
label="Colormap", label="Colormap - local thickness",
interactive=True, interactive=True,
) )
gr.Markdown("Thickness histogram options")
nbins = gr.Slider( nbins = gr.Slider(
5, 50, value=25, step=1, label="Histogram bins" 5, 50, value=25, step=1, label="Histogram bins"
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment