From d24c622d864d43dc7efd78681e074d1588b37604 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 16 Sep 2019 12:46:44 +0200 Subject: [PATCH] Moved GT colour to dark blue for better readability Signed-off-by: Jim Martens --- src/twomartens/masterthesis/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twomartens/masterthesis/debug.py b/src/twomartens/masterthesis/debug.py index d5676c7..b9b6cf7 100644 --- a/src/twomartens/masterthesis/debug.py +++ b/src/twomartens/masterthesis/debug.py @@ -111,7 +111,7 @@ def draw_bbox_figure(image_filename: str, labels: Sequence[np.ndarray], image = Image.fromarray(np_image) figure_filename = f"{output_path}/{os.path.basename(image_filename)}_bboxes_{suffix}.png" drawables = [(colors[i], _instances) for i, _instances in enumerate(instances)] - drawables.append(([0.23970412205706326, 1.0, 0.0, 1.0], labels)) + drawables.append(([35/255, 45/255, 215/255, 1.0], labels)) _draw_bbox_image(image=image, filename=figure_filename, draw_func=functools.partial(