-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
465 lines (409 loc) · 22.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Snehal Padhye</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: iPortfolio - v1.4.1
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<img src="assets/img/dpc.jpg" alt="" class="img-fluid rounded-circle">
<h1 class="text-light"><a href="index.html">Snehal Padhye</a></h1>
</div>
<nav class="nav-menu">
<ul>
<li class="active"><a href="index.html"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#resume"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#portfolio"><i class="bx bx-book-content"></i>Projects</a></li>
<li><a href="#services"><i class="bx bx-server"></i>Notes</a></li>
</ul>
</nav><!-- .nav-menu -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<video autoplay muted loop id="bgVideo">
<!--source src="assets/img/cg_final_fs_trim.mp4" type="video/mp4"-->
</video >
<div class="hero-container" data-aos="fade-in">
<h1>Snehal Padhye</h1>
<p>I'm a <span class="typed" data-typed-items="Mixed Reality, Image Processing, Perceptual Science, Computer Graphics, Multispectral Imaging"></span> enthusiast!</p>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p> Hello! I am Snehal Padhye.</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/dpc.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>PhD Candidate, Imaging Science, RIT</h3>
<p class="font-italic">
I am a fifth year PhD student at <a href="https://www.cis.rit.edu/" target="_blank">Chester F Carlson Center for Imaging Science </a> at <a href="https://www.rit.edu/" target="_blank"> Rochester Institute of Technology</a>, New York. I am priviledged to have <a href="https://www.rit.edu/directory/jafpci-james-ferwerda" target="_blank">Dr. James Ferwerda </a>as my advisor. I am working in Visual Imaging and Technology Lab in developing methods for realistic digital representation of cultural heritage objects. It involves techniques to capture and model surface topography and material reflectance/transmission of complex planar objects like paintings and manuscripts and rendering them correctly(realistically) across devices especially Tangible imaging display systems. This has given me an opportunity to work on topics as diverse as camera calibration, color calibration, structured light profilometry and writing cool graphics applications. </p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="icofont-rounded-right"></i><a href="https://www.linkedin.com/in/snehal-padhye-427581ab/" target="_blank">Linkedin</a></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="icofont-rounded-right"></i>sp1471@rit.edu</li>
</ul>
</div>
</div>
<p>
</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title">
<h2>Skills</h2>
<p>I am a self taught programmer and I have worked in diverse projects and acquired following coding skills over time.</p>
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
Working Knowledge:
<ul>
<li>Python</li>
<li>Unity</li>
<li>Three.js</li>
<li>MATLAB</li>
<li>GLSL/HLSL</li>
<li>JavaScript</li>
<li>HTML</li>
</ul>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
Basic Knowledge:
<ul>
<li>C/C++</li>
<li>PyTorch</li>
<li>TensorFlow</li>
<li>Java</li>
<li>C#</li>
<li>SQL</li>
</ul>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
</div>
<p> Here is my complete<a href="./static/cv_snehal_full.pdf" target="_blank" > CV</a>
and an<a href="./static/cv_snehal.pdf" target = "_blank">1-pager</a>.</p>
<div class="row">
<div class="col-lg-6" data-aos="fade-up">
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Doctor of Philosophy</h4>
<h5>2018 - present</h5>
<p><em>Imaging Science</em></p>
<p><em>Rochester Institute of Technology, Rochester, NY</em></p>
<p><em>Thesis Topic:</em>Techniques to create a realistic digital collection of near planar cultural heritage objects.</p>
<p><em>CGPA: 3.69/4</em></p>
</div>
<div class="resume-item">
<h4>Master of Technology</h4>
<h5>2013 - 2015</h5>
<p><em>Signal Processing</em></p>
<p><em>College of Engineering Pune, India</em></p>
<p><em>Thesis Topic:</em> Feature Extraction from microwave data using backscatter coefficient.</p>
<p><em>CGPA: 9.13/10</em></p>
</div>
<div class="resume-item">
<h4>Bachelor of Technology</h4>
<h5>2009 - 2013</h5>
<p><em>Electronics and communication</em></p>
<p><em>Ramdeobaba College of Engineering and Management, Nagpur, India</em></p>
<p><em>Thesis Topic:</em> Application of Programmable Logic Controller for automating Industrial sorting.</p>
<p><em>CGPA: 73%</em></p>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Work Experience</h3>
<div class="resume-item">
<h4>Research Intern ( Incoming )</h4>
<h5> 22 May - 12 Aug 2022</h5>
<p><em>Image and Video Processing Group</em></p>
<p><em>Dolby Laboratories</em></p>
</div>
<div class="resume-item">
<h4>PPO Hardware Intern</h4>
<h5> 2 May - 28 Aug 2022</h5>
<p><em>Display Exploration Team</em></p>
<p><em>Apple Inc.</em></p>
Modified components in the rendering pipeline to enable simulation and exploration of volumetric effects for prototype displays.
<ul>
<li> Evaluated the requirements and limitations and developed an application to demonstrate the volumetric effects within the framework.</li>
<li> Conducted psychophysical experiments to evaluate the effects of the algorithm.</li>
<li> Worked on generating ground truth data generation for deep learning based model of the algorithm.</li>
<li> Contributed in optimization of the algorithm.</li>
</ul>
</div>
<div class="resume-item">
<h4>Research Intern</h4>
<h5> 17 May - 3 Sept 2021</h5>
<p><em>AR Display Engineering Team</em></p>
<p><em>Facebook Reality Labs </em></p>
Developed ’AR Simulator’ to determine product specifications and inform engineering requirements.
<ul>
<li> Evaluated the display pipeline feasibility of a Unity simulation.</li>
<li> Simulated key components usable for Oculus link and standalone HMD.</li>
<li> Augmented existing simuations to the AR display pipeline components for a more realistic experience of the product.</li>
</ul>
</div>
<div class="resume-item">
<h4>Teaching Assistant</h4>
<h5>Spring 2019</h5>
<p><em>Computer Resource Pool</em></p>
Responsible for solving programming queries for anyone in the department.
</div>
<div class="resume-item">
<h4>Teaching Assistant</h4>
<h5>Fall 2018</h5>
<p><em>Imaging Science Fundamentals</em></p>
Responsible for conducting and grading labs.
</div>
<div class="resume-item">
<h4>System Engineer</h4>
<h5>2015 - 2018</h5>
<p><em>Tata Consultancy Services </em></p>
<p><em>Engineering and Industrial Services unit </em></p>
<p><em>Pune, India </em></p>
<ul>
<li> Lead Scripting functionality of Monitoring and
Control (M&C) System for <a href="http://gmrt.ncra.tifr.res.in">Giant Metrewave Radio
Telescope (GMRT)</a>, a precursor for
<a href="https://www.skatelescope.org">Square Kilometer Array (SKA)</a>.</li>
<li> Redesigned an existing unstable scripting engine
and completed it in 80% less time with both GUI and
Command Line Interface(CLI), increasing requirement
coverage to 100%.</li>
<li> Lead Alarm designing for M&C system. Improved
alarm configuration time by
80%. Increased requirement coverage from 40% to 80%.
Earned six-sigma green belt for the same.</li>
<li> Started an initiative to apply machine learning in automation of
data capture and processing and in health and fault
analysis of large experimental setup such as GMRT.</li>
</ul>
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Projects</h2>
<p>Here is a partial list of my projects. Hover on the image and click on the link to see more details. I will soon provide a link to my github repositories as well. </p>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img href="project-details-vss.html" src="assets/img/vss.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/vss.png" data-gall="portfolioGallery" class="venobox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="project-details-vss.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img href="project-details-cg.html" src="assets/img/cg.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/cg.png" data-gall="portfolioGallery" class="venobox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="project-details-cg.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img href="project-details-il.html" src="assets/img/il2.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/il2.png" data-gall="portfolioGallery" class="venobox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="project-details-il.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img href="project-details-gi.html" src="assets/img/gi.png" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/gi.png" data-gall="portfolioGallery" class="venobox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="project-details-gi.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img href="project-details-msi.html" src="assets/img/highlighter.PNG" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/highlighter.PNG" data-gall="portfolioGallery" class="venobox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="project-details-msi.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img href="project-details-ipcv.html" src="assets/img/ipcv.JPG" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/ipcv.JPG" data-gall="portfolioGallery" class="venobox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="project-details-ipcv.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img href="project-details-hg.html" src="assets/img/hologram.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/hologram.jpg" data-gall="portfolioGallery" class="venobox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="project-details-hg.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>My Notes</h2>
<p></p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up">
<div class="icon"><i class="icofont-computer"></i></div>
<h4 class="title"><a href="./static/client_server_setup_steps_v1.pdf">Setting up online experiments</a></h4>
<p class="description">Notes on how to set up experiments remotely</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="icofont-chart-bar-graph"></i></div>
<h4 class="title"><a href="./static/color_calibration.pdf">Color Calibration</a></h4>
<p class="description">Lessons learnt in color calibration</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="icofont-earth"></i></div>
<h4 class="title"><a href="./static/gray_codes.pdf">Structured Light: Gray Codes</a></h4>
<p class="description">Lessons learnt in using gray codes as structured illumination</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="icofont-settings"></i></div>
<h4 class="title"><a href="./static/fringe_projection.pdf">Fringe Projections</a></h4>
<p class="description">Lessons learnt in using fringe projection for surface capture</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Gimbal Lock</a></h4>
<p class="description">Lessons learnt in analysing orientation angles</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Camera Calibration</a></h4>
<p class="description">Lessons learnt in camera calibration for stereo vision</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Radiometric and geometric calibration of a projector-camera system</a></h4>
<p class="description"></p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Camera Tethering</a></h4>
<p class="description"></p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">HDR Imaging</a></h4>
<p class="description"></p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Translucency</a></h4>
<p class="description">[To do]</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="icofont-image"></i></div>
<h4 class="title"><a href="">Calibration through simulation</a></h4>
<p class="description">[To do]</p>
</div>
</div>
</section><!-- End Services Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<div class="copyright">
© Copyright <strong><span>iPortfolio</span></strong>
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/ -->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/typed.js/typed.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>