-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (61 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="icaps">
<title>iCAPS - Inteligent Cardiac Arrhythmia Pre-identification System</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">iCAPS </span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Inteligent Cardiac Arrhythmia Pre-identification System</h1>
<p>A solution to distinguish the problem definition of real time cardiac arrhythmia
classification with high accuracy and low latency.</p>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img src="./img/analysis.png">
<h3>Arrhythmia Classification</h3>
<p>Classify the arrhythmias into 15 diffrent classes.</p>
</div>
<div class="box">
<img src="./img/flag.png">
<h3>Flag Abnormalities</h3>
<p>Flag the abnormalities in the ECG and notify immediately.</p>
</div>
<div class="box">
<img src="./img/feature.png">
<h3>Accurate Feature Extraction</h3>
<p>Calculate ECG Features such as heart rate, QRS complex etc.</p>
</div>
<div class="box">
<img src="./img/gpu.png">
<h3>Running above on
GPU</h3>
<p>Utilize the GPU usage for faster realtime prediction.</p>
</div>
</div>
</section>
<footer>
<p>iCAPS-SLIIT © 2019</p>
</footer>
</body>
</html>