Skip to content
Snippets Groups Projects
Commit cde98880 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Do not show legend in scene plots.

parent 3a2ea41e
No related branches found
No related tags found
No related merge requests found
...@@ -257,8 +257,8 @@ def plot_sample(x, use_bands, labels, ...@@ -257,8 +257,8 @@ def plot_sample(x, use_bands, labels,
norm = BoundaryNorm(list(sorted_labels.keys()) + [255], cmap.N) norm = BoundaryNorm(list(sorted_labels.keys()) + [255], cmap.N)
# create a patch (proxy artist) for every color # create a patch (proxy artist) for every color
patches = [mpatches.Patch(color=v['color'], label=v['label']) for _, v in # patches = [mpatches.Patch(color=v['color'], label=v['label']) for _, v in
sorted_labels.items()] # sorted_labels.items()]
# number of required axes # number of required axes
naxes = len(y_pred) + 2 naxes = len(y_pred) + 2
...@@ -333,9 +333,10 @@ def plot_sample(x, use_bands, labels, ...@@ -333,9 +333,10 @@ def plot_sample(x, use_bands, labels,
fig.subplots_adjust(wspace=0.02) fig.subplots_adjust(wspace=0.02)
# if a ground truth or a model prediction is plotted, add legend # if a ground truth or a model prediction is plotted, add legend
if len(fig.axes) > 1 and not hide_labels: # if len(fig.axes) > 1 and not hide_labels:
fig.axes[-1].legend(handles=patches, bbox_to_anchor=(1.05, 1), loc=2, # fig.axes[-1].legend(handles=patches, bbox_to_anchor=(1.05, 1), loc=2,
frameon=False) # frameon=False)
# save figure # save figure
if state is not None: if state is not None:
# chech maximum filename length of 260 characters on Windows # chech maximum filename length of 260 characters on Windows
......
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