Learnbale_Bandpass_FilterImage Demoireing with Learnable Bandpass Filters, CVPR2020Our extension work is accepted by IEEE TPAMI. The journal paper will come soon.If you find this work is helpful, please cite:@a
Reproducing code example: from scipy.signal import butter, lfilter def butter_bandpass(lowcut, highcut, fs, order=5): nyq = 0.5 * fs low = lowcut / nyq high = highcut / nyq b, a = butter(order, [low, high], btype='band') return b, a def butter_bandpass_filter(data, lowcut...