Skip to content

Commit

Permalink
set higher s range and v range
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudbore committed Oct 8, 2024
1 parent 31c7b71 commit 5f0fae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dwi_ml/viz/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def generate_dissimilar_color_map(nb_distinct_colors: int):
# s_range (tuple): Range for the saturation component.
# v_range (tuple): Range for the value component.
h_range = (0, 1)
s_range = (0.25, 1)
v_range = (0.25, 1)
s_range = (0.8, 1)
v_range = (0.8, 1)

# Start with a random initial color
rgb_colors = [[1, 0, 0]]
Expand Down

0 comments on commit 5f0fae5

Please sign in to comment.