-
Notifications
You must be signed in to change notification settings - Fork 28
/
readme.txt
57 lines (37 loc) · 1.53 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Python implementation of Non-Stationary Gabor Transform (NSGT)
derived from MATLAB code by NUHAG, University of Vienna, Austria
Thomas Grill, 2011-2022
http://grrrr.org/nsgt
Austrian Research Institute for Artificial Intelligence (OFAI)
AudioMiner project, supported by Vienna Science and Technology Fund (WWTF)
covered by the Artistic License 2.0
http://www.perlfoundation.org/artistic_license_2_0
Mandatory dependencies:
-----------------------
Numerical Python (http://numpy.scipy.org)
Optional dependencies:
-----------------------
PyFFTW3 (https://launchpad.net/pyfftw)
will greatly speed up the NSGT transformation if fftw3 is installed on your system
pysndfile (https://pypi.org/project/pysndfile)
is recommended for using the built-in audio import/streaming functionality (otherwise ffmpeg would be tried)
Installation:
-------------
In the console (terminal application) change to the folder containing this readme.txt file.
To build the package run the following command:
python setup.py build
To install the package (with administrator rights):
sudo python setup.py install
Todo:
-----
- Quality measurement for coefficients of sliced transform
- Unify nsgfwin sliced/non-sliced
Source:
-------
Original matlab code copyright follows:
AUTHOR(s) : Monika Dörfler, Gino Angelo Velasco, Nicki Holighaus, 2010-2011
COPYRIGHT : (c) NUHAG, Dept.Math., University of Vienna, AUSTRIA
http://nuhag.eu/
Permission is granted to modify and re-distribute this
code in any manner as long as this notice is preserved.
All standard disclaimers apply.