-
Notifications
You must be signed in to change notification settings - Fork 0
/
speaker.html
934 lines (920 loc) · 37 KB
/
speaker.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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Speakers - IWMA 2022</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome icons -->
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<!-- Stylesheets -->
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/speaker.css" />
<!-- Animate CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!-- AOS css -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
</head>
<body class="d-flex flex-column vh-100">
<nav class="navbar fixed-top navbar-expand-lg navbar-light container py-4">
<div class="container">
<a class="navbar-brand brand-white" id="nav-brand" href="./index.html"
>IWMA <span class="bold">2022</span></a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse ms-auto" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-2">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./theme.html">Theme</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link active" href="./speaker.html">Speakers</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./schedule.html">Schedule</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./organizer.html">Organizers</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./archives.html">Archives</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./contact.html">Contact Us</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link btn btn-danger px-3" href="./register.html"
>Register Now</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="bg-title-image"></div>
<div class="title-div py-5 container">
<h1 class="page-title pb-4 animate__animated animate__fadeIn">
Speakers
</h1>
<p class="animate__animated animate__fadeIn">
<a href="./index.html">Home</a> <span
><i class="fas fa-caret-right"></i></span
> <a href="./speaker.html">Speakers</a>
</p>
</div>
<section class="container info-section py-5">
<div class="row">
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/Narendra_Ahuja.jpg"
alt="Prof. Narendra Ahuja"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://ece.illinois.edu/about/directory/faculty/n-ahuja"
target="_blank"
class="fw-bold text-decoration-none"
>Prof. Narendra Ahuja</a
>
</h3>
<p class="text-muted fw-bold">
University of Illinois at Urbana Champagn
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Professor Narendra Ahuja is a Research Professor in the Dept. of
Electrical and Computer Engineering, Beckman Institute, and
Coordinated Science Laboratory at University of Illinois at
Urbana-Champaign (UIUC). During 2013-2019, he was the Founding
Director of Information Technology Research Academy (ITRA), a
national initiative started by the Ministry of Electronics and
Information Technology, Government of India, to pilot a new
model of enhancing the quality of advanced technical and related
education across India
(https://itra.digitalindiacorporation.in/). He has also served
as the Founding Director of the first IIIT (IIITs are dedicated
to IT and its applications), at Hyderabad. He is a fellow of
IEEE, American Assoc for Artificial Intelligence, Intl.
Association for Pattern Recognition, Assoc for Computing
Machinery, American Assoc for the Advancement of Science, and
Intl. Society for Optical Engineering. His research is in
Artificial Intelligence fields of computer vision, pattern
recognition, machine learning, image processing and their
applications, including on problems in developing societies.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk :</span>
Human Activity Recognition - Dance Modelling and Analysis
</p>
<p>
<span class="text-muted fw-bold">Abstract:</span>
Dance experts often view dance as a hierarchy of information,
spanning low-level (raw images, image sequences), mid-levels
(human poses and bodypart movements), and high-level (dance
genre). We propose a Hierarchical Dance Video Recognition
framework (HDVR). HDVR estimates 2D pose sequences, tracks
dancers, and then simultaneously estimates corresponding 3D
poses and 3D-to-2D imaging parameters, without requiring ground
truth for 3D poses. Unlike most methods that work on a single
person, our tracking works on multiple dancers, under
occlusions. From the estimated 3D pose sequence, HDVR extracts
body part movements, and therefrom the dance genre. The
resulting hierarchical dance representation is explainable to
experts. To overcome noise and interframe correspondence
ambiguities, we enforce spatial and temporal motion smoothness
and photometric continuity over time. We use an LSTM network to
extract 3D movement subsequences from which we recognize dance
genre. For experiments, we have identified 154 movement types,
of 16 body parts, and assembled a new University of Illinois
Dance (UID) Dataset, containing 1143 video clips of 9 genres
covering 30 hours, annotated with movement and genre labels.
Experimental results demonstrate that our algorithms outperform
the state-of-the-art 3D pose estimation methods, which also
enhances our dance recognition performance.
</p>
<p>
<span class="text-muted fw-bold">Research Interests :</span>
Computer Vision, Robotics, Image Processing, Sensors, Pattern
Recognition, Virtual Environments, Intelligent Interfaces
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/Mohan_Kankanhalli.jpg"
alt="Prof. Mohan Kankanhalli"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.comp.nus.edu.sg/cs/people/mohan/"
target="_blank"
class="text-decoration-none fw-bold"
>
Prof. Mohan Kankanhalli</a
>
</h3>
<p class="text-muted fw-bold">
School of Computing, National University of Singapore
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Mohan Kankanhalli is Provost's Chair Professor of Computer
Science at the National University of Singapore (NUS). He is
also the Dean of NUS School of Computing. Before becoming the
Dean in July 2016, he was the NUS Vice Provost (Graduate
Education) during 2014-2016 and Associate Provost during
2011-2013. Mohan obtained his BTech from IIT Kharagpur and MS
& PhD from the Rensselaer Polytechnic Institute. Mohan's
research interests are in Multimedia Computing, Computer Vision,
Information Security & Privacy and Image/Video Processing.
He has made many contributions in the area of multimedia &
vision - image and video understanding, data fusion, visual
saliency as well as in multimedia security - content
authentication and privacy, multi-camera surveillance.
</p>
<p>
He directs N-CRiPT (NUS Centre for Research in Privacy
Technologies) which conducts research on privacy on structured
as well as unstructured (multimedia, sensors, IoT) data. N-CRiPT
looks at privacy at both individual and organizational levels
along the entire data life cycle. N-CRiPT, which has been funded
by Singapore's National Research Foundation, works with many
industry, government and academic partners. He earlier directed
the SeSaMe (Sensor-enhanced Social Media) Centre during
2012-2018. SeSaMe did fundamental exploration of social
cyber-physical systems with applications in social sensing,
sensor analytics and smart systems.
</p>
<p>Mohan is a Fellow of IEEE.</p>
<p>
<span class="text-muted fw-bold">Title of the talk : </span
>Privacy-aware Multimedia Analytics
</p>
<p>
<span class="text-muted fw-bold">Abstract :</span>In this talk,
we present our research on privacy-aware multimedia analytics.
We will present three works covering different aspects of
multimedia analytics. The first work is about privacy protection
against machines. Utilizing machine learning and big data,
algorithms often act as a tool for privacy violation, by
automatically selecting content with sensitive information, such
as photos that contain faces or vehicle license plates. The key
idea is to perturb images using adversarial machine learning to
protect image attributes privacy, while ensuring the images are
not degraded. We conducted an experimental study to explore
factors that influence human sensitivity to visual changes,
which led to the concept of a human sensitivity map. Using this
map, a human-sensitivity-aware image perturbation model is
developed that can subtly alter an image such that sensitive
attributes like gender are misclassified. The second work
concerns privacy-preserving analytics on images. Attributes such
as emotions, gender and age in images and videos are important
for many applications. Existing methods extract this information
from faces in the images. However, faces raise serious privacy
concerns as they reveal people's identity. We first did an
eye-tracking based human study of age, gender, and emotion
prediction of people in images under various identity preserving
scenarios - obfuscating eyes, lower face, head or the full face.
Motivated by this study, we successfully developed a deep
learning model for attributes prediction under
privacy-preserving conditions and we present its results. The
third work concerns training machine learning models where data
sets cannot be shared due to privacy regulations (e.g., from
medical studies). A simple yet unconventional approach for
anonymized data synthesis can enable third parties to benefit
from such valuable data. We propose learning implicitly from
visually unrealistic, task-relevant stimuli, which are
synthesized by exciting the neurons of a trained neural network.
Neuronal excitation serves as a pseudo-generative model, and can
be extended to inhibit representations that are associated with
specific individuals, thus providing privacy. The stimuli data
is then used to train new classification models. Experiments on
MNIST and sleep apnea data show that these models offer
protection against adversarial association and membership
inference attacks. We will end with a general discussion on
privacy concerns related to multimedia analytics.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/santanuchaudhary.jpg"
alt="Prof. Santanu Chaudhary"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://iitj.ac.in/institute/index.php?id=director"
target="_blank"
class="fw-bold text-decoration-none"
>Prof. Santanu Chaudhary</a
>
</h3>
<p class="text-muted fw-bold">
Indian Institute of Technology, Jodhpur
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Professor Santanu Chaudhury, Professor, Department of Electrical
Engineering, IIT Delhi, has assumed charge as Director, IIT
Jodhpur, on 10 December 2018. Professor Chaudhury holds B.Tech.
(Electronics and Electrical Communication Engineering) and Ph.D.
(Computer Science & Engineering) Degrees from IIT Kharagpur.
</p>
<p>
Professor Chaudhury joined as Faculty Member in the Department
of Electrical Engineering, IIT Delhi, in 1992. He was Dean,
Under-Graduate Studies at IIT Delhi. He has served as Director
of CSIR-CEERI, Pilani, during 2016-18. Professor Chaudhury is a
recipient of the Distinguished Alumnus award from IIT Kharagpur.
</p>
<p>
Professor Chaudhury is a Fellow of Indian National Academy of
Engineers (INAE) and National Academy of Sciences (NAS). He is a
Fellow of International Association Pattern Recognition (IAPR).
He was awarded the INSA (Indian National Science Academy) Medal
for Young Scientists in 1993. He received ACCS-CDAC award for
his research contributions in 2012.
</p>
<p>
A keen researcher and a thorough academic, Professor Chaudhury
has about 300 publications in peer reviewed journals and
conference proceedings, 15 patents and 4 authored/edited books
to his credit.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/raghavendraramachandra.jpg"
alt="Prof. Raghavendra Ramachandra"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.ntnu.edu/employees/raghavendra.ramachandra"
target="_blank"
class="fw-bold text-decoration-none"
>Prof. Raghavendra Ramachandra</a
>
</h3>
<p class="text-muted fw-bold">
Norwegian University of Science and Technology (NTNU), Norway
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Raghavendra Ramachandra obtained his Ph.D. in Computer Science
and Technology from the University of Mysore, Mysore India and
Institute Telecom, and Telecom Sudparis, Evry, France (carried
out as a collaborative work) in 2010. He is currently appointed
as a Full Professor at Institute of Information Security and
Communication Technology (IIK), Norwegian University of Science
and Technology (NTNU), Gjøvik, Norway. He was a Researcher with
the Istituto Italiano di Tecnologia, Genoa, Italy, where he
worked with video surveillance and social signal processing. His
main research interests include Deep learning, applied machine
learning, statistical pattern recognition, data fusion schemes,
and random optimization, with applications to biometrics,
multimodal biometric fusion, human behavior analysis, and crowd
behavior analysis. He has authored several papers, holds patents
and is a reviewer for several international conferences and
journals. He was/is also involved in various conference
organizing and program committees and serving as an associate
editor for various journals. He was/is participating (as
PI/Co-PI/contributor) in several EU projects, IARPA USA and
other national projects. He is serving as an editor for ISO/IEC
24722 standards on multimodal biometrics.
</p>
<p>
He has received several best paper awards, and he is also a
senior member of IEEE.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk :</span>Face
Morphing Attacks on Face Biometric Systems : Vulnerability and
Detection
</p>
<p>
<span class="text-muted fw-bold">Abstract :</span>Face morphing
is the process of seamlessly combining the face images from
different data subjects to generate the composite (or morphing)
image that can share the facial characteristics from the
contributing data subjects. Face morphing attacks have shown
high vulnerability on the commercial face recognition system. In
this keynote, deep learning-based based morphed attack
generation will be presented. Further, 3D face morphing
generation will also be discussed. Lastly, part of the talk will
focus on the detection of face morphing attacks.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/sumantra.jpg"
alt="Prof. Sumantra Dutta Roy"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.cse.iitd.ac.in/~sumantra/"
target="_blank"
class="fw-bold text-decoration-none"
>Prof. Sumantra Dutta Roy</a
>
</h3>
<p class="text-muted fw-bold">
Indian Institute of Technology, Delhi
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span
>Sumantra Dutta Roy is a B.E. (Computer Engineering) from
D.I.T., Delhi (1993), and completed his M.Tech and Ph.D. degrees
at the Department of Computer Science and Engineering, I.I.T.
Delhi, in 1995 and 2001, respectively. He started his career in
teaching and research in the Department of Electrical
Engineering at I.I.T. Bombay, where he worked from 2001 to early
2007 as an Assistant Professor. From 2007 to 2018, he was an
Associate Professor in the Department of Electrical Engineering
at I.I.T. Delhi. Since 2018, he has been a Professor in the
Department of Electrical Engineering at I.I.T. Delhi. He is a
recepient of 2004 INAE Young Engineer Award (Indian National
Academy of Engineering), and the 2004 - 05 BOYSCAST Fellowship
of the Department of Science and Technology, Government of
India. He has been an Associate Editor of the Pattern
Recognition Letters since 2011. His research interests are in
Computer Vision and Image Analysis, Video and Image Coding,
Biometrics, Music Information Retrieval, and Medical
Informatics.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk :</span
>Millenial Computer Vision
</p>
<p>
<span class="text-muted fw-bold">Abstract :</span>The talk will
focus on some developments in the field of Computer Vision
starting around the Millenium, which have entered technologies
in our day-to-day life. The talk will feature developments in
geometry, getting more out of ordinary cameras, and some
applications of machine learning.
</p>
<p>
<span class="text-muted fw-bold">Research Interests :</span>
Computer Vision and Image Analysis, Pattern Recognition, Music
Information Retrieval and Analysis, Biometrics, Bioinformatics
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/somnathdey.jpg"
alt=""
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="http://cse.iiti.ac.in/faculty.php"
target="_blank"
class="text-decoration-none fw-bold"
>
Dr. Somnath Dey</a
>
</h3>
<p class="text-muted fw-bold">
Indian Institute of Technology, Indore
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Dr. Somnath Dey is currently working as an Associate Professor
in the Department of Computer Science & Engineering at the
Indian Institute of Technology Indore (IIT Indore). He is also
holding the position of Head of Department of Computer Science &
Engineering at IIT Indore. Earlier, he was Associate Dean
Administration at IIT Indore.
</p>
<p>
He received his B. Tech. degree in Information Technology from
the University of Kalyani in 2004. He completed his M.S. (by
research) and Ph.D. degree in Information Technology from the
School of Information Technology, Indian Institute of Technology
Kharagpur, in 2008 and 2013, respectively.
</p>
<p>
He has published over 40 research articles (including papers in
international journals, conferences and book chapters). He is a
recipient of the Young IT Professional Award (Eastern Region
Level) of Computer Society of India. He is actively involved in
academic and industrial collaboration for research and
development. His research interest includes biometric security,
image processing and pattern recognition. He has a vast
experience of more than 7 years and he has served as TPC
chair/member for several reputed conferences.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk :</span>
Feature Extraction in Fingerprint Liveness Detection
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/rajibjha.jpg"
alt="
Dr. Rajib Kumar Jha"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.iitp.ac.in/index.php/en-us/2-uncategorised/195-view-profile-9"
target="_blank"
class="text-decoration-none fw-bold"
>
Dr. Rajib Kumar Jha</a
>
</h3>
<p class="text-muted fw-bold">
Indian Institute of Technology, Patna
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Dr. Jha completed his M. Tech. and Ph. D. Degree from Indian
Institute of Technology (IIT) Kharagpur in the area of Image
Processing in January 2003 and January 2010 respectively.
</p>
<p>
M.Tech Thesis Title: "A Novel Approach for Watermarking of
Digital Images".
</p>
<p>
PhD Thesis Title: “Improvement of Image Enhancement Segmentation
and Watermark Detection Using Stochastic Resonance”. He has
published more than 20 top Journals and 23 top conferences
papers till date and many papers are in review process.
</p>
<p>
Visiting Scientist in the Department of Information and
Communication Engineering, The Faculty of Engineering, The
University of Tokyo Japan.
</p>
<p>
<span class="text-muted fw-bold">Research Interests:</span>
Image and Video Processing, Medical Image Processing. Computer
Vision, pattern recognition and multimedia systems. Stochastic
resonance.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/bidishasharma.jpg"
alt="
Dr. Bidisha Sharma"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.linkedin.com/in/bidisha-sharma-9baba46a/"
target="_blank"
class="text-decoration-none fw-bold"
>
Dr. Bidisha Sharma</a
>
</h3>
<p class="text-muted fw-bold">Lead Speech Scientist, Uniphore</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Bidisha Sharma a post-doctoral research fellow at Electrical and
Computer Engineering Department, National University of
Singapore, Singapore. Area Of research interest is specifically
in the area of speech processing including text-to-speech
synthesis, speech enhancement, speech recognition and language
processing. Speaker Is also experienced in different
applications of music and singing voice technology and also
enthusiastic for active involvement in applied science and audio
related projects.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/saneemahmed.jpg"
alt="
Mr. Saneem Ahmed"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.linkedin.com/in/saneem-ahmed-chemmengath-74875039/?originalSubdomain=ihttps://dblp.org/pid/207/8036.html"
target="_blank"
class="text-decoration-none fw-bold"
>
Mr. Saneem Ahmed</a
>
</h3>
<p class="text-muted fw-bold">
Research Engineer, IBM Research AI
</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Saneem Chemmengath is a research scientist at IBM Research. His
interests are in core machine learning, computer vision and
natural language processing. In IBM he worked on both
fundamental and specific applications of machine learning
including recommender systems, satellite images, solar panels,
question answering systems, credit card analytics, etc. Saneem
has been working in the areas of AI and ML for the past 10+
years with papers in top ML conferences such as NeurIPS, UAI,
EMNLP, NAACL. Prior to joining IBM he did his Master's by
research from IISc, Bangalore.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk : </span
>Question Answering Systems
</p>
<p>
<span class="text-muted fw-bold">Abstract : </span> Question
Answering is a specialized form of information retrieval. Given
a collection of documents in the form of passages or tables, a
Question Answering system attempts to retrieve correct answers
to questions posed in natural language. In this session, I will
briefly talk about the important concepts in question answering,
their applications and state of the art models using
transformers. I will also cover our recent works on answering
questions over tables and how to make them work on domain
specific documents.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/SaurabhSir.jpg"
alt="
Dr. Saurabh Kumar"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a
href="https://www.lnmiit.ac.in/Department/CSE/Department_FacultyProfile.aspx?nDeptID=120450"
target="_blank"
class="text-decoration-none fw-bold"
>
Dr. Saurabh Kumar</a
>
</h3>
<p class="text-muted fw-bold">Assistant Professor, LNMIIT</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Dr. Saurabh Kumar has received his Bachelor of Engineering
(B.E.) degree in Computer Science and Engineering from
Chhattisgarh Swami Vivekanand Technical University, Bhilai,
India, in 2010, M. Tech in Computer Science from Birla Institute
of Technology, Mesra, Ranchi, India, in 2013, and PhD in
Computer Engineering from Sardar Vallabhbhai National Institute
of Technology, Surat, Gujarat, India, in 2019. He has been
working on the problems of optimized deployment strategy and
localization of nodes and events using IoT for post disaster
management. He has successfully published 13 conference papers
and 4 journals with leading publication houses like ACM, IEEE,
Springer, Elsevier, and Oxford University Press in these fields.
He has been an active researcher in the fields of Internet of
Things, Collaborative data processing, multi-agent systems and
wireless sensor networks. Recently, he was conferred with 2020
Wilkes Award for best paper (runner-up) by Oxford University
Press for his novel work on localization of events for post
disaster management. In the past, he served as an IT Officer for
two years with mining business of the Aditya Birla Group. He is
currently serving as an Assistant Professor in the Department of
Computer Science and Engineering at The LNM Institute of
Information Technology, Jaipur, Rajasthan, India.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk : </span>
Multiagent Systems: Learning Entities and Implementation
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/RamPrakashSir.jpg"
alt="
Dr. Ram Prakash Sharma"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a href="" target="_blank" class="text-decoration-none fw-bold">
Dr. Ram Prakash Sharma</a
>
</h3>
<p class="text-muted fw-bold">Assistant Professor, LNMIIT</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Dr. Ram Prakash Sharma is currently working as an Assistant
Professor in the Department of Computer Science & Engineering at
the Laxmi Niwas Mittal Institute of Information technology
(LNMIIT), Jaipur. He received his Ph.D. degree in Computer
Science and Engineering from Indian Institute of Technology
Indore (IITI) in 2020. He completed his masters from University
of Hyderabad and Bachelors from Rajasthan Technical University.
His research interest includes biometric security, image
processing, machine learning, and pattern recognition. He has
published various research articles in international journals
and conferences.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk : </span>
Feature extraction of fingerprint images using NBIS tool
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/PreetyMam.jpg"
alt="
Dr. Preety Singh"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a href="" target="_blank" class="text-decoration-none fw-bold">
Dr. Preety Singh</a
>
</h3>
<p class="text-muted fw-bold">Assistant Professor, LNMIIT</p>
<hr />
<!-- <p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Dr. Ram Prakash Sharma is currently working as an Assistant
Professor in the Department of Computer Science & Engineering at
the Laxmi Niwas Mittal Institute of Information technology
(LNMIIT), Jaipur. He received his Ph.D. degree in Computer
Science and Engineering from Indian Institute of Technology
Indore (IITI) in 2020. He completed his masters from University
of Hyderabad and Bachelors from Rajasthan Technical University.
His research interest includes biometric security, image
processing, machine learning, and pattern recognition. He has
published various research articles in international journals
and conferences.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk : </span>
Feature extraction of fingerprint images using NBIS tool
</p> -->
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<img
src="./asset/images/IndradeepSir.jpg"
alt="
Dr. Indradeep Mastan"
class="col-md-3"
height="340px"
class="speaker-img"
/>
<div class="col-md-9">
<h3 class="speaker-title">
<a href="" target="_blank" class="text-decoration-none fw-bold">
Dr. Indradeep Mastan</a
>
</h3>
<p class="text-muted fw-bold">Assistant Professor, LNMIIT</p>
<hr />
<p>
<span class="text-muted fw-bold">Brief Introduction :</span>
Indra Deep Mastan is an Assistant Professor in the Department of
Computer Science and Engineering at LNMIIT Jaipur. He has
completed his Ph.D. from CSE at IIT Gandhinagar under the
guidance of Dr. Shanmuganathan Raman. He is working on Computer
Vision using Deep Learning. His interests are in Image
Restoration and Image Synthesis problems.
</p>
<p>
<span class="text-muted fw-bold">Title of the talk : </span>
Generative Adversarial Networks for Image Synthesis
</p>
<p>
<span class="text-muted fw-bold">Abstract : </span>
Generative Adversarial Networks (GANs) are powerful deep
learning tools that have attracted exciting applications such as
synthesis of realistic faces and videos. In this talk, we
provide an overview of GANs and various famous GAN models for
image synthesis tasks.
</p>
</div>
</div>
</div>
<div class="col-12 p-4">
<div class="p-4 speaker-box row" data-aos="fade-right">
<h1 class="text-center">Hands-on/Demonstration Session</h1>
<img
src="./asset/images/matlab.png"
alt="
Matlab"
class="col-md-3"
height="150px"
class="speaker-img"
/>
<div class="col-md-9 d-flex align-items-center">
<h3 class="speaker-title">
<a
href="https://www.mathworks.com/products/matlab.html"
target="_blank"
class="text-decoration-none fw-bold"
>
Matlab</a
>
</h3>
</div>
<hr />
<img
src="./asset/images/Nvidia-Logo.wine.png"
alt="
Nvidia"
class="col-md-3"
height="150px"
class="speaker-img"
/>
<div class="col-md-9 d-flex align-items-center">
<h3 class="speaker-title">
<a
href="https://www.nvidia.com/en-in/"
target="_blank"
class="text-decoration-none fw-bold"
>
Nvidia</a
>
</h3>
</div>
</div>
</div>
</div>
</section>
<footer
class="footer py-3 d-flex align-items-center justify-content-center"
>
Developer:
<span
>
<a href="https://www.linkedin.com/in/ketan-jakhar-841282191/"
>Ketan Jakhar</a
>
<!-- &
<a href="https://www.linkedin.com/in/ashutosh-kumar-84365a193/"
>Ashutosh Kumar</a
> -->
</span>
</footer>
<!-- Javascript -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script type="text/javascript" src="./js/main.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
</body>
</html>