-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
652 lines (451 loc) · 24.5 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
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<!DOCTYPE html>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<head>
<!--Important info for Vikram
Line 36 in layout.css has the background image.
Change it if you want to. You can edit the background colour there too
Put in your address, email ids, phonenumbers.
Link your resume in the download resume button
Link your social profiles in the social profiles button
Change the portfolio images,make sure they are of the same resolution
Change the text description in some of the boxes
Replace the favicon.png with a image of a V. It'll look cooler than the C.
It's okay to remove the footer, but put it under the comments. It's in their license.
Don't remove the link,or you have to pay $10. Unless you get rich. Then, yeah, do it.
Don't remove the js files. Some of the images and CSS can be removed, but check that nothing breaks.
This site is entirely copied. Remove this line before posting,but just letting you know.
-->
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Vikram Mohanty</title>
<meta name="Vikram's CV" content="">
<meta name="Not Vikram. He bulshitted me into writing this" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png" >
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav">
<li class="current"><a class="smoothscroll" href="#home">Home</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#resume">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio">Portfolio</a></li>
<li><a class="smoothscroll" href="#contact">Contact</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<h1 class="responsive-headline">I'm Vikram Mohanty</h1>
<h3>I am a 4th year undergraduate student in the Dept. of Electronics and Electrical Communication Engineering
at Indian Institute of Technology, Kharagpur. I am highly interested and passionate about <span>Mobile Robotics</span>,
and have a fair amount of experience working on <span>Machine Learning, Robot Perception and Localization</span>.
Here is my <a class="smoothscroll" href="#resume">Resume</a></h3>
<hr />
<!--TO do - put vikram's profiles here -->
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
</ul>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#about"><i class="icon-down-circle"></i></a>
</p>
</header> <!-- Header End -->
<!-- About Section
================================================== -->
<section id="about">
<div class="row">
<div class="three columns">
<img class="profile-pic" src="images/profilepic.jpg" alt="" />
</div>
<div class="nine columns main-col">
<h2>About Me</h2>
<p>
LOREM IPSUM ALL THAT.
</p>
<div class="row">
<div class="columns contact-details">
<h2>Contact Details</h2>
<p class="address">
<span>Vikram Mohanty</span><br>
<span>Room 1<br>
Azad Hall,IITKGP
</span><br>
<span>Phone Number</span><br>
<span>[email protected]</span>
</p>
</div>
<div class="columns download">
<p>
<!-- Put a dropbox link to your resume here-->
<a href="#" class="button"><i class="fa fa-download"></i>Download Resume</a>
</p>
</div>
</div> <!-- end row -->
</div> <!-- end .main-col -->
</div>
</section> <!-- About Section End-->
<!-- Resume Section
================================================== -->
<section id="resume">
<!-- Education
----------------------------------------------- -->
<div class="row education">
<div class="three columns header-col">
<h1><span>Education</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Indian Institute of Technology, Kharagpur</h3>
<p class="info">B. Tech and M. Tech dual degree, Electronics and Electrical Communications Engineering <span>•</span> <em class="date">April 2017</em></p>
<p>
Went to as few classes and as many restaurants as possible
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Education -->
<!-- Work
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Work</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Autonomous Robotics and Perception Group (ARPG), University of Colorado at Boulder</h3>
<p class="info">Summer Research Intern <span>•</span> <em class="date">May 2016 – July 2016 </em></p>
<p>
I worked on a project on Depth Estimation in Monocular Images using Deep Learning techniques,
where I conceptualized the framework and developed the pipeline.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Research Group CAMMA</h3>
<p class="info">Summer Research Associate <span>•</span> <em class="date">May 2015 – July 2015 </em></p>
<p>
I worked on a project on Equipment Detection in the Operating Room, where I was responsible
for building the ground truth dataset, and used them for evaluation of the detection results.
This was done with the purpose of improvement in the results.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Robotics Research Centre, IIIT Hyderabad</h3>
<p class="info">Summer Research Intern<span>•</span> <em class="date">May 2014 – July 2014 </em></p>
<p>
I had worked as an Undergraduate Summer Research Intern at the Robotics Research Centre at
IIIT-Hyderabad under Prof. K. Madhava Krishna and had worked on a Computer Vision project
on Scene Recognition where I designed a software for Bag of Features ( or Bag of Visual Words),
using SVM and OpenCV, and also on a side project of designing a tool for Image Annotation.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
<!-- Projects
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Projects</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Self Driving Car(Link)</h3>
<p class="info">Well, it drives itself <span>•</span> <em class="date">Starting August 2014 </em></p>
<p>
Right now we are working on the Approach Note and the Robot Prototype before stepping onto the
Self Driving Car, where my role is coordinating the Robot Localization and SLAM
(Simultaneous Localization and Mapping) team, and also working on Computer Vision algorithms
for perception, and Machine Learning.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Equipment Detection in the Operating Room</h3>
<p class="info">I don't have a clue <span>•</span> <em class="date">May 2015 – July 2015 </em></p>
<p>
I was responsible for working on the evaluation pipeline of the project, where I experimented
with tweaking the detection parameters for improvement in the detection results, built the ground
truth dataset, generated template datasets and evaluated the existing detection pipeline.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Eklavya 4.0</h3>
<p class="info">I cut off my thumb at this point<span>•</span> <em class="date">Starting August 2014 </em></p>
<p>
We are building an Autonomous Mobile Robot to participate in the Intelligent Ground Vehicle
Competition 2015, held at Oakland University, Michigan. My role is working on the sensors like
IMU, GPS and LIDAR and coordinating the Robot Localization team.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Bag of Features for Scene Recognition(Link)</h3>
<p class="info">No more thumb. Vikram, you owe me a beer<span>•</span> <em class="date">May 2014 – July 2014 </em></p>
<p>
I had built a software package based on Bag of Words extended to Images, ( Bag of Features) using
OpenCV library with SVM, which was used for Scene Recognition. I had also built a software package
for Image Annotation.
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Eklavya 3.0</h3>
<p class="info">Please. Can a beer grow back thumbs? Vodka?<span>•</span> <em class="date">September 2013 – June 2014 </em></p>
<p>
The project, a students’ initiative, is aimed at developing a highly efficient and advanced
autonomous ground vehicle cum robot to participate in the Intelligent Ground Vehicle
Competition (IGVC)-2014 which was held at Oakland University,Michigan, USA. The vehicle
is designed to carry a payload of 20 lbs around a grassy course marked by painted white
lines and filled with randomly placed obstacles to reach all the given landmarks identified
by their GPS coordinates.
I was involved in the Embedded Architecture of the Autonomous Mobile Robot, and also involved
in the control of motors along with an accurate detection of the vehicle's position.
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Work -->
</section> <!-- Resume Section End-->
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row">
<div class="twelve columns collapsed">
<h1>Check this shit out</h1>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="bs-example">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for carousel items -->
<div class="carousel-inner">
<div class="item active">
<img src="images/slide1.png" alt="First Slide">
</div>
<div class="item">
<img src="images/slide2.png" alt="Second Slide">
</div>
<div class="item">
<img src="images/slide3.png" alt="Third Slide">
</div>
</div>
<!-- Carousel controls -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end -->
<!-- Modal Popup
--------------------------------------------------------------- -->
<div id="modal-01" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-coffee.jpg" alt="" />
<div class="description-box">
<h4>Coffee Cup</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding, Webdesign</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
<div id="modal-02" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-console.jpg" alt="" />
<div class="description-box">
<h4>Console</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding, Web Development</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-02 End -->
<div id="modal-03" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-judah.jpg" alt="" />
<div class="description-box">
<h4>Judah</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-03 End -->
<div id="modal-04" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-intothelight.jpg" alt="" />
<div class="description-box">
<h4>Into the Light</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Photography</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-04 End -->
<div id="modal-05" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-farmerboy.jpg" alt="" />
<div class="description-box">
<h4>Farmer Boy</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding, Webdesign</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-05 End -->
<div id="modal-06" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-girl.jpg" alt="" />
<div class="description-box">
<h4>Girl</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Photography</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-06 End -->
<div id="modal-07" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-origami.jpg" alt="" />
<div class="description-box">
<h4>Origami</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Branding, Illustration</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-07 End -->
<div id="modal-08" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-retrocam.jpg" alt="" />
<div class="description-box">
<h4>Retrocam</h4>
<p>Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit.</p>
<span class="categories"><i class="fa fa-tag"></i>Webdesign, Photography</span>
</div>
<div class="link-box">
<a href="http://www.behance.net">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-01 End -->
</div> <!-- row End -->
</section> <!-- Portfolio Section End-->
<!-- Contact Section
================================================== -->
<section id="contact">
<div class="row section-head">
<div class="two columns header-col">
<h1><span>Get In Touch.</span></h1>
</div>
<div class="ten columns">
<p class="lead">
Please contact me. Vikram,write a story about your awesomeness here.
</p>
</div>
</div>
<div class="row">
<aside class="four columns footer-widgets">
<div class="widget widget_contact">
<h4>Address and Phone</h4>
<p class="address_center">
Vikram Mohanty<br>
Put <br>
Your address<br>
<span>+91 Phno</span><br>
<span><a style="color: #636363;" href="mailto:[email protected]" target="_top">[email protected]</a></span>
</p>
</div>
</aside>
</div>
</section> <!-- Contact Section End-->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="twelve columns">
<ul class="social-links">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
</ul>
<ul class="copyright">
<li>© Copyright 2014 CeeVee</li>
<li>Design by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a></li>
</ul>
</div>
<div id="go-top"><a class="smoothscroll" title="Back to Top" href="#home"><i class="icon-up-open"></i></a></div>
</div>
</footer> <!-- Footer End-->
<!-- Java Script
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/magnific-popup.js"></script>
<script src="js/init.js"></script>
</body>
</html>