Some ideas for seismic signal processing
- ortho Orthogonolize signal and noise
- similarity Local similarity measure between two datasets
- adaptive Subtraction of Post-Stack Surface Multiples Using the Pseudo-Seismic-Data-Based Convolutional Neural Network we can use 2 channel(data, hilbert(data)) for network
from scipy.signal import hilbert
z = hilbert(data, axis=0) # time axis
real_part = np.real(z) # equal data
imag_part = np.imag(z) # hilbert domain data