combine fft filter into a single node, fix tests
This commit is contained in:
63
tests/node_tests/filter_fft.py
Normal file
63
tests/node_tests/filter_fft.py
Normal file
@@ -0,0 +1,63 @@
|
||||
import numpy as np
|
||||
from tests.node_tests._shared import make_field
|
||||
|
||||
|
||||
def test_fft_filter_line():
|
||||
from backend.nodes.filter_fft import FFTFilter
|
||||
node = FFTFilter()
|
||||
|
||||
n = 256
|
||||
t = np.arange(n, dtype=np.float64) / n
|
||||
low = np.sin(2 * np.pi * 3 * t)
|
||||
high = np.sin(2 * np.pi * 80 * t)
|
||||
line = low + high
|
||||
|
||||
filtered_lp, = node.process(line, filter_type="lowpass", cutoff=0.15, cutoff_high=0.4, order=4)
|
||||
assert len(filtered_lp) == n
|
||||
corr_low = np.corrcoef(filtered_lp, low)[0, 1]
|
||||
corr_high = np.corrcoef(filtered_lp, high)[0, 1]
|
||||
assert corr_low > 0.95
|
||||
assert abs(corr_high) < 0.3
|
||||
|
||||
filtered_hp, = node.process(line, filter_type="highpass", cutoff=0.4, cutoff_high=0.4, order=4)
|
||||
assert abs(np.corrcoef(filtered_hp, low)[0, 1]) < 0.3
|
||||
assert np.corrcoef(filtered_hp, high)[0, 1] > 0.95
|
||||
|
||||
filtered_bp, = node.process(line, filter_type="bandpass", cutoff=0.4, cutoff_high=0.8, order=4)
|
||||
assert abs(np.corrcoef(filtered_bp, low)[0, 1]) < 0.3
|
||||
assert np.corrcoef(filtered_bp, high)[0, 1] > 0.9
|
||||
|
||||
filtered_notch, = node.process(line, filter_type="notch", cutoff=0.4, cutoff_high=0.8, order=4)
|
||||
assert np.corrcoef(filtered_notch, low)[0, 1] > 0.95
|
||||
assert abs(np.corrcoef(filtered_notch, high)[0, 1]) < 0.3
|
||||
|
||||
|
||||
def test_fft_filter_field():
|
||||
from backend.nodes.filter_fft import FFTFilter
|
||||
from backend.data_types import DataField
|
||||
node = FFTFilter()
|
||||
|
||||
N = 128
|
||||
y, x = np.mgrid[0:N, 0:N] / N
|
||||
low_2d = np.sin(2 * np.pi * 3 * x) + np.sin(2 * np.pi * 3 * y)
|
||||
high_2d = np.sin(2 * np.pi * 40 * x) + np.sin(2 * np.pi * 40 * y)
|
||||
data = low_2d + high_2d
|
||||
field = make_field(data=data, shape=None, xreal=1e-6, yreal=1e-6)
|
||||
|
||||
result_lp, = node.process(field, filter_type="lowpass", cutoff=0.15, cutoff_high=0.4, order=4)
|
||||
assert isinstance(result_lp, DataField)
|
||||
assert result_lp.data.shape == (N, N)
|
||||
assert result_lp.xreal == field.xreal
|
||||
assert result_lp.si_unit_z == field.si_unit_z
|
||||
corr_low = np.corrcoef(result_lp.data.ravel(), low_2d.ravel())[0, 1]
|
||||
corr_high = np.corrcoef(result_lp.data.ravel(), high_2d.ravel())[0, 1]
|
||||
assert corr_low > 0.9
|
||||
assert abs(corr_high) < 0.3
|
||||
|
||||
result_hp, = node.process(field, filter_type="highpass", cutoff=0.4, cutoff_high=0.4, order=4)
|
||||
assert abs(np.corrcoef(result_hp.data.ravel(), low_2d.ravel())[0, 1]) < 0.3
|
||||
assert np.corrcoef(result_hp.data.ravel(), high_2d.ravel())[0, 1] > 0.9
|
||||
|
||||
const = make_field(data=np.ones((32, 32)) * 7.0)
|
||||
result_const, = node.process(const, filter_type="lowpass", cutoff=0.5, cutoff_high=0.5, order=2)
|
||||
assert np.allclose(result_const.data, 7.0, atol=1e-10)
|
||||
@@ -1,33 +0,0 @@
|
||||
import numpy as np
|
||||
|
||||
|
||||
def test_fft_filter_1d():
|
||||
from backend.nodes.filter_fft_1d import FFTFilter1D
|
||||
node = FFTFilter1D()
|
||||
|
||||
n = 256
|
||||
t = np.arange(n, dtype=np.float64) / n
|
||||
low = np.sin(2 * np.pi * 3 * t)
|
||||
high = np.sin(2 * np.pi * 80 * t)
|
||||
line = low + high
|
||||
|
||||
filtered_lp, = node.process(line, filter_type="lowpass", cutoff=0.15, cutoff_high=0.4, order=4)
|
||||
assert len(filtered_lp) == n
|
||||
corr_low = np.corrcoef(filtered_lp, low)[0, 1]
|
||||
corr_high = np.corrcoef(filtered_lp, high)[0, 1]
|
||||
assert corr_low > 0.95
|
||||
assert abs(corr_high) < 0.3
|
||||
|
||||
filtered_hp, = node.process(line, filter_type="highpass", cutoff=0.4, cutoff_high=0.4, order=4)
|
||||
corr_low_hp = np.corrcoef(filtered_hp, low)[0, 1]
|
||||
corr_high_hp = np.corrcoef(filtered_hp, high)[0, 1]
|
||||
assert abs(corr_low_hp) < 0.3
|
||||
assert corr_high_hp > 0.95
|
||||
|
||||
filtered_bp, = node.process(line, filter_type="bandpass", cutoff=0.4, cutoff_high=0.8, order=4)
|
||||
assert abs(np.corrcoef(filtered_bp, low)[0, 1]) < 0.3
|
||||
assert np.corrcoef(filtered_bp, high)[0, 1] > 0.9
|
||||
|
||||
filtered_notch, = node.process(line, filter_type="notch", cutoff=0.4, cutoff_high=0.8, order=4)
|
||||
assert np.corrcoef(filtered_notch, low)[0, 1] > 0.95
|
||||
assert abs(np.corrcoef(filtered_notch, high)[0, 1]) < 0.3
|
||||
@@ -1,31 +0,0 @@
|
||||
import numpy as np
|
||||
from tests.node_tests._shared import make_field
|
||||
|
||||
|
||||
def test_fft_filter_2d():
|
||||
from backend.nodes.filter_fft_2d import FFTFilter2D
|
||||
node = FFTFilter2D()
|
||||
|
||||
N = 128
|
||||
y, x = np.mgrid[0:N, 0:N] / N
|
||||
low_2d = np.sin(2 * np.pi * 3 * x) + np.sin(2 * np.pi * 3 * y)
|
||||
high_2d = np.sin(2 * np.pi * 40 * x) + np.sin(2 * np.pi * 40 * y)
|
||||
data = low_2d + high_2d
|
||||
field = make_field(data=data, shape=None, xreal=1e-6, yreal=1e-6)
|
||||
|
||||
result_lp, = node.process(field, filter_type="lowpass", cutoff=0.15, cutoff_high=0.4, order=4)
|
||||
assert result_lp.data.shape == (N, N)
|
||||
assert result_lp.xreal == field.xreal
|
||||
assert result_lp.si_unit_z == field.si_unit_z
|
||||
corr_low = np.corrcoef(result_lp.data.ravel(), low_2d.ravel())[0, 1]
|
||||
corr_high = np.corrcoef(result_lp.data.ravel(), high_2d.ravel())[0, 1]
|
||||
assert corr_low > 0.9
|
||||
assert abs(corr_high) < 0.3
|
||||
|
||||
result_hp, = node.process(field, filter_type="highpass", cutoff=0.4, cutoff_high=0.4, order=4)
|
||||
assert abs(np.corrcoef(result_hp.data.ravel(), low_2d.ravel())[0, 1]) < 0.3
|
||||
assert np.corrcoef(result_hp.data.ravel(), high_2d.ravel())[0, 1] > 0.9
|
||||
|
||||
const = make_field(data=np.ones((32, 32)) * 7.0)
|
||||
result_const, = node.process(const, filter_type="lowpass", cutoff=0.5, cutoff_high=0.5, order=2)
|
||||
assert np.allclose(result_const.data, 7.0, atol=1e-10)
|
||||
Reference in New Issue
Block a user