You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code for the writing of summary indices to csv file and for the presentation of image tracks is unnecessarily complicated. There are three issues:
The initial writing of the Summary indices to csv file includes three unnecessary columns containing zeros. Columns are P, R and T and header names are AvgEntropySpectrum, VarianceentropySpectrum and EntropyPeaks. these are just the old names for the indices that are now written to Columns O, Q, and S respectively.
There are many unnecessary inclusions (e.g. zero crossings in the L and R channels) in the IndexProperties file resulting from work done with Yvonne Philips checking for channel integrity. these are special case indices and not usually required.
The translation dictionary is no longer useful and should be removed.
Describe the solution you'd like
Refactor the SummaryIndexValues class to remove writing of unnecessary columns to csv file
Take out all indices in the IndexProperties config file to do with channel integrity and put them in a separate Properties file.
remove the implementation of the Translation Dictionary.
The text was updated successfully, but these errors were encountered:
Most of the issues have been resolved.
BUT.....
Did NOT generalise the method SummaryIndexvalues.GetDictionaryOfSummaryIndices(List<SummaryIndexValues> summaryIndices)
Anhtony will have to do this. I have increased the number of summary indices displayed.
Most of the issues have been resolved.
BUT.....
Did NOT generalise the method SummaryIndexvalues.GetDictionaryOfSummaryIndices(List<SummaryIndexValues> summaryIndices)
Anhtony will have to do this. I have increased the number of summary indices displayed.
Describe the bug
The code for the writing of summary indices to csv file and for the presentation of image tracks is unnecessarily complicated. There are three issues:
The initial writing of the Summary indices to csv file includes three unnecessary columns containing zeros. Columns are P, R and T and header names are AvgEntropySpectrum, VarianceentropySpectrum and EntropyPeaks. these are just the old names for the indices that are now written to Columns O, Q, and S respectively.
There are many unnecessary inclusions (e.g. zero crossings in the L and R channels) in the IndexProperties file resulting from work done with Yvonne Philips checking for channel integrity. these are special case indices and not usually required.
The translation dictionary is no longer useful and should be removed.
Describe the solution you'd like
The text was updated successfully, but these errors were encountered: