Skip to content

Commit

Permalink
Update SummaryIndexValues.cs
Browse files Browse the repository at this point in the history
remove two of the summary indices for display.
  • Loading branch information
towsey authored and atruskie committed Mar 25, 2019
1 parent 910ff24 commit c7c2a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AudioAnalysisTools/Indices/SummaryIndexValues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public static Dictionary<string, double[]> ConvertToDictionaryOfSummaryIndices(L
{
{ GapsAndJoins.KeyZeroSignal, summaryIndices.Select(x => x.ZeroSignal).ToArray() },
{ "ClippingIndex", summaryIndices.Select(x => x.ClippingIndex).ToArray() },
{ "HighAmplitudeIndex", summaryIndices.Select(x => x.HighAmplitudeIndex).ToArray() },
{ "AvgSignalAmplitude", summaryIndices.Select(x => x.AvgSignalAmplitude).ToArray() },
//{ "HighAmplitudeIndex", summaryIndices.Select(x => x.HighAmplitudeIndex).ToArray() },
//{ "AvgSignalAmplitude", summaryIndices.Select(x => x.AvgSignalAmplitude).ToArray() },
{ "BackgroundNoise", summaryIndices.Select(x => x.BackgroundNoise).ToArray() },
{ "Snr", summaryIndices.Select(x => x.Snr).ToArray() },
{ "AvgSnrOfActiveFrames", summaryIndices.Select(x => x.AvgSnrOfActiveFrames).ToArray() },
Expand Down

0 comments on commit c7c2a17

Please sign in to comment.