Skip to content

Commit

Permalink
Adjusted display of indices rendered in blue.
Browse files Browse the repository at this point in the history
Issue #274 Adjusted display of EVN and CVR both of which are rendered in blue. Toned down the blue.
  • Loading branch information
towsey committed Nov 24, 2019
1 parent 9e52326 commit e69360f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/AnalysisConfigFiles/IndexPropertiesConfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ CVR:
DefaultValue: 0.0
DoDisplay: true
NormMin: 0.0
NormMax: 0.2
NormMax: 0.3
CalculateNormBounds: false
ProjectID: Acoustic Indices
Units: ""
Expand Down Expand Up @@ -565,7 +565,7 @@ EVN:
DefaultValue: 0.0
DoDisplay: true
NormMin: 0.0
NormMax: 2.0
NormMax: 4.0
CalculateNormBounds: false
ProjectID: Acoustic Indices
Units: "events/s"
Expand Down
2 changes: 1 addition & 1 deletion src/AnalysisConfigFiles/SpectrogramFalseColourConfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# It should NOT contain dynamic data (like file names or analysis types)

ColorMap1: "ACI-ENT-EVN"
ColorMap2: "BGN-PMN-R3D"
ColorMap2: "BGN-PMN-CVR"

# The ColourFilter parameter determines how much the low index values are emphasized or de-emphasized.
# The purpose is to make low intensity features stand out (emphasis) or become even less obvious (de-emphasis).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ public static Image DrawRgbColourMatrix(double[,] redM, double[,] grnM, double[,
{
r += 0.5 * (b - r);
g += 0.5 * (b - g);
b += 0.2;
b += 0.1;

// check for values over 1.0
//g = Math.Min(1.0, g);
Expand Down

0 comments on commit e69360f

Please sign in to comment.