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 transient noise (TN) filter from Ryan et al. 2015 is slow due to the need to sort in calculating median for each window surrounding a given pixel.
Alejandro Ariza (@alejandro-ariza) and Sophie Fielding in British Antarctic Survey (BAS) has figured a new approach that works pretty well. It is implemented in echopy here and documented in the docstrings. It would be good to add this functionality.
The masking results look like:
The text was updated successfully, but these errors were encountered:
Ryan's implementation entails iterating through each ping time and each depth value, whereas Fielding's implementation entails iterating through each ping time and some of the depth values until a certain noise threshold condition is met. In this sense, Ryan's is ~O(n^2) whereas Fielding's approach is ~O(n * log(n) ).
The transient noise (TN) filter from Ryan et al. 2015 is slow due to the need to sort in calculating median for each window surrounding a given pixel.
Alejandro Ariza (@alejandro-ariza) and Sophie Fielding in British Antarctic Survey (BAS) has figured a new approach that works pretty well. It is implemented in echopy here and documented in the docstrings. It would be good to add this functionality.
The masking results look like:
The text was updated successfully, but these errors were encountered: