This repository has been archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (116 loc) · 4.9 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html>
<head>
<title>SmartLab</title>
<link rel="stylesheet" type="text/css" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<metahttp-equiv="content-type" content="text/html;charset=utf-8" />
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html">SmartLab</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="/resources.html">Resources</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="/contact.html">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container" id="maincont">
<div class="row">
<div class="col-sm-3 sidebar">
<h3>SmartLab</h3>
<a href="#research">Research</a><br>
<a href="#projects">Projects</a><br>
<a href="#people">People</a><br>
<a href="#collaborators">Collaborators</a><br>
<p>
<h3>Links</h3>
<p>
<a href="http://hpds.cs.uit.no/">
High Performance Distributed Systems</a>
</p>
<p>
<a href="http://www.cs.uit.no/">Department of Computer Science
</a>
</p>
<p>
<a href="http://uit.no/">
<img src="images/uit.png" alt="University of Tromsø">
</a>
</p>
</p>
</div>
<div class="col-sm-9">
<h1>SmartLab</h1>
<a id="research"></a>
<p>
</p>
<p>
</p>
<a id="projects"></a>
<h2>Projects</h2>
<p>
We participate several projects.
</p>
<h3>Lung and Heart Sounds (Tromsøundersøkelsen)</h3>
<p>
In the lung sounds project we are building a database with
lung sound recordings of 3000 persons (6 samples per person).
The recordings are done as part og <a href="http://uit.no/forskning/forskningsgrupper/gruppe?p_document_id=367276">Tromsøundersøkelsen 7</a>,
which is an Epidemiological study that was started in 1974.
The database will be used to provide educational and analysis
services for lung sounds. Our contributions are methods for
automated classification and similarity search for the sounds.
This project is done in collaboration with <a href="http://uit.no/om/enhet/ansatte/person?p_document_id=42135&p_dimension_id=88114">Hasse Melbye</a>
at the Department of Community Medicine</a>, University of Tromsø.
</p>
<h3>Air Pollution</h3>
<p>
</p>
<a id="people"></a>
<h2 id="people">People</h2>
<p>
The lab currently consist of:
<table class="table table-hover">
<tr>
<td> Lars Ailo Bongo </td>
<td> Associate Professor </td>
<td>
<a href="http://www.cs.uit.no/~larsab">Homepage</a> |
<a href="https://github.com/larsab">Github</a> |
<a href="https://bitbucket.org/larsab">Bitbucket</a>
</td>
</tr>
</table>
</p>
<a id="collaborators"></a>
<h2>Collaborators</h2>
<p>
We are a lab in the <a href="http://hpds.cs.uit.no/">High
Performance Distributed Systems</a> research group at the
Department of Computer Science, University of Tromsø.
</p>
</div>
</div>
</body>
</html>