From 772d1ccc15ffbf86798d85e8a332b51569d37b46 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Wed, 6 Jan 2016 20:23:55 -0500 Subject: [PATCH] changed colormap to jet --- doc/examples/segmentation/plot_rag_boundary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/segmentation/plot_rag_boundary.py b/doc/examples/segmentation/plot_rag_boundary.py index 5063d96a..4b29b6bd 100644 --- a/doc/examples/segmentation/plot_rag_boundary.py +++ b/doc/examples/segmentation/plot_rag_boundary.py @@ -19,7 +19,7 @@ edges_rgb = color.gray2rgb(edges) g = graph.rag_boundary(labels, edges) out = graph.draw_rag(labels, g, edges_rgb, node_color="#ffff00", - colormap='plasma') + colormap='jet') io.imshow(out) io.show()