From 5b9be06ee1ad75165a4584a9609600e570bcdf5f Mon Sep 17 00:00:00 2001 From: Kentaro Wada Date: Sat, 27 Jun 2020 13:27:20 +0100 Subject: [PATCH] Set transparent shape fill_color while drawing I found this is not very useful especially when we're annotating concave-shaped objects. --- labelme/config/default_config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labelme/config/default_config.yaml b/labelme/config/default_config.yaml index 34ced19..260066f 100644 --- a/labelme/config/default_config.yaml +++ b/labelme/config/default_config.yaml @@ -22,7 +22,7 @@ label_colors: null shape: # drawing line_color: [0, 255, 0, 128] - fill_color: [0, 255, 0, 64] + fill_color: [0, 255, 0, 0] # transparent vertex_fill_color: [0, 255, 0, 255] # selecting / hovering select_line_color: [255, 255, 255, 255] -- GitLab