We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Various attributes in a 3D window. Using ndimage I guess.
ndimage
The text was updated successfully, but these errors were encountered:
Would this work for the moving window RMS attribute?
This would only be relevant for a 1-D signal, i.e. on a trace by trace basis. Do we need 2-D and 3-D equivalents?
import numpy as np def window_rms(d, window_size): d2 = np.power(d, 2) window = np.ones(window_size) / float(window_size) return np.sqrt(np.convolve(d2, window, 'valid'))
Found here.
Sorry, something went wrong.
No branches or pull requests
Various attributes in a 3D window. Using
ndimage
I guess.The text was updated successfully, but these errors were encountered: