-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1533 lines (1368 loc) · 57 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
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
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- meta data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--font-family-->
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&subset=devanagari,latin-ext"
rel="stylesheet">
<!-- title of site -->
<title>Rahul_Goraksha</title>
<!-- For favicon png -->
<link rel="shortcut icon" type="image/icon" href="assets/logo/favicon.png" />
<!--font-awesome.min.css-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--flat icon css-->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!--animate.css-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--owl.carousel.css-->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.default.min.css">
<!--bootstrap.min.css-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- bootsnav -->
<link rel="stylesheet" href="assets/css/bootsnav.css">
<!--style.css-->
<link rel="stylesheet" href="assets/css/style.css">
<!--responsive.css-->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a target="_blank"href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- top-area Start -->
<header class="top-area">
<div class="header-area">
<!-- Start Navigation -->
<nav class="navbar navbar-default bootsnav navbar-fixed dark no-background" style="height:5px;">
<div class="container">
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-bs-toggle="collapse"
data-bs-target="#navbar-menu">
<i class="fa fa-bars"></i>
</button>
<div class="navbar-brand" style="position: absolute; left: -80px;top:-10px">
<img src="assets\images\about\profile-image.png" style="height:40px; width:40px;"></img>
</div>
</div><!--/.navbar-header-->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse menu-ui-design" id="navbar-menu"
style="margin-left:-60px;margin-top:-100px;">
<ul class="nav navbar-nav navbar-right" data-in="fadeInDown" data-out="fadeOutUp"
style="margin-top:-20px;margin-left:-40%;">
<li class=" smooth-menu active"></li>
<li class="smooth-menu"><a target="_blank" href="#welcome-hero">Homepage</a></li>
<li class="smooth-menu"><a target="_blank" href="#about">About</a></li>
<li class="smooth-menu"><a target="_blank" href="#education">Description</a></li>
<li class="smooth-menu"><a target="_blank" href="#experience">Timeline</a></li>
<li class="smooth-menu"><a target="_blank" href="#patent">Patent</a></li>
<li class="smooth-menu"><a target="_blank" href="#conference">Conference</a></li>
<li class="smooth-menu"><a target="_blank" href="#profiles">Team</a></li>
<li class="smooth-menu"><a target="_blank" href="#media">Media</a></li>
<li class="smooth-menu"><a target="_blank" href="#Thesis">Thesis</a></li>
<li class="smooth-menu"><a target="_blank" href="#contact">Contact</a></li>
</ul><!--/.nav -->
</div><!-- /.navbar-collapse -->
</div><!--/.container-->
</nav><!--/nav-->
<!-- End Navigation -->
</div><!--/.header-area-->
<div class="clearfix"></div>
</header><!-- /.top-area-->
<!-- top-area End -->
<!--welcome-hero start -->
<section id="welcome-hero" class="welcome-hero">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="header-text">
<h2 style="font-size: 35px;">Project Review <br> Academic Year <br> (2023 - 2024) </h2>
<p>"Development of Healthcare Robot for Patient Vital Monitoring System"</p>
<a target="_blank" href="assets/download/Thesis.pdf" target="_blank"
download="assets/download/Thesis.pdf">download Thesis</a>
</div><!--/.header-text-->
</div><!--/.col-->
</div><!-- /.row-->
</div><!-- /.container-->
</section><!--/.welcome-hero-->
<!--welcome-hero end -->
<!--about start -->
<section id="about" class="about">
<div class="section-heading text-center">
<h2>About me</h2>
</div>
<div class="container">
<div class="about-content">
<div class="row">
<div class="col-sm-6">
<div class="single-about-txt">
<h3 style="text-align:justify;">
As an aspiring Software Engineer currently interning at Synopsys Inc, I am dedicated to
honing my skills in coding and problem-solving. Passionate about innovation, I thrive in
dynamic environments, striving for excellence to contribute effectively to team success.
</h3>
<p style="text-align:justify;">
I am Rahul Goraksha, a diligent Project Manager and QA Engineer with 2+ years of
experience. Proficient in Python, SQL, and project management, I excel in software
quality and innovation. My educational background includes a Master's Degree in Robotics
and Automation Engineering with a GPA of 9.308. I've successfully managed projects for
prestigious clients like Mercedes Benz and Schneider Electric. With certifications in
project management and software quality assurance, I'm committed to delivering
excellence in every endeavor.
</p>
<div class="row">
<div class="col-sm-4">
<div class="single-about-add-info">
<h3 style="text-align:center;">phone</h3>
<p style="text-align:center;">+91 877796 55953</p>
</div>
</div>
<div class="col-sm-4" style="margin-left: 100px;">
<div class="single-about-add-info">
<h3 style="text-align:center;margin-left:50px;">Email</h3>
<p style="text-align:center;">[email protected]</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-offset-1 col-sm-5">
<div class="single-about-img">
<img src="assets\images\about\profile-image.png" alt="profile_image">
<div class="about-list-icon">
<ul>
<li>
<a target="_blank" href="https://twitter.com/RahulGoraksha">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a target="_blank" href="https://www.linkedin.com/in/rahulgoraksha/">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a target="_blank" href="https://www.instagram.com/rahulgoraksha_001/">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li><!-- / li -->
</ul><!-- / ul -->
</div><!-- /.about-list-icon -->
</div>
</div>
</div>
</div>
</div>
</section><!--/.about-->
<!--about end -->
<!--education start -->
<section id="education" class="education">
<div class="section-heading text-center">
<h2>Project Description</h2>
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Values And Missions</h3>
</div>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-bottom:-55px;">
<div class="row">
<div class="col-sm-4">
<div class="single-horizontal-timeline">
<div class="experience-time" style="text-align:center;">
<h2>Innovation</h2>
<h3>Values <span>& </span> Mission</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title" style="margin-left:15px;">
Innovating Health Monitoring Solutions
</h4>
<p class="description" style="text-align:center; margin-left:20px">
Pushing the boundaries of technology to create innovative solutions for
automating health monitoring in social environments.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
<div class="col-sm-4">
<div class="single-horizontal-timeline">
<div class="experience-time" style="text-align:center;">
<h2>Empowerment</h2>
<h3>Values <span>& </span> Mission</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal"></span>
</div>
<div class="timeline">
<div class="timeline-content" style="padding-left: 17px;">
<h4 class="title" style="margin-left:15px;text-align: center;">
Empowering Individuals and Caregivers
</h4>
<p class="description" style="text-align:center; margin-left:20px">
Empowering individuals and caregivers with real-time health data, enabling
proactive management and intervention.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
<div class="col-sm-4">
<div class="single-horizontal-timeline">
<div class="experience-time" style="text-align:center;">
<h2>Accessibility</h2>
<h3>Values <span>& </span> Mission</h3>
</div><!--/.experience-time-->
<div class="timeline-horizontal-border">
<i class="fa fa-circle" aria-hidden="true"></i>
<span class="single-timeline-horizontal spacial-horizontal-line
"></span>
</div>
<div class="timeline">
<div class="timeline-content">
<h4 class="title" style="margin-left:40px;">
Bridging Healthcare Accessibility
</h4>
<p class="description" style="text-align:center; margin-left:20px">
Ensuring accessibility to advanced health monitoring capabilities, bridging the
gap between traditional healthcare and modern technology.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
</div>
</div>
</div>
<div style="text-align: center; margin-top:-5px;margin-bottom:-25px;">
<h3 style="display: inline-block; margin-top: 0 10px;">Introduction</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row" style="display: flex; justify-content: center;">
<div class="col-md-8" style="margin-top: 40px;">
<div class="media-content" style="display: flex; justify-content: center;">
<div class="row">
<div class="col-sm-12">
<div class="item" style="width: 10cm; height: 6cm;">
<img src="assets/images/media/P6.jpg" alt="media image" style="width: 100%;">
<div class="isotope-overlay"></div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div>
</div>
</div>
</div><!--/.media-content-->
<div class="col-md-8" style="text-align: center;margin-top: 40px;">
<p style="width:100%;text-align: center; margin: 0 auto; color: #999fb3;">
The presentation addresses the revolutionizes health monitoring with cutting-edge
technology. Integrating RFID, sensors, and autonomous navigation, this project aims to
automate health assessments in social settings, showcasing the future of healthcare
innovation.
</p>
</div>
<div class="col-md-8" style="margin-top: 40px;">
<div class="media-content" style="display: flex; justify-content: center;">
<div class="row">
<div class="col-sm-12">
<div class="item" style="width: 10cm; height: 6cm;">
<img src="assets/images/media/P7.jpg" alt="media image" style="width: 100%;">
<div class="isotope-overlay"></div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div>
</div>
</div>
</div><!--/.media-content-->
</div><!--/.row-->
</div><!--/.education-horizontal-timeline-->
</div><!--/.container-->
<div class="section-heading text-center" style="margin-top:-10px;margin-top:-15px;margin-bottom:-25px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Review of Literature</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row" style="display: flex; justify-content: center;">
<div class="col-sm-12">
<div class="single-horizontal-timeline">
<div class="timeline" style="overflow-x: auto;">
<div class="timeline-content custom-center">
<table border="3.5"
style="width:100%; table-layout: auto; text-align: center;border-color:#d92cf9;">
<tr>
<th style="width:30%;text-align: center;color:#43485c;padding: 10px;">
Authors and
citations</th>
<th style="width:10%;text-align: center;color:#43485c;padding: 10px;">
Year</th>
<th style="width:20%;text-align: center;color:#43485c;padding: 10px;">
Techniques</th>
<th style="width:20%;text-align: center;color:#43485c;padding: 10px;">
Gap Finding</th>
<th style="width:20%;text-align: center;color:#43485c;padding: 10px;">
Main Outcomes</th>
</tr>
<tr>
<td style="padding: 10px;">Fan, Y. J., Yin, Y. H., Da Xu, L., Zeng, Y.,
& Wu, F. [15]</td>
<td style="padding: 10px;">2014</td>
<td style="padding: 10px;">Virtual Reality (VR)/ Augmented Reality (AR)
technique</td>
<td style="padding: 10px;">Focus on developing advanced encryption and
authentication methods
</td>
<td style="padding: 10px;">Ontology-based ADM</td>
</tr>
<tr>
<td style="padding: 10px;">Wolgast, G., Ehrenborg, C., Israelsson, A.,
Helander, J., Johansson,
E., & Manefjord, H. [16]</td>
<td style="padding: 10px;">2016</td>
<td style="padding: 10px;">Designed PIFA</td>
<td style="padding: 10px;">To improve detection capabilities, research
should explore the
integration of additional sensors</td>
<td style="padding: 10px;">Measured an ECG signal and sent it to a
mobile device over Bluetooth
connectivity to investigate the data</td>
</tr>
<tr>
<td style="padding: 10px;">Islam, M. M., Rahaman, A., & Islam, M. R.
[17]</td>
<td style="padding: 10px;">2020</td>
<td style="padding: 10px;">A non-invasive technology for detecting
heartbeats</td>
<td style="padding: 10px;">Lack of standardized protocols and frameworks
for integration</td>
<td style="padding: 10px;">An intelligent medical care paradigm across
an IoT setting</td>
</tr>
<tr>
<td style="padding: 10px;">Yuehong, Y. I. N., Zeng, Y., Chen, X., & Fan,
Y. [18]</td>
<td style="padding: 10px;">2015</td>
<td style="padding: 10px;">Development of IoT in medical facilities</td>
<td style="padding: 10px;">Vulnerabilities that may compromise patient
information</td>
<td style="padding: 10px;">Intelligent gadgets and structures built
around the IoT, as well as
many applications</td>
</tr>
<tr>
<td style="padding: 10px;">Islam, S. R., Kwak, D., Kabir, M. H.,
Hossain, M., & Kwak, K. S.
[19]</td>
<td style="padding: 10px;">2016</td>
<td style="padding: 10px;">Integrated with telemedicine and telehealth
</td>
<td style="padding: 10px;">Holistic examination of this transformative
technology's impact</td>
<td style="padding: 10px;">Studied and analysis on telemedical and
telehealth by IoT Network
for health care (hereafter "the IoThNet")</td>
</tr>
<tr>
<td style="padding: 10px;">Koshti, M., Ganorkar, S., & Chiari, L. [21]
</td>
<td style="padding: 10px;">2023</td>
<td style="padding: 10px;">Arduino UNO, LCD Display, MAX30100 pulse
oximeter</td>
<td style="padding: 10px;">Limitations in terms of sensor accuracy and
the range of parameters
</td>
<td style="padding: 10px;">IoT based Health Monitoring System Arduino
UNO</td>
</tr>
<tr>
<td style="padding: 10px;">MohanKumar, M., Kirthana, S., Pavithra Banu,
N., JB, P. M. S., &
Madhumitha, M. [22]</td>
<td style="padding: 10px;">2021</td>
<td style="padding: 10px;">Arduino-based monitoring paradigm relying
upon multiple parameters
</td>
<td style="padding: 10px;">Can process the collected data and provide
meaningful insights or
alerts</td>
<td style="padding: 10px;">Continuously, effectively, and strategically
monitor the heart rate
and temperature of diseased persons</td>
</tr>
<tr>
<td style="padding: 10px;">Jebane, P., Anusuya, P., Suganya, M., Meena,
S., & Diana, M. [23]
</td>
<td style="padding: 10px;">2018</td>
<td style="padding: 10px;">ESP 8266 wireless element along with the
Arduino detectors</td>
<td style="padding: 10px;">Investigate how to safeguard patient data,
prevent unauthorized
access</td>
<td style="padding: 10px;">Monitors continuously of any abnormalities or
emergencies</td>
</tr>
</table>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-heading text-center" style="margin-top:-15px;margin-bottom:-25px;">
<div style="text-align: center;margin-top:-5px;">
<h3 style="display: inline-block; margin: 0 10px;">Research Gaps</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row"
style="display: flex; justify-content: center; top:10px;padding-left: -900px;padding-right: -900px;">
<!-- <h4 class="title">
</h4> -->
<p style="width:100%; text-align: center; margin: 0 auto; color: #999fb3;">
Inadequate exploration of privacy and security considerations in health
data collection for social robots.<br><br>
Scarcity of studies on real-time health data collection using social
robots. <br><br>
Limited research on integrating RFID technology for social robot health
monitoring.
<!-- The presentation addresses the revolutionizes health monitoring with
cutting-edge technology. Integrating RFID, sensors, and autonomous
navigation, this project aims to automate health assessments in social
settings, showcasing the future of healthcare innovation. -->
</p>
</div>
</div>
</div>
</div>
<div class="section-heading text-center" style="margin-top:-15px;margin-bottom:-25px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Research Questions</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row"
style="display: flex; justify-content: center; top:10px;padding-left: -900px;padding-right: -900px;">
<!-- <h4 class="title">
</h4> -->
<p style="width:100%; text-align: center; margin: 0 auto; color: #999fb3;">
How does integrating RFID technology enhance the efficiency of health
assessments conducted by social robots?
<br><br>
What impact does obstacle detection and response mechanisms have on the
safety and effectiveness of social robot health monitoring?
<br><br>
How does real-time data upload and storage contribute to centralized
monitoring and analysis of health data collected by social robots?
<!-- The presentation addresses the revolutionizes health monitoring with
cutting-edge technology. Integrating RFID, sensors, and autonomous
navigation, this project aims to automate health assessments in social
settings, showcasing the future of healthcare innovation. -->
</p>
</div><!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
</div>
<div class="section-heading text-center" style="margin-top:-15px;margin-bottom:-25px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Statement of the Problem</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row"
style="display: flex; justify-content: center; top:10px;padding-left: -900px;padding-right: -900px;">
<!-- <h4 class="title">
</h4> -->
<p style="width:100%; text-align: center; margin: 0 auto; color: #999fb3;">
How can social robots effectively monitor health in social settings?
<br><br>
What challenges do social robots face in navigating and conducting health
assessments autonomously?
<br><br>
How can technology improve the efficiency and accuracy of health
monitoring by social robots?
<!-- The presentation addresses the revolutionizes health monitoring with
cutting-edge technology. Integrating RFID, sensors, and autonomous
navigation, this project aims to automate health assessments in social
settings, showcasing the future of healthcare innovation. -->
</p>
</div><!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
</div>
<div class="section-heading text-center" style="margin-top:-15px;margin-bottom:-25px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Objectives of the Study</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row"
style="display: flex; justify-content: center; top:10px;padding-left: -900px;padding-right: -900px;">
<!-- <h4 class="title">
</h4> -->
<p style="width:100%; text-align: center; margin: 0 auto; color: #999fb3;">
Developed of Prototype healthcare-focused robot.
<br><br>
Collection of different patients vital signal and temperature using sensors.
<br><br>
Send the Collected data to cloud and trigger alert if any fluctuation
reported in the assigned and observed vital data.
<!-- The presentation addresses the revolutionizes health monitoring with
cutting-edge technology. Integrating RFID, sensors, and autonomous
navigation, this project aims to automate health assessments in social
settings, showcasing the future of healthcare innovation. -->
</p>
</div><!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
</div>
<div class="section-heading text-center" style="margin-top:-15px;margin-bottom:-90px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Scope and Limitations of work</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row"
style="display: flex; justify-content: center; top:10px;padding-left: -900px;padding-right: -900px;">
<!-- <h4 class="title">
</h4> -->
<p style="width:100%; text-align: center; margin: 0 auto; color: #999fb3;">
Developing advanced Social Robot Health Monitoring System for proactive
health management in social environments.
<br><br>
Seeing technology limits as chances, encouraging improvements for better
healthcare robot contributions.
<!-- The presentation addresses the revolutionizes health monitoring with
cutting-edge technology. Integrating RFID, sensors, and autonomous
navigation, this project aims to automate health assessments in social
settings, showcasing the future of healthcare innovation. -->
</p>
</div><!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
</div>
<div class="section-heading text-center" style="margin-top:-15px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 70px 10px;">Methodology, techniques and tools</h3>
</div>
<div class="container">
<div class="media-content">
<div class="isotope">
<div class="row">
<div class="col-sm-4">
<div class="item">
<img src="assets/images/portfolio/B2.jpg" alt="portfolio image" />
<div class="isotope-overlay">
Proposed Architecture
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item" style=" position: relative;
width: 60%;
height: 60%;
margin-left:60px;
overflow: hidden;">
<img src="assets/images/portfolio/B1.jpg" alt="portfolio image">
<div class="isotope-overlay">
Techniques
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="assets/images/portfolio/B3.jpg" alt="portfolio image" />
<div class="isotope-overlay">
Tools
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
</div>
</div>
</div>
</div>
</div>
<div class="section-heading text-center" style="margin-top:40px;margin-bottom:-25px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Results</h3>
</div>
<div class="container" style="margin-top:40px;">
<div class="media-content">
<div class="isotope" style="display: flex; justify-content: center;">
<div class="row" style="height: auto; width: 90%;">
<div class="col-sm-12">
<div class="item">
<img src="assets/images/portfolio/A4.jpg" alt="portfolio image">
<div class="isotope-overlay">
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
<!-- </div> -->
</div>
</div>
</div>
</div>
<div class="section-heading text-center" style="margin-top:15px;margin-bottom:-25px;">
<div style="text-align: center;">
<h3 style="display: inline-block; margin: 0 10px;">Conclusion</h3>
</div>
<div class="container">
<div class="education-horizontal-timeline" style="margin-top: -35px;">
<div class="row"
style="display: flex; justify-content: center; top:10px;padding-left: -900px;padding-right: -900px;">
<!-- <h4 class="title">
</h4> -->
<p style="width:100%; text-align: center; margin: 0 auto; color: #999fb3;">
The development of a prototype healthcare-focused robot showcases
potential advancements in patient care and medical technology.
<br><br>
Successful sensor-based collection of patients' vital signals and
temperature enables real-time monitoring and early detection of health
abnormalities.
<br><br>
Cloud technology integration enables remote monitoring, proactive interventions,
improving patient care.
<!-- The presentation addresses the revolutionizes health monitoring with
cutting-edge technology. Integrating RFID, sensors, and autonomous
navigation, this project aims to automate health assessments in social
settings, showcasing the future of healthcare innovation. -->
</p>
</div><!--/.timeline-content-->
</div>
<!--/.timeline-->
</div>
</div>
</div>
</div>
</div>
</div>
</section><!--/.education-->
<!--education end -->
<!--experience start -->
<section id="experience" class="experience ">
<div class="section-heading text-center "
style=" display: flex; justify-content: center; align-items: center; margin-right: 8rem;">
<h2>Timeline</h2>
</div>
<div class="container">
<div class="experience-content" style="margin-top:-65px;margin-bottom:-500px;">
<div class="main-timeline">
<ul>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
May, 2024
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
Conference Paper Submission and Webpage Publication
</h4>
<p class="description">
I was honored with the best paper award at the IEEE publication
Following this achievement, I successfully developed a web
application. I have already incorporated feedback from the panel
into the presentation slides and made minor adjustments to the
thesis. where my plagiarism count is calculated 5% using Turnitin
software.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
May, 2024
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>April, 2024</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Webpage Assets Creation and Publishing Plans
</h4>
<p class="description">
Work on assets creation for the webpage. Explore the best platform
to publish the page with the appropriate domain to create the
project workflow webpage.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
March, 2024
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
Webpage Creation and Paper Resubmission
</h4>
<p class="description">
Create the Project Progress Workflow Timeline webpage. Implement
changes as suggested by reviewer comments and resubmit the paper
manuscript to the AIIoT Conference. Receive Conference Paper
Acceptance Notification. Gain knowledge about HTML, CSS, and
JavaScript.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
March, 2024
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>February, 2024</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Conference Paper Submission and Testing
</h4>
<p class="description">
Implement changes in the paper manuscript and submit it to the 3rd
IEEE AIIoT 2024 Conference at VIT, India. Successfully publish the
filed patent. Perform regression testing of data, hardware, and
software. Schedule a meeting with the guide and co-guide for project
progress reporting.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
January, 2024
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
Repository Setup and Manuscript Review Meeting
</h4>
<p class="description">
Create a private Git repository and push all code files for future
reference. Conduct a general review meeting with the Guide and
Co-guide for clarification on the submitted paper manuscript.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
January, 2024
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>November, 2023</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<h4 class="title">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
Patent Filing and Project Report Submission
</h4>
<p class="description">
File a Patent Application to Intellectual Property of India
Authority. Submit the Project Report to the Panel Members along with
the Drive Link. Present Dissertation Phase 1 in front of Panel
Members
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-offset-1 col-md-5 experience-time-responsive">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
October, 2023
</h2>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-5">
<div class="timeline">
<div class="timeline-content text-right">
<h4 class="title">
Hardware Assembly and Integration Efforts
</h4>
<p class="description">
Assemble all parts and conduct a trial test run of the hardware
module for sanity testing. Attempt to gather data from the
surrounding environment and integrate with Gmail API and Matlab
ThingSpeak cloud API.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5 experience-time-main">
<div class="experience-time">
<h2>
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
October, 2023
</h2>
</div><!--/.experience-time-->