-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1004 lines (894 loc) · 47.8 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>
<head>
<title>Amirreza Hosseini</title>
<link rel="icon" type="image/x-icon" href="/images/head/browser.png">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<meta name="google-site-verification" content="ZNwFZIDr6b0PIz5Lf_f-vi9eyYvv7jDXigamEjWeP7s" />
<meta name="description" content="Amirreza Hosseini's portfolio showcasing projects, publications, and education.">
<meta property="og:title" content="Amirreza Hosseini">
<meta property="og:description" content="Portfolio of Amirreza Hosseini, a Computer Engineering graduate.">
<meta property="og:image" content="https://amiirhosseini.ir/">
<meta property="og:url" content="https://amiirhosseini.ir/">
<style>
:root {
--background-color: white;
--text-color: black;
}
[data-theme="dark"] {
--background-color: black;
--text-color: white;
}
[data-theme="dark"] .publication-item {
background-color: var(--background-color);
color: var(--text-color);
}
[data-theme="dark"] .publication-item .text-container h3,
[data-theme="dark"] .publication-item .text-container p {
color: var(--text-color);
}
[data-theme="dark"] .publication-item .date-section {
background-color: #f0f0f0;
color: #000;
}
/* Add this new rule */
[data-theme="dark"] .no-dark-mode {
background-color: #f0f0f0;
color: black;
}
body {
background-color: var(--background-color);
color: var(--text-color);
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius:34px;
}
.slider.round:before {
border-radius:50%;
}
.dark-mode-label, .switch {
vertical-align: middle;
margin-top: 16px;
}
.publication-item {
display: flex;
align-items: flex-start;
border: 1px solid #ccc;
padding: 15px;
margin-bottom: 20px;
cursor: pointer;
transition: transform 0.2s;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
border-radius: 5px;
background-color: #fff;
}
.image-container {
flex-shrink: 0;
margin-right: 15px;
}
.cover-image {
width: 100%;
max-width: 100px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.text-container {
flex-grow: 1;
}
.publication-item h3 {
margin-top: 0;
}
.publication-item p {
text-align: justify;
margin-bottom: 0;
}
.publication-item:hover .cover-image {
transform: scale(1.05);
}
@media (max-width: 600px) {
.publication-item {
flex-direction: column;
align-items: center;
}
.image-container {
margin-right: 0;
margin-bottom: 15px;
}
.cover-image {
max-width: 150px;
}
}
/* Add CSS for logo inversion */
.logo {
transition: filter 0.3s ease;
}
[data-theme="light"] .logo {
filter: invert(1);
}
[data-theme="dark"] .logo {
filter: none;
}
</style>
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<div class="inner black" style="text-align: right;">
<a class="image avatar" style="display: inline-block; margin-bottom: 10px;"><img src="images/ASL_1996.JPG" alt="Amirreza Hosseini's Avatar" /> </a>
<h1 style="margin-bottom: 10px;"><strong>Amirreza Hosseini</strong></h1>
<a href="mailto:hosseiniamirreza2001@gmail.com" target="_blank" style="margin-bottom: 10px; text-decoration: underline; font-size: 20px;">Email</a>
<!-- <a href="https://amiirhosseini.ece.iut.ac.ir/" target="_blank" style="display: block; margin-bottom: 10px;">Academic Website</a> -->
<div class="dark-mode" style="display: flex; justify-content: right; align-items: center;">
<span class="dark-mode-label" style="margin-right: 12px; font-size: 20px;">Dark mode:</span>
<label class="switch">
<input type="checkbox" id="theme-toggle" onclick="toggleTheme()">
<span class="slider round"></span>
</label>
</div>
</div>
</header>
<!-- CSS Media Query -->
<style>
@media screen and (max-width: 915px) {
#header .inner {
text-align: center !important;
}
#header .dark-mode {
justify-content: center !important;
}
}
</style>
<!-- Main -->
<div id="main">
<style>
#one p {
text-align: justify;
}
</style>
<!-- One -->
<section id="one">
<header class="major">
<h2>About Me</h2>
</header>
<p>Currently, I am a master of science student at University of Calgary, one of the most reputative universities in Canada. According to <a href="https://edurank.org/uni/university-of-calgary/rankings/" target="_blank">
Edu rank</a> . I am also a B.Sc. graduated student majoring in<b> Computer Engineering</b> at the <b>Isfahan University of Technology <a href="https://www.iut.ac.ir" target="_blank">(IUT)</a></b>
(ranked within the top 5 universities in Iran according to <a href="https://www.topuniversities.com/universities/isfahan-university-technology" target="_blank">
QS ranking</a> and <a href="https://www.usnews.com/education/best-global-universities/isfahan-university-of-technology-502590" target="_blank"> U.S. News </a>) with a GPA of 3.71/4 (Ranked within the top 20% of my graduating class).
I've got a wide range of programming knowledge for both hardware and software. I'm glad to announce that my first branch
in university was Electrical Engineering. After one year of studying in that major, I proudly changed my major to Computer
Engineering in that department(to do that, you need high a GPA and
excellent academic performance). Explore my projects in more detail below.
</p>
<ul class="actions">
<li><a href="./files/AmirrezaHosseini-CV.pdf" class="button icon solid fa-download" target="_blank">CV PDF</a></li>
</ul>
</section>
<!-- Education -->
<section id="four">
<header class="major">
<h2>Education</h2>
</header>
<div>
<strong><b> • Master of Science in Electrical and Computer Engineering</b></strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">2024-Present</div>
<p>
<a href="https://www.ucalgary.ca/" target="_blank">
<img src="images/posts/Logos/university-of-calgary-logo.png" alt="UofC Logo" style="vertical-align: middle; width: 35px; height: 35px; margin-right: 5px;">
University of Calgary
</a> (UofC) <br>
Master of Science (Thesis Based) <br>
</p>
</div>
<div>
<strong><b> • Bachelor of Science in Computer Engineering</b></strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">2019-2023</div>
<p>
<a href="https://iut.ac.ir" target="_blank">
<img src="images/posts/Logos/iut.png" alt="IUT Logo" class="logo" style="vertical-align: middle; width: 30px; height: 30px; margin-right: 5px;">
Isfahan University of Technology
</a> (IUT) <br>
Intelligence computer systems (tuition waived) <br>
GPA: 17.66 out of 20 (converted: 3.71/4) <br>
last year GPA: 4/4 <br>
Project title: <i>Edge Computing Empowers Federated Learning in Resource-Constrained IoT Networks</i> <br>
Supervisor: <a href="https://khorsandi.iut.ac.ir/" target="_blank">Dr. Amir Khorsandi</a>
</p>
</div>
<div>
<strong><b>• Diploma Degree in Mathematics and Physics discipline</b></strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">2015-2018</div>
<p>
<a href="https://am2-sch.ir/" target="_blank">Nokhbegan-e Tehran</a> <br>
High-rank high school in Tehran, Iran <br>
GPA: 4/4
</p>
</div>
</section>
<!-- Publications -->
<section id="publications">
<header class="major">
<h2>Publications</h2>
</header>
<!-- Publication Item -->
<div class="col-6 col-12-xsmall work-item">
<a href="https://ieeexplore.ieee.org/document/10365343" target="_blank" style="text-decoration: none; color: inherit;">
<div class="publication-item" onmouseover="this.style.transform='scale(1.05)'" onmouseout="this.style.transform='scale(1)'">
<div class="image-container">
<img src="./images/posts/Publications/SSBump/cover.png" alt="Cover Image" class="cover-image">
</div>
<div class="text-container">
<h3>Intelligent Traffic Control with Smart Speed Bumps</h3>
<p>This paper introduces the Smart Speed Bump (SSBump), a novel traffic calming solution that leverages the Internet of Things (IoT) and innovative non-Newtonian fluid materials to enhance road safety, optimize emergency response times, and improve the overall driving experience. Published in the 2023 7th International Conference on Internet of Things and Applications (IoT). [most read preprint from Isfahan University Of Technology in one week on ResearchGate]</p>
</div>
<div></div>
</div>
</a>
</div>
<!-- Add more publication items as needed -->
</section>
<!-- Two -->
<section id="two">
<style>
#two article p {
text-align: justify;
}
</style>
<header class="major">
<h2>Projects</h2>
</header>
<div class="row">
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/smart bump/photo_2023-01-30_08-44-23.jpg" class="image fit thumb"><img src="images/posts/projects/smart bump/photo_2023-01-30_08-44-23.jpg" alt="" loading="lazy" /></a>
<h3>Smart Speed Bump</h3>
<p>A model of smart bumper with embedded system elements that modifies it height with the speed of accrossing vehicles.
first, detection speed with two lazers and LDRs and second, determine the proper height and the last, give pulse to the motor to do so.
Using STMf103 with ARM architecture as a brain of this cyber physical system. The conference paper <a href="https://www.researchgate.net/publication/372074411_Intelligent_Traffic_Control_with_Smart_Speed_Bumps" target="_blank"> "Intelligent Traffic Control with Smart Speed Bumps" </a> which was presented in the 7th International conference on IoT and its application, Isfahan, Iran. The codes can be accessible trough <a href="https://github.com/Amiirhosseini/SSBump" target="_blank">here</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/so2-monitoring/so2-monitoring.png" class="image fit thumb">
<img src="images/posts/projects/so2-monitoring/so2-monitoring.png" alt="Neural Network Applications in SO₂ Saturation Monitoring" loading="lazy" />
</a>
<h3>Neural Network Applications in SO₂ Saturation Monitoring</h3>
<p>
As part of my ENEL 645 coursework, I developed a project focusing on the application of neural networks in spectroscopic analysis for oxygen saturation (SO₂) monitoring. Utilizing diffuse reflectance spectroscopy and multilayer perceptrons (MLP), this project aims to provide accurate and real-time estimations of oxygenation levels in biological tissues.
<a href="https://github.com/Amiirhosseini/ENEL-645" target="_blank">View Code on GitHub</a>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/BMSIM/主图-2.webp" class="image fit thumb"><img src="images/posts/projects/BMSIM/主图-2.webp" alt="" loading="lazy" /></a>
<h3>BMSim Simulator</h3>
<p>An Event-Driven Simulator for Performance Evaluation of Bluetooth Mesh Networks.
some of my simulations using this environment about some real scenarios. visit my codes through <a href="https://github.com/Amiirhosseini/BMSIM" target="_blank">my GitHub rep</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/radar/Screenshot 2022-09-26 110714.jpg" class="image fit thumb"><img src="images/posts/projects/radar/Screenshot 2022-09-26 110714.jpg" alt="" /></a>
<h3>Arduino Radar Project</h3>
<p>An Arduino(UNO CH340) with an ultrasonic sensor and the servo motor with buzzers and RGB for detecting the distance of
objects and giving feedback with serial monitor and UI. The UI is implemented with the JAVA processing environment.
You can see the video of working<a href="https://iutbox.iut.ac.ir/index.php/s/GDJtMjAF5oYF3QF/download/Radar_Amirreza%20Hosseini_9820363.rar"> here</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/computer vision/article_240050_cover_en_US.jpg" class="image fit thumb"><img src="images/posts/projects/computer vision/article_240050_cover_en_US.jpg" alt="" loading="lazy" /></a>
<h3>Computer Vision</h3>
<p>I had an amazing time working on many classical computer vision algorithms implemented in MATLAB. For example, I worked on content-based image retargeting systems, seam carving, puzzle solvers, salt and pepper noise removal, and retinal blood vessel segmentation, among others. These projects allowed me to explore the fascinating world of computer vision and develop my skills in this field. You can help yourself by running and providing feedback on my codes through <a href="https://github.com/Amiirhosseini/Computer-Vision"> my GitHub repository</a>. I am always looking for ways to improve my works.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/VETM/image.png" class="image fit thumb">
<img src="images/posts/projects/VETM/image.png" alt="VETM/MDCH 605 Course Summary Thumbnail" loading="lazy" />
</a>
<h3>VETM/MDCH 605 - Biostatistics</h3>
<p>
This course explored advanced biostatistical methodologies applied to health and ecological datasets. Topics included analysis of respiratory rates in children utilizing ANOVA and regression models, investigating environmental factors like zinc, copper, and temperature on protein levels in minnow larvae using ANCOVA, and logistic regression models to predict salamander presence based on distance and terrain types. The course emphasized practical applications of statistical models in biological and medical contexts, supported by comprehensive R programming exercises.
You can access the full repository and details here: <a href="https://github.com/Amiirhosseini/VETM-605" target="_blank">View Code on GitHub</a>.
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/golestan/Screenshot 2022-09-26 111655.jpg" class="image fit thumb"><img src="images/posts/projects/golestan/Screenshot 2022-09-26 111655.jpg" alt="" loading="lazy" /></a>
<h3>Golestan</h3>
<p>A<a href="https://golestan.iut.ac.ir/home/Default.htm" target="_blank"> Golestan-Like</a> model project for the Advanced programming course at IUT Implemented in C# (WinForms). You can visit
the <a href="https://github.com/Amiirhosseini/Golestan" target="_blank">open-source code</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/mano/ManoA.GIF" class="image fit thumb"><img src="images/posts/projects/mano/ManoA.GIF" alt="" loading="lazy" /></a>
<h3>Mano Simulator</h3>
<p>A basic computer stimulator from the course computer architecture at IUT is implemented in C# windows forms. Please see the open source<a href="https://github.com/Amiirhosseini/mano-simulator" target="_blank"> here</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/Azmoon/Screenshot 2022-09-26 114201.jpg" class="image fit thumb"><img src="images/posts/projects/Azmoon/Screenshot 2022-09-26 114201.jpg" alt="" loading="lazy" /></a>
<h3>Azmoon Sanj Daghigh</h3>
<p>My Industrial Project is about developing a website for<a href="https://azmoontest.com/en" target="_blank"> Azmoon company</a>.
It's an automation service for calibration procedures. It is implemented in the .NET core environment with MVC architecture. It is still in the development phase. But you can see the Desktop-based demo version <a href="https://github.com/Amiirhosseini/Azmoon_demo" target="_blank">here</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/wireshark/wireshark-1.png" class="image fit thumb"><img src="images/posts/projects/wireshark/wireshark-1.png" alt="" loading="lazy" /></a>
<h3>Mini-Wireshark</h3>
<p>A simple project to create a mini Wireshark and mini Nmap for capturing TCP_syn packets in the Computer Networks course at IUT. It is
about manipulating the packets and seeing which port is empty. You can access the code <a href="https://github.com/Amiirhosseini/mini-wireshark" target="_blank">here</a>. </p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/cisco/Screenshot 2022-09-26 163529.jpg" class="image fit thumb"><img src="images/posts/projects/cisco/Screenshot 2022-09-26 163529.jpg" alt="" loading="lazy" /></a>
<h3>Cisco packet tracer </h3>
<p>Implementation of different scenarios in Cisco packet tracer environment and, after that, sending a packet and
Debugging the whole Network for the last project in Network Lab at IUT. also implement these scenarios with real
Cisco switches and routers in the Lab. you can have the implementation files <a
href="https://github.com/Amiirhosseini/Network-Lab" target="_blank">here</a>. </p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/verilog/system generator with ISE.PNG" class="image fit thumb"><img src="images/posts/projects/verilog/system generator with ISE.PNG" alt="" loading="lazy" /></a>
<h3>Verilog coding</h3>
<p>Design and implement some digital elements with Verilog hardware description language(HDL), like combinational and sequential circuits.
The codes are in Three commonly understood levels of abstraction: behavioral, register-transfer-level (RTL), and structural.
Test and run them in ModelSim.
After that, synthesize them in ISE Xilinx.
You can see more detail about it on <a
href="https://github.com/Amiirhosseini/FPGA"> GitHub</a>. </p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/vgg/vgg16-neural-network.jpg" class="image fit thumb"><img src="images/posts/projects/vgg/vgg16-neural-network.jpg" alt="" loading="lazy" /></a>
<h3>Vgg16 Transfer learning</h3>
<p>Using a pre-trained vgg16 model for evaluation of the MNIST data set.
Freeze the inside neurons and add some fully-connected layers to change the aspect of input data.
The PyTorch library helps to achieve that.
The project of this code and also CNN are available on <a
href="https://github.com/Amiirhosseini/Fashion-MNIST" target="_blank"> my GitHub</a>. </p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/garbage-classification/garbage.drawio.png" class="image fit thumb">
<img src="images/posts/projects/garbage-classification/garbage.drawio.png" alt="Garbage Classification System" loading="lazy" />
</a>
<h3>Garbage Classification System</h3>
<p>
Developed as part of my ENEL645 coursework during my master, this project uses a multimodal AI approach to classify garbage
into <b>Green</b>, <b>Blue</b>, <b>Black</b>, and <b>Other</b> bins. It combines image recognition
(ResNet/MobileNet) with NLP models (BERT/Transformers) for accurate predictions. The system promotes
sustainable waste management by aligning with Calgary's recycling initiatives.
<br><br>
<a href="images/posts/projects/garbage-classification/ENEL645-Group07-Assignment01.pdf" target="_blank">Read the Proposal</a> |
<a href="images/posts/projects/garbage-classification/ENEL-645-Assignment2-main.zip" target="_blank">View Code on GitHub</a>
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/manipulator/2022_10_29_15_37_IMG_4092.JPG" class="image fit thumb"><img src="images/posts/projects/manipulator/2022_10_29_15_37_IMG_4092.JPG" alt="" loading="lazy" /></a>
<h3>Manipulators</h3>
<p>Some of my manipulating with manipulators in the robotic lab.
such as forward and inverse kinematics and imitation of human behaviors.
all of the codes are implemented in python and you can access some of it on GitHub <a
href="https://github.com/Amiirhosseini/manipulators" target="_blank">here</a>. </p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/bachelors Project/AmirrezaHosseini 9820363- Bachelor's Project - Poster.png" class="image fit thumb"><img src="images/posts/projects/bachelors Project/AmirrezaHosseini 9820363- Bachelor's Project - Poster.png" alt="" loading="lazy" /></a>
<h3>Bachelor's Project</h3>
<p>Edge Computing Empowers Federated Learning in Resource-Constrained IoT Networks -
Access the pre-printed file through <a href="https://www.researchgate.net/publication/374290508_Edge_Computing_Empowers_Federated_Learning_in_Resource-Constrained_IoT_Networks_Farsi" target="_blank">researchgate</a>
- Simulation files and LaTeX source file are available on <a href="https://github.com/Amiirhosseini/Bachelors-Project" target="_blank">GitHub</a>.
</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/mininet/Screenshot 2023-02-01 001738.jpg" class="image fit thumb"><img src="images/posts/projects/mininet/Screenshot 2023-02-01 001738.jpg" alt="" loading="lazy" /></a>
<h3>Mininet project</h3>
<p>Using a mininet environment to create Software Defined Network (Hosts, controller, links, etc) to design one feasible scenario as a running network.
creating alternative flows with python language to change the behavior of the switches.
please go dive into and access the codes through my GitHub repo <a
href="https://github.com/Amiirhosseini/SDN" target="_blank">here</a>.</p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/CarBaMa/Search.png" class="image fit thumb"><img src="images/posts/projects/CarBaMa/Login.png" alt="" loading="lazy" /></a>
<h3>CarBaMa</h3>
<p>It is a software platform that makes your trades easier than ever.
Its supports all types of vehicles such as cars or motors.
we have done all of the planning and design phases but not dive into the implementation yet, so as a matter of fact it is conceptual for now.
you can visit all of the detailed documentation in the GitHub repo <a
href="https://github.com/Amiirhosseini/CarBaMa" target="_blank">here</a>. </p>
</article>
<article class="col-6 col-12-xsmall work-item">
<a href="images/posts/projects/micro/Proteus-simulation-based-avr-projects.png" class="image fit thumb"><img src="images/posts/projects/micro/Proteus-simulation-based-avr-projects.png" alt="" loading="lazy" /></a>
<h3>ATMega16/32 programming with CodeVision AVR</h3>
<p>Implementation of different scenarios in the Proteus environment and, after that,
running and Debugging the whole circuit for the last project in the microprocessor Lab. at IUT. Also,
implement these scenarios with real microprocessors and packages in the Lab. you can have the implementation files <a
href="https://github.com/Amiirhosseini/Micro-Lab" target="_blank">here</a>. </p>
</article>
</div>
<ul class="actions">
<li><a href="https://github.com/Amiirhosseini?tab=repositories" class="button" target="_blank">more of my projects</a></li>
</ul>
</section>
<!-- Peer Reviewer -->
<section id="peer-reviewer">
<header class="major">
<h2>Reviews</h2>
</header>
<div class="col-6 col-12-xsmall work-item">
<div class="publication-item" onmouseover="this.style.transform='scale(1.05)'" onmouseout="this.style.transform='scale(1)'">
<div class="image-container">
<img src="./images/posts/reviews/sgem.jpg" alt="SGEM VIENNA GREEN Journal Logo" class="cover-image">
</div>
<div class="text-container">
<strong>Paper Peer Reviewer</strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">Dec 2024</div>
<p>
<a href="https://sgemviennagreen.org/" target="_blank" style="text-decoration: none; color: inherit;">
SGEM VIENNA GREEN
</a>
<br>
X3 papers <br>
</p>
</div>
</div>
<div class="publication-item" onmouseover="this.style.transform='scale(1.05)'" onmouseout="this.style.transform='scale(1)'">
<div class="image-container">
<img src="./images/posts/reviews/X09252312.jpg" alt="Neurocomputing Journal Logo" class="cover-image">
</div>
<div class="text-container">
<strong>Paper Peer Reviewer (x2)</strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">Jun & Nov 2024</div>
<p>
<a href="https://www.sciencedirect.com/journal/neurocomputing" target="_blank" style="text-decoration: none; color: inherit;">
Neurocomputing Journal
</a>
<br>
Neurocomputing - Elsevier | 2023 Impact Factor: 6.0 | Cite Score: 10.8 | Q1. <br>
1X revision <br>
Certificate: <a href="./files/Certificate_NEUCOM_Recognised-Revision.pdf" target="_blank">Download Certificate</a>
</p>
</div>
</div>
<div class="publication-item" onmouseover="this.style.transform='scale(1.05)'" onmouseout="this.style.transform='scale(1)'">
<div class="image-container">
<img src="./images/posts/reviews/X01420615.jpg" alt="International Journal of Electrical Power & Energy Systems Journal Logo" class="cover-image">
</div>
<div class="text-container">
<strong>Paper Peer Reviewer</strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">Nov 2024</div>
<p>
<a href="https://www.sciencedirect.com/journal/international-journal-of-electrical-power-and-energy-systems" target="_blank" style="text-decoration: none; color: inherit;">
International Journal of Electrical Power and Energy Systems
</a>
<br>
International Journal of Electrical Power & Energy Systems - Elsevier | 2024 Impact Factor: 5.0 | Cite Score: 12.1 | Q1. <br>
Certificate: <a href="./files/Certificate_JEPE_Recognised.pdf" target="_blank">Download Certificate</a>
</p>
</div>
</div>
<div class="publication-item" onmouseover="this.style.transform='scale(1.05)'" onmouseout="this.style.transform='scale(1)'">
<div class="image-container">
<img src="./images/posts/reviews/X09205489.jpg" alt="Computer Standards & Interfaces Journal Logo" class="cover-image">
</div>
<div class="text-container">
<strong>Paper Peer Reviewer</strong>
<div class="no-dark-mode" style="float: right; background-color: #f0f0f0; padding: 5px; border-radius: 5px;">Oct 2024</div>
<p>
<a href="https://www.sciencedirect.com/journal/computer-standards-and-interfaces" target="_blank" style="text-decoration: none; color: inherit;">
Computer Standards & Interfaces
</a>
<br>
Computer Standards & Interfaces - Elsevier | 2024 Impact Factor: 4.1 | Cite Score: 11.9 | Q1. <br>
Certificate: <a href="./files/Certificate_CSI_Recognised.pdf" target="_blank">Download Certificate</a>
</p>
</div>
</div>
</div>
</section>
<!-- Three -->
<section id="three">
<h2>A Little More About Me</h2>
<strong>Alongside my interests in Science and Technology, some of my other hobbies are:</strong>
<p style="text-align: justify;">
> Playing musical instruments such as guitar and piano and gaining knowledge in musical notes and harmonics.<br>
> Hold three musical concerts for charity purposes for the Iran Society of Deaf People Family with about 800 audience members.<br>
> In my leisure time, I find joy in the exhilaration of bicycle rides and the tranquility of swimming.<br>
</p>
<div class="row">
<div class="col-4 col-12-small">
<ul class="labeled-icons">
<li>
<h3 class="icon solid fa-home"><span class="label">Address</span></h3>
Calgary, AB, Canada
</li>
<li>
<h3 class="icon solid fa-mobile-alt"><span class="label">Phone</span></h3>
+98 (938) 633-0730
</li>
<li>
<h3 class="icon solid fa-envelope"><span class="label">Email</span></h3>
<a href="mailto:hosseiniamirreza2001@gmail.com" target="_blank">hosseiniamirreza2001@gmail.com</a>
</li>
</ul>
</div>
</div>
<div id="clustermaps-widget" style="width: 20%">
<script type="text/javascript" id="clustrmaps" src="//clustrmaps.com/map_v2.js?d=AZh-EPkcJndYZ639zMBsejtDRdx-aX4Lp4YR7_BzQFQ&cl=ffffff&w=a"></script>
</div>
</section>
<!-- Four -->
<!--
<section id="four">
<h2>Elements</h2>
<section>
<h4>Text</h4>
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>. Finally, <a href="#">this is a link</a>.</p>
<hr />
<header>
<h4>Heading with a Subtitle</h4>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<header>
<h5>Heading with a Subtitle</h5>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<hr />
<h2>Heading Level 2</h2>
<h3>Heading Level 3</h3>
<h4>Heading Level 4</h4>
<h5>Heading Level 5</h5>
<h6>Heading Level 6</h6>
<hr />
<h5>Blockquote</h5>
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor sit amet nullam adipiscing eu felis.</blockquote>
<h5>Preformatted</h5>
<pre><code>i = 0;
while (!deck.isInOrder()) {
print 'Iteration ' + i;
deck.shuffle();
i++;
}
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
</section>
<section>
<h4>Lists</h4>
<div class="row">
<div class="col-6 col-12-xsmall">
<h5>Unordered</h5>
<ul>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
<h5>Alternate</h5>
<ul class="alt">
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
</div>
<div class="col-6 col-12-xsmall">
<h5>Ordered</h5>
<ol>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ol>
<h5>Icons</h5>
<ul class="icons">
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
<li><a href="#" class="icon brands fa-tumblr"><span class="label">Tumblr</span></a></li>
</ul>
</div>
</div>
<h5>Actions</h5>
<ul class="actions">
<li><a href="#" class="button primary">Default</a></li>
<li><a href="#" class="button">Default</a></li>
</ul>
<ul class="actions small">
<li><a href="#" class="button primary small">Small</a></li>
<li><a href="#" class="button small">Small</a></li>
</ul>
<div class="row">
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary">Default</a></li>
<li><a href="#" class="button">Default</a></li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary small">Small</a></li>
<li><a href="#" class="button small">Small</a></li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary fit">Default</a></li>
<li><a href="#" class="button fit">Default</a></li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="actions stacked">
<li><a href="#" class="button primary small fit">Small</a></li>
<li><a href="#" class="button small fit">Small</a></li>
</ul>
</div>
</div>
</section>
<section>
<h4>Table</h4>
<h5>Default</h5>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
<h5>Alternate</h5>
<div class="table-wrapper">
<table class="alt">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
</section>
<section>
<h4>Buttons</h4>
<ul class="actions">
<li><a href="#" class="button primary">Primary</a></li>
<li><a href="#" class="button">Default</a></li>
</ul>
<ul class="actions">
<li><a href="#" class="button large">Large</a></li>
<li><a href="#" class="button">Default</a></li>
<li><a href="#" class="button small">Small</a></li>
</ul>
<ul class="actions fit">
<li><a href="#" class="button primary fit">Fit</a></li>
<li><a href="#" class="button fit">Fit</a></li>
</ul>
<ul class="actions fit small">
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
<li><a href="#" class="button fit small">Fit + Small</a></li>
</ul>
<ul class="actions">
<li><a href="#" class="button primary icon solid fa-download">Icon</a></li>
<li><a href="#" class="button icon solid fa-download">Icon</a></li>
</ul>
<ul class="actions">
<li><span class="button primary disabled">Primary</span></li>
<li><span class="button disabled">Default</span></li>
</ul>
</section>
<section>
<h4>Form</h4>
<form method="post" action="#">
<div class="row gtr-uniform gtr-50">
<div class="col-6 col-12-xsmall">
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
</div>
<div class="col-12">
<select name="demo-category" id="demo-category">
<option value="">- Category -</option>
<option value="1">Manufacturing</option>
<option value="1">Shipping</option>
<option value="1">Administration</option>
<option value="1">Human Resources</option>
</select>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
<label for="demo-priority-low">Low Priority</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-normal" name="demo-priority">
<label for="demo-priority-normal">Normal Priority</label>
</div>
<div class="col-4 col-12-small">
<input type="radio" id="demo-priority-high" name="demo-priority">
<label for="demo-priority-high">High Priority</label>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-copy" name="demo-copy">
<label for="demo-copy">Email me a copy of this message</label>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-human" name="demo-human" checked>
<label for="demo-human">I am a human and not a robot</label>
</div>
<div class="col-12">
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" class="primary" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
</section>
<section>
<h4>Image</h4>
<h5>Fit</h5>
<div class="box alt">
<div class="row gtr-50 gtr-uniform">
<div class="col-12"><span class="image fit"><img src="images/fulls/05.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/01.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/02.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/03.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/04.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/05.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/06.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/03.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/02.jpg" alt="" /></span></div>
<div class="col-4"><span class="image fit"><img src="images/thumbs/01.jpg" alt="" /></span></div>
</div>
</div>
<h5>Left & Right</h5>
<p><span class="image left"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
<p><span class="image right"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
</section>
</section>
-->
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="https://github.com/Amiirhosseini" class="icon brands fa-github" target="_blank"><span class="label">Github</span></a></li>
<li><a href="https://linkedin.com/in/amirreza-hosseini-872583207" class="icon brands fa-linkedin" target="_blank"><span class="label">linkedin</span></a></li>
<li><a href="live:amirrezahx" class="icon brands fa-skype"><span class="label" target="_blank">Skype</span></a></li>
<li><a href="https://www.researchgate.net/profile/Amirreza-Hosseini-2" class="icon brands fa-researchgate" target="_blank"><span class="label">researchgate</span></a></li>
<li><a href="https://orcid.org/0009-0006-6403-0358" class="icon brands fa-orcid" target="_blank"><span class="label">orcid</span></a></li>
<li><a href="https://scholar.google.co.uk/citations?view_op=list_works&hl=en&hl=en&user=tIBJAvcAAAAJ" class="icon brands fa-google" target="_blank"><span class="label" >Google scholar</span></a></li>
</ul>
</div>
</footer>
<!-- align div to center -->
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
function toggleTheme() {
const theme = document.documentElement.getAttribute("data-theme");
const newTheme = theme === "dark" ? "light" : "dark";
document.documentElement.setAttribute("data-theme", newTheme);
localStorage.setItem("theme", newTheme);
}
document.addEventListener("DOMContentLoaded", () => {
const savedTheme = localStorage.getItem("theme") || "light";
document.documentElement.setAttribute("data-theme", savedTheme);
document.getElementById("theme-toggle").checked = savedTheme === "dark";