1 | #! /usr/bin/env python |
---|
2 | |
---|
3 | from numpy.testing import TestCase, assert_equal, assert_array_less |
---|
4 | from aubio import fvec, cvec, pvoc, float_type |
---|
5 | from nose2.tools import params |
---|
6 | import numpy as np |
---|
7 | |
---|
8 | if float_type == 'float32': |
---|
9 | max_sq_error = 1.e-12 |
---|
10 | else: |
---|
11 | max_sq_error = 1.e-29 |
---|
12 | |
---|
13 | def create_sine(hop_s, freq, samplerate): |
---|
14 | t = np.arange(hop_s).astype(float_type) |
---|
15 | return np.sin( 2. * np.pi * freq * t / float(samplerate)) |
---|
16 | |
---|
17 | def create_noise(hop_s): |
---|
18 | return np.random.rand(hop_s).astype(float_type) * 2. - 1. |
---|
19 | |
---|
20 | class aubio_pvoc_test_case(TestCase): |
---|
21 | """ pvoc object test case """ |
---|
22 | |
---|
23 | def test_members_automatic_sizes_default(self): |
---|
24 | """ check object creation with default parameters """ |
---|
25 | f = pvoc() |
---|
26 | assert_equal ([f.win_s, f.hop_s], [1024, 512]) |
---|
27 | |
---|
28 | def test_members_unnamed_params(self): |
---|
29 | """ check object creation with unnamed parameters """ |
---|
30 | f = pvoc(2048, 128) |
---|
31 | assert_equal ([f.win_s, f.hop_s], [2048, 128]) |
---|
32 | |
---|
33 | def test_members_named_params(self): |
---|
34 | """ check object creation with named parameters """ |
---|
35 | f = pvoc(hop_s = 128, win_s = 2048) |
---|
36 | assert_equal ([f.win_s, f.hop_s], [2048, 128]) |
---|
37 | |
---|
38 | def test_zeros(self): |
---|
39 | """ check the resynthesis of zeros gives zeros """ |
---|
40 | win_s, hop_s = 1024, 256 |
---|
41 | f = pvoc (win_s, hop_s) |
---|
42 | t = fvec (hop_s) |
---|
43 | for time in range( int ( 4 * win_s / hop_s ) ): |
---|
44 | s = f(t) |
---|
45 | r = f.rdo(s) |
---|
46 | assert_equal ( t, 0.) |
---|
47 | assert_equal ( s.norm, 0.) |
---|
48 | assert_equal ( s.phas, 0.) |
---|
49 | assert_equal ( r, 0.) |
---|
50 | |
---|
51 | @params( |
---|
52 | ( 256, 8), |
---|
53 | ( 256, 4), |
---|
54 | ( 256, 2), |
---|
55 | ( 512, 8), |
---|
56 | ( 512, 4), |
---|
57 | ( 512, 2), |
---|
58 | (1024, 8), |
---|
59 | (1024, 4), |
---|
60 | (1024, 2), |
---|
61 | (2048, 8), |
---|
62 | (2048, 4), |
---|
63 | (2048, 2), |
---|
64 | (4096, 8), |
---|
65 | (4096, 4), |
---|
66 | (4096, 2), |
---|
67 | (8192, 8), |
---|
68 | (8192, 4), |
---|
69 | (8192, 2), |
---|
70 | ) |
---|
71 | def test_resynth_steps_noise(self, hop_s, ratio): |
---|
72 | """ check the resynthesis of a random signal is correct """ |
---|
73 | sigin = create_noise(hop_s) |
---|
74 | self.reconstruction(sigin, hop_s, ratio) |
---|
75 | |
---|
76 | @params( |
---|
77 | (44100, 256, 8, 441), |
---|
78 | (44100, 256, 4, 1203), |
---|
79 | (44100, 256, 2, 3045), |
---|
80 | (44100, 512, 8, 445), |
---|
81 | (44100, 512, 4, 445), |
---|
82 | (44100, 512, 2, 445), |
---|
83 | (44100, 1024, 8, 445), |
---|
84 | (44100, 1024, 4, 445), |
---|
85 | (44100, 1024, 2, 445), |
---|
86 | ( 8000, 1024, 2, 445), |
---|
87 | (22050, 1024, 2, 445), |
---|
88 | (22050, 256, 8, 445), |
---|
89 | (96000, 1024, 8, 47000), |
---|
90 | (96000, 1024, 8, 20), |
---|
91 | ) |
---|
92 | def test_resynth_steps_sine(self, samplerate, hop_s, ratio, freq): |
---|
93 | """ check the resynthesis of a sine is correct """ |
---|
94 | sigin = create_sine(hop_s, freq, samplerate) |
---|
95 | self.reconstruction(sigin, hop_s, ratio) |
---|
96 | |
---|
97 | def reconstruction(self, sigin, hop_s, ratio): |
---|
98 | buf_s = hop_s * ratio |
---|
99 | f = pvoc(buf_s, hop_s) |
---|
100 | zeros = fvec(hop_s) |
---|
101 | r2 = f.rdo( f(sigin) ) |
---|
102 | for i in range(1, ratio): |
---|
103 | r2 = f.rdo( f(zeros) ) |
---|
104 | # compute square errors |
---|
105 | sq_error = (r2 - sigin)**2 |
---|
106 | # make sure all square errors are less than desired precision |
---|
107 | assert_array_less(sq_error, max_sq_error) |
---|
108 | |
---|
109 | def test_large_input_timegrain(self): |
---|
110 | win_s = 1024 |
---|
111 | f = pvoc(win_s) |
---|
112 | t = fvec(win_s + 1) |
---|
113 | with self.assertRaises(ValueError): |
---|
114 | f(t) |
---|
115 | |
---|
116 | def test_small_input_timegrain(self): |
---|
117 | win_s = 1024 |
---|
118 | f = pvoc(win_s) |
---|
119 | t = fvec(1) |
---|
120 | with self.assertRaises(ValueError): |
---|
121 | f(t) |
---|
122 | |
---|
123 | def test_large_input_fftgrain(self): |
---|
124 | win_s = 1024 |
---|
125 | f = pvoc(win_s) |
---|
126 | s = cvec(win_s + 5) |
---|
127 | with self.assertRaises(ValueError): |
---|
128 | f.rdo(s) |
---|
129 | |
---|
130 | def test_small_input_fftgrain(self): |
---|
131 | win_s = 1024 |
---|
132 | f = pvoc(win_s) |
---|
133 | s = cvec(16) |
---|
134 | with self.assertRaises(ValueError): |
---|
135 | f.rdo(s) |
---|
136 | |
---|
137 | if __name__ == '__main__': |
---|
138 | from nose2 import main |
---|
139 | main() |
---|
140 | |
---|