Skip to content

Commit

Permalink
plot with better colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Cartucho committed Apr 15, 2018
1 parent 30946f8 commit 4ae588f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def draw_plot_func(dictionary, n_classes, window_title, plot_title, y_label, out
y_label = "Number of objects per class"
output_path = results_files_path + "/Ground-Truth Info.png"
to_show = False
plot_color = 'green'
plot_color = 'forestgreen'
draw_plot_func(gt_counter_per_class, n_classes, window_title, plot_title, y_label, output_path, to_show, plot_color)

"""
Expand Down Expand Up @@ -340,7 +340,7 @@ def draw_plot_func(dictionary, n_classes, window_title, plot_title, y_label, out
y_label = "Number of objects per class"
output_path = results_files_path + "/Predicted Objects Info.png"
to_show = False
plot_color = 'green'
plot_color = 'forestgreen'
draw_plot_func(pred_counter_per_class, n_classes, window_title, plot_title, y_label, output_path, to_show, plot_color)

"""
Expand Down Expand Up @@ -573,5 +573,5 @@ def draw_plot_func(dictionary, n_classes, window_title, plot_title, y_label, out
y_label = "Average Precision"
output_path = results_files_path + "/mAP.png"
to_show = True
plot_color = 'blue'
plot_color = 'royalblue'
draw_plot_func(ap_dictionary, n_classes, window_title, plot_title, y_label, output_path, to_show, plot_color)

0 comments on commit 4ae588f

Please sign in to comment.