Skip to content

Commit 2d3c270

Browse files
committed
Add more class maps for smacc
1 parent 0bc6286 commit 2d3c270

File tree

2 files changed

+275
-25
lines changed

2 files changed

+275
-25
lines changed

cccplayground.ipynb

+270-24
Large diffs are not rendered by default.

visual_utils.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from spectral import *
55
import numpy as np
66
import pylab
7+
import random
78

89
def generate_class_colours(n):
910
import colorsys
@@ -32,8 +33,11 @@ def show_histogram(hist_values, title):
3233
raw_input("Press Enter to continue...")
3334
pylab.close()
3435

35-
def show_classes(class_map, image=None):
36+
def show_classes(class_map, image=None, shuffle_colours=False):
3637
class_colours = generate_class_colours(np.max(class_map))
38+
if shuffle_colours:
39+
random.shuffle(class_colours)
40+
3741
if image is not None:
3842
view = imshow(image, (29, 20, 12), classes=class_map, colors=class_colours, title="Image with class overlay")
3943
view.set_display_mode('overlay')

0 commit comments

Comments
 (0)