-
Notifications
You must be signed in to change notification settings - Fork 0
/
research.html
executable file
·442 lines (354 loc) · 17.3 KB
/
research.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> --->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="utf-8">
<title>Vision and AI Lab</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="./bootstrap.css" media="screen">
<link rel="stylesheet" href="../assets/css/bootswatch.min.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23019901-1']);
_gaq.push(['_setDomainName', "bootswatch.com"]);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif, Lexend;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #800000;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
</style>
</head>
<div class="topnav" id="myTopnav">
<img src="VAL_Logo2.png" height="48px" id=logo alt="Logo image" style="margin-left: 10px;" />
<a href="./index.html">Home</a>
<a href="./people.html">People</a>
<a href="./research.html" class="active">Research</a>
<a href="./publications.html">Publications</a>
<a href="./contact.html">Contact</a>
<a href="./openings.html">Openings</a>
<a href="./press.html">Press Coverage</a>
<a href="./prospective.html">Prospective Students</a>
<a href="./funding.html">Funding</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<div>
<link href='https://fonts.googleapis.com/css?family=Lexend' rel='stylesheet'>
<h1 style="font-family:Lexend;font-size: 32px;"> <span style="color:dimgray;"><b>  Vision & </b> </span> <span style="color:maroon;"> <b>AI</b></span> <span style="color:dimgray;"> <b>Lab (VAL)</b></span>
<ul>
</h1>
<!--<p class="lead"><a href="http://cds.iisc.ac.in"> Department of Computational and Data Sciences</a>, <a href="http://www.iisc.ac.in/">Indian Institute of Science, Bangalore, INDIA</a></p>-->
</div>
<div class="container">
<div class="page-header" id="banner">
<div class="row">
<div>
<h1>Research Areas</h1>
<li><big> Vision and AI Lab - Introduction </big></li>
</div>
<iframe width="420" height="315" src="https://www.youtube.com/embed/Uqk4kF51_TU">
</iframe>
<!--<div align=center>
<img width=300 src="vallogo.jpg"></img>
</div>
<p class="lead"> Details coming soon </p>-->
<!--<h4 style="text-align: left;"><big><big>Feature Representations</big></big></h4>
<h5 style="text-align: left;"><big><big>PhD</big></big></h5>
<ol>
<li><big><a href="https://sites.google.com/site/kreddymopuri/">Konda Reddy Mopuri </a> (Since - Aug. 2012)</big></li>
<li><big><a href="http://cds.iisc.ac.in/student/ravikiran/"> Ravi Kiran S </a> (Since - Aug. 2014)</big></li>
<li><big><a href=""> Ram Prabhakar K. </a> (Since - Aug. 2014)</big></li>
<li><big><a href=""> Deepak Babu Sam </a> (Since - Jan. 2016)</big></li>
<li><big><a href=""> Jogendra Nath Kundu </a> (Since - Aug. 2016)</big></li>
</ol> -->
<div id="477250" class=" linksBox" style="">
<h3>
Feature Representations</h3>
<ul class="link-list">
<li >
<a href="https://sites.google.com/site/kreddymopuri/research/ir-nld"
title="">Multi-modal Neural Encodings</a>
<div class="clear"></div>
</li>
<li >
<a href="https://arxiv.org/abs/1705.09142"
title="">Deep Image Representations</a>
<div class="clear"></div>
</li>
<li >
<a href="https://github.com/val-iisc/cnn-fixations"
title="">CNN Fixations</a>
<div class="clear"></div>
</li>
<!--<li >
<a href="/research/detect/ldahash"
title=""> LDAHash: Binary Descriptor for Large-scale Applications</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/detect/brief"
title=""> BRIEF: Binary Descriptor for Low-cost Real-time Applications</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/detect/dbrief"
title=""> D-Brief: Efficient Discriminative Projections for Compact Binary Descriptors</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/detect/deepdescriptorlearning"
title="">Deep Convolutional Descriptor Learning</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/tilde"
title="">TILDE: A Temporally Invariant Learned DEtector</a>
<div class="clear"></div>
</li>
<li >
<a href="/page-107683.html"
title="">Robust 3D Tracking with Descriptor Fields</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/filter_learning"
title="">Filter learning for image categorization and pixel classification</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/detect/orientation"
title="">Learning to Assign Orientations to Feature Points</a>
<div class="clear"></div>
</li>-->
</ul>
</div>
<div id="477250" class=" linksBox" style="">
<h3>
Object Category Understanding</h3>
<ul class="link-list">
<li >
<a href="http://openaccess.thecvf.com/content_cvpr_2018/html/2726.html"
title="">Deep Object Counting</a>
<div class="clear"></div>
</li>
<li >
<a href="https://github.com/val-iisc/deligan"
title="">Freehand Sketches - analysis and synthesis</a>
<div class="clear"></div>
</li>
<!--<li >
<a href="/research/OCU/vehicle"
title=""> Vehicle Counting</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/feature_rep/cnnfixations"
title="">CNN Fixations</a>
<div class="clear"></div>
</li>-->
</ul>
</div>
<div id="477250" class=" linksBox" style="">
<h3>
Deep Low Level Vision</h3>
<ul class="link-list">
<li >
<a href="http://val.serc.iisc.ernet.in/DeepFuseICCV17/"
title="">Computational Photography</a>
<div class="clear"></div>
</li>
<!-- <li >
<a href="/research/OCU/sketches"
title="">Freehand Sketches - analysis and synthesis</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/OCU/vehicle"
title=""> Vehicle Counting</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/feature_rep/cnnfixations"
title="">CNN Fixations</a>
<div class="clear"></div>
</li>-->
</ul>
</div>
<div id="477250" class=" linksBox" style="">
<h3>
Emerging Topics in Deep Learning</h3>
<ul class="link-list">
<li >
<a href="https://arxiv.org/abs/1801.08092"
title="">Adversarial Perturbations</a>
<div class="clear"></div>
</li>
<!-- <li >
<a href="/research/emerging/feedback"
title="">Feedback Networks</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/emerging/RL"
title="">Reinforcement Learning</a>
<div class="clear"></div>
</li>
<li >
<a href="/research/feature_rep/cnnfixations"
title="">CNN Fixations</a>
<div class="clear"></div>
</li>-->
</ul>
</div>
<div id="477250" class=" linksBox" style="">
<h3>
Previous Works</h3>
<ul class="link-list">
<li >
<a href="https://ieeexplore.ieee.org/document/1281820"
title="">Video Object Segmentation</a>
<div class="clear"></div>
</li>
<li >
<a href="http://dx.doi.org/10.1109/CONECCT.2014.6740188"
title="">Image Super Resolution</a>
<div class="clear"></div>
</li>
<li >
<a href="http://dx.doi.org/10.1109/NCVPRIPG.2013.6776206"
title="">Optic Disk Detection</a>
<div class="clear"></div>
</li>
<li >
<a href="http://dx.doi.org/10.1016/j.neucom.2017.02.058"
title="">Anomaly Detection</a>
<div class="clear"></div>
</li>
<li >
<a href="http://dx.doi.org/10.1016/j.imavis.2014.10.006"
title="">Tracking</a>
<div class="clear"></div>
</li>
<li >
<a href="https://dl.acm.org/citation.cfm?id=2425353"
title="">Gait Recognition</a>
<div class="clear"></div>
</li>
<li >
<a href="https://ieeexplore.ieee.org/document/6909449/"
title="">SeamSeg: Video Object Segmentation using Patch Seams</a>
<div class="clear"></div>
</li>
<li >
<a href="http://val.serc.iisc.ernet.in/oldf/index.html"
title="">Compact Representation of Visual Data</a>
<div class="clear"></div>
</li>
<li >
<a href="http://val.serc.iisc.ernet.in/attribute-graph/"
title="">Image Ranking</a>
<div class="clear"></div>
</li>
<li >
<a href="http://val.serc.iisc.ernet.in/saliency-unified/"
title="">Deep Visual Saliency</a>
<div class="clear"></div>
</li>
<li >
<a href="http://val.serc.iisc.ernet.in/papers/EVW17.pdf"
title="">Model Compression for DNN</a>
<div class="clear"></div>
</li>
</ul>
</div>
</div>
</div>
<footer>
<div class="row">
<div class="col-lg-12">
<p>Code released under the <a href="https://github.com/thomaspark/bootswatch/blob/gh-pages/LICENSE">MIT License</a>.</p>
<p>Based on <a href="http://getbootstrap.com" rel="nofollow">Bootstrap</a>. Icons from <a href="http://fortawesome.github.io/Font-Awesome/" rel="nofollow">Font Awesome</a>. Web fonts from <a href="http://www.google.com/webfonts" rel="nofollow">Google</a>.</p>
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../assets/js/bootswatch.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
(function(){try{var s,a,i,j,r,c,l=document.getElementsByTagName("a"),t=document.createElement("textarea");for(i=0;l.length-i;i++){try{a=l[i].getAttribute("href");if(a&&a.indexOf("/cdn-cgi/l/email-protection") > -1 && (a.length > 28)){s='';j=27+ 1 + a.indexOf("/cdn-cgi/l/email-protection");if (a.length > j) {r=parseInt(a.substr(j,2),16);for(j+=2;a.length>j&&a.substr(j,1)!='X';j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}j+=1;s+=a.substr(j,a.length-j);}t.innerHTML=s.replace(/</g,"<").replace(/>/g,">");l[i].setAttribute("href","mailto:"+t.value);}}catch(e){}}}catch(e){}})();
/* ]]> */
</script>
</body>
</html>