-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeployment.html
More file actions
107 lines (107 loc) · 4.21 KB
/
deployment.html
File metadata and controls
107 lines (107 loc) · 4.21 KB
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
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--\<meta name="viewport" content="width=device-width, initial-scale=1"> -->
<link rel="canonical" href="/deployment">
<meta property="og:url" content="/deployment">
<meta property="og:site_name" content="/">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon.png">
<title>u-Bat</title>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.3.2/build/styles/default.min.css">
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.3.2/build/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<link rel="icon" type="image/jpeg" href="/favicon.png"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/css/main.css">
<!--pudhina-fresh-jekyll-sun-chocolate-ruby-v-2021-02-22-->
<div class="wrapper">
<header class="header">
<div class="navigation">
<style>
.headerx img {
float: left;
width: 100px;
height: 100px;
}
.headerx h1 {
position: relative;
top: 8px;
left: 10px;
}
</style>
<div class="headerx">
<img src="/assets/img/logo.png" alt="logo" width="90px" length="90px">
<h1>u-Bat</h1>
</div>
<ul class="menu">
<li class="menu__entry"><a href="/" style = "color: #4d4d4d">About</a>
<li class="menu__entry"><a href="/resources" style = "color: #4d4d4d">Resources</a>
<li class="menu__entry"><a href="/applications" style = "color: #4d4d4d">Applications</a>
<li class="menu__entry"><a href="/deployment" style = "color: #4d4d4d">Deployment</a>
<li class="menu__entry"><a href="/team" style = "color: #4d4d4d">Team</a>
</ul>
</div>
</header>
<br>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script src="gmaps.js"></script>
<style type="text/css">
#map {
width: 600px;
height: 400px;
float: center;
}
</style>
<style>
.column {
float: left;
width: 50%;
padding: 10px
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
hp {
float: right;
margin: 0 0 0 15px;
}
</style>
<div class="row">
<div class="column">
<h3 style = "color: #4d4d4d; font-size:25px; text-align: left">Deployment on AudioMoth</h3>
<p> The deployment for u-Bat is planned to detect bird chirps at Indian Institute of Science (IISc). For deployment purposes, we have written integrated firmware for AudioMoth (widely used for data logging in ecological studies) incorporating the ULP-ACE into audiomoth_firmware_basic. We have trained the model with cuckoo bird sounds using the the framework and the working demonstration is given on the right.</p>
<p>The setup is estimated to sustain for 30 days with 3 AA batteries. The firmware code, hardware and software requirements and how to port it in the AudioMoth are given in the <a href="https://github.com/HemanthSabbella/ULP-ACE/tree/main/deployment">GitHub repo</a></p>
</div>
<div class="column">
<h3 style = "color: #4d4d4d; font-size:25px;">Cuckoo detection:</h3>
<video width="95%" height="350" controls>
<source src="assets/img/cuckoo_detection.mp4" type="video/mp4">
</video>
</div>
<!--
<h3 style = "color: #4d4d4d; font-size:25px; text-align: left">Birds detected at IISc will be tagged on Google Maps API soon!</h3>
<div id="map"></div>
<script>
var map = new GMaps({
el: '#map',
lat: 13.0165,
lng: 77.5671
});
</script>
</div>
<br>
<br>-->
</div>