-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (69 loc) · 4.28 KB
/
index.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head class="include" file="include/header.html">
<link rel="stylesheet" href="include/bootstrap.min.css">
<link rel="stylesheet" href="include/bootstrap-theme.min.css">
<link rel="stylesheet" href="include/bootstrap-select.min.css">
<link rel="stylesheet" href="include/style.css" type="text/css">
<link rel="stylesheet" href="include/highlight.css" type="text/css">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta NAME="keywords" CONTENT="graph signal processing, graphs, filters, graph filters, signal processing, matlab,documentation"/>
<title>The Graph Signal Processing Toolbox</title>
</head>
<!-- body must stay hidden until all include parts are loaded -->
<body style="display:none;">
<!-- Wrap the content into responsive container -->
<div class="container">
<!-- Include main navigation -->
<div class="masthead include" file="include/mainnav.html"></div>
<div class="jumbotron">
<p><a href="doc/demos/gsp_demo.html"><img src="gspfrontpage.png"></a></p>
<p class="lead">
The <strong style="color: #08c;">Graph Signal Processing toolbox </strong> is an easy to use matlab toolbox that performs a wide variety of operations on graphs, from simple ones like filtering to advanced ones like interpolation or graph learning. You can create all sorts of filterbanks including wavelets and Gabor. It is based on spectral graph theory and many of the features can scale to very large graphs.
</p>
<p>The GSPBOX is developed at the Signal Processing Laboratory <a href="http://lts2www.epfl.ch/">LTS2</a> of the Ecole Polytechnique Fédérale de Lausanne <a href="http://www.epfl.ch">EPFL</a> </p>
<p>The toolbox is <a title="definitions of free and non-free software" href="http://www.gnu.org/philosophy/categories.html">Free</a> software, released under the GNU General Public License (GPLv3).</p>
<a class="btn btn-large btn-success" href="https://github.com/epfl-lts2/gspbox/releases/latest">Download the GSPBox</a><br/>
</div>
<hr>
<div id="row">
<div class="col-md-4">
<h2 class="titlepage"><a name="features">Features</a></h2>
<ul>
<li>Graph Fourier transform</li>
<li>Graph wavelet transform</li>
<li>Graph Gabor transform</li>
<li>Graph pyramid</li>
<li>Graph kron reduction</li>
<li>Fast transform using Chebysheff polynomial</li>
<li>Graph plotting</li>
<li>Demos demonstrating the use of the toolbox</li>
<li>Works in Matlabwith a backend in C for greater speed</li>
<li>The toolbox is <a title="definitions of free and non-free software"
href="http://www.gnu.org/philosophy/categories.html">Free</a> software, released under the GNU General Public License (GPLv3)</li>
</ul>
</div>
<div class="col-md-4">
<h2 class="titlepage"><a name="documentation">Documentation</A></h2>
You can read the <a href="doc/">online documentation</a><!-- or download the entire documentation as a single <a href="gspbox.pdf">pdf file</a> -->.<p>
</div>
<div class="col-md-4">
<h2 class="titlepage"><a name="publication">Publications</a></h2>
<p>
If you use the toolbox in a scientic work, please cite:
</p>
<blockquote>Perraudin Nathanaël, Johan Paratte, David Shuman, Lionel Martin, Vassilis Kalofolias, Pierre Vandergheynst and David K. Hammond}, <i>GSPBOX: A toolbox for signal processing on graphs</i>. Arxiv e-print, 08-2014. <a href="gspbox.bib">[bibtex]</a></blockquote>
<p>available from <a href="http://arxiv.org/abs/1408.5781">here</a>. This will help in securing a continued development of the toolbox.</p>
</div>
</div>
<!-- footer -->
<div class="include" file="include/footer.html"></div>
</div><!--</container>-->
<!-- These two have to be here to dynamically load the included parts -->
<script src="include/jquery.min.js"></script>
<script src="include/bootstrap-select.min.js"></script>
<script src="include/gspbox.js" type="text/javascript"></script>
</body>
</html>