-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
624 lines (529 loc) · 18 KB
/
index.html
File metadata and controls
624 lines (529 loc) · 18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Mohammad Khateri</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Personal homepage of Mohammad Khateri" />
<!-- Fonts & Icons -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<style>
:root {
--bg: #ffffff;
--bg-alt: #f8f9fa;
--border: #dee2e6;
--text: #212529;
--muted: #6c757d;
--accent: #007bff;
--link-hover: #0056b3;
--sidebar-width: 260px;
--content-max: 1000px;
}
/* Custom background colors */
.sidebar {
background-color: transparent !important;
border: none !important;
box-shadow: none !important;
}
.project-entry {
border-bottom: 1px solid #eee; /* keep separator line */
}
body {
background-color: #ffffff !important;
}
#about.section,
#about {
background-color: #e8f1fc;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Inter", sans-serif;
color: var(--text);
background-color: #ffffff;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
color: var(--link-hover);
text-decoration: underline;
}
img {
max-width: 100%;
display: block;
}
/* Top nav */
.top-nav {
position: sticky;
top: 0;
z-index: 10;
background-color: #ffffff;
border-bottom: 1px solid var(--border);
}
.top-nav-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0.5rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.9rem;
}
.top-nav-title {
font-weight: 600;
color: #343a40;
}
.top-nav-links a {
margin-left: 1.2rem;
color: #495057;
}
/* Layout */
.page {
max-width: 1250px;
margin: 0 auto;
padding: 1.5rem;
display: grid;
grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
gap: 2rem;
}
/* Sidebar */
.sidebar {
border: 1px solid var(--border);
padding: 1.5rem 1.25rem;
border-radius: 0.25rem;
}
.sidebar-photo-wrapper {
width: 150px;
height: 150px;
margin: 0 auto 1rem;
border-radius: 50%;
overflow: hidden;
border: 1px solid var(--border);
}
.sidebar-name {
text-align: center;
font-weight: 600;
font-size: 1.1rem;
}
.sidebar-affil {
text-align: center;
font-size: 0.85rem;
color: var(--muted);
margin-bottom: 1rem;
}
.sidebar-section-title {
font-weight: 600;
font-size: 0.8rem;
margin: 1rem 0 0.4rem;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.sidebar-list {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.9rem;
}
.sidebar-list li {
margin-bottom: 0.35rem;
display: flex;
align-items: center;
gap: 0.4rem;
}
/* Main content */
.content {
max-width: var(--content-max);
}
.section {
background-color: transparent !important;
border: none !important;
box-shadow: none !important;
}
.section h2 {
margin-top: 0;
border-bottom: 1px solid var(--border);
padding-bottom: 0.3rem;
}
.section p {
font-size: 0.95rem;
}
/* Project entries */
.project-entry {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1.5rem;
padding-bottom: 1.8rem;
margin-bottom: 2rem;
border-bottom: 1px solid #d8dee4;
}
.project-text {
flex: 3;
font-size: 0.95rem;
line-height: 1.5;
}
.project-text h3 {
margin: 0 0 0.3rem 0;
font-size: 1.05rem;
}
.project-authors {
margin: 0.2rem 0 0.3rem 0;
color: #333;
font-size: 0.92rem;
}
.project-venue {
margin: 0 0 0.5rem 0;
font-size: 0.88rem;
font-style: italic;
color: #6c757d;
}
.under-review {
display: inline-block;
background: #fff3cd;
color: #856404;
padding: 0.15rem 0.5rem;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
font-style: normal;
margin-left: 0.5rem;
vertical-align: middle;
}
.project-links a {
margin-right: 1rem;
font-weight: 500;
}
.project-thumb {
flex: 1.2;
max-width: 320px;
border-radius: 6px;
border: 1px solid #ccc;
}
.top-nav-links {
display: flex;
justify-content: center; /* center whole menu */
align-items: center;
gap: 2.5rem; /* spacing between items */
font-size: 1.05rem; /* slightly larger */
font-weight: 500;
}
.top-nav-links a {
color: #333;
text-decoration: none;
padding: 0.4rem 0.6rem;
border-radius: 4px;
}
.top-nav-links a:hover {
background-color: #e8f1fc;
color: #0056b3;
text-decoration: none;
}
.project-thumb {
flex: 1.2;
max-width: 320px;
border-radius: 6px;
border: none; /* removed border */
box-shadow: none; /* ensure no shadow */
}
/* Limit width & improve readability of About Me text */
#about p {
max-width: 1100px;
line-height: 1.65;
margin-right: auto;
}
/* --- Mobile layout fix --- */
@media (max-width: 768px) {
.page {
grid-template-columns: 1fr; /* Sidebar full width, then content full width */
padding: 1rem;
}
.sidebar {
margin-bottom: 2rem; /* spacing below sidebar */
}
.project-entry {
flex-direction: column; /* stack project text + image */
align-items: center;
}
.project-thumb {
max-width: 90%;
}
.top-nav-inner {
flex-direction: column;
gap: 0.6rem;
}
.top-nav-links {
gap: 1rem;
flex-wrap: wrap;
}
}
/* Mobile fix for giant images */
@media (max-width: 768px) {
.project-entry {
flex-direction: column;
align-items: center;
}
.project-thumb {
max-width: 100%;
width: 100%;
height: auto;
}
}
/* Mobile navigation fix */
@media (max-width: 768px) {
.top-nav-inner {
flex-direction: column;
padding: 0.6rem 1rem;
text-align: center;
}
.top-nav-title {
background: none !important;
padding: 0;
margin-bottom: 0.3rem;
font-size: 1rem;
}
.top-nav-links {
gap: 1.2rem;
font-size: 0.95rem;
}
.top-nav-links a {
padding: 0.3rem 0.4rem;
}
/* Remove the big pill style on mobile */
.top-nav-title {
border-radius: 0 !important;
}
}
</style>
</head>
<body>
<!-- Top nav -->
<header class="top-nav">
<div class="top-nav-inner">
<div class="top-nav-title" style="
font-weight:600;
font-size:1rem;
background:#f1f3f5;
padding:6px 14px;
border-radius:20px;
color:#333;">
Homepage
</div>
<nav class="top-nav-links">
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
<a href="files/cv.pdf" target="_blank">CV</a>
</nav>
</div>
</header>
<div class="page">
<!-- Sidebar -->
<aside class="sidebar">
<div class="sidebar-photo-wrapper">
<img src="figs/profile.jpg" alt="Portrait of Mohammad Khateri" />
</div>
<div class="sidebar-name">Mohammad Khateri</div>
<div class="sidebar-affil">
University of Eastern Finland<br />
</div>
<ul class="sidebar-list">
<li><i class="fa-solid fa-location-dot"></i> Finland</li>
<li><i class="fa-solid fa-envelope"></i>
<a href="mailto:mohammad.khateri@uef.fi">mohammad.khateri@uef.fi</a>
</li>
<li><i class="fa-brands fa-google-scholar"></i>
<a href="https://scholar.google.com/citations?user=vHtGWmoAAAAJ" target="_blank">Google Scholar</a>
</li>
<li>
<i class="fa-brands fa-orcid"></i>
<a href="https://orcid.org/0000-0001-9553-3966" target="_blank">
ORCID
</a>
</li>
<li><i class="fa-brands fa-github"></i>
<a href="https://github.com/mkhateri" target="_blank">GitHub</a>
</li>
<li><i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mohammad-khateri-a9279666" target="_blank">LinkedIn</a>
</li>
</ul>
<div class="sidebar-section-title">Research Areas</div>
<ul class="sidebar-list">
<li>Computational Imaging</li>
<li>Computer Vision</li>
<li>Machine Learning</li>
<li>Medical Image Analysis</li>
<li>MRI / Microscopy / Ultrasound</li>
</ul>
</aside>
<!-- Main content -->
<main class="content">
<!-- About -->
<section id="about" class="section">
<h2>About Me</h2>
<p>
I am a Ph.D. candidate in Medical Computer Vision at the <strong>University of Eastern Finland</strong>. I work within the Multiscale Imaging and Biomedical Image Analysis Groups under the supervision of <a href="https://scholar.google.com/citations?user=cxP2f78AAAAJ&hl=en" target="_blank">Prof. Alejandra Sierra</a> and <a href="https://scholar.google.com/citations?user=StmRhaUAAAAJ&hl=en" target="_blank">Prof. Jussi Tohka</a>. My research lies at the intersection of computer vision, machine learning, and computational imaging for biomedical applications. I recently completed a six-month research visit at <strong>Harvard Medical School</strong>, where I developed methods for MRI super-resolution and multi-view ultrasound compounding. I hold both a B.Sc. and an M.Sc. in Electrical Engineering with a specialization in advanced signal and image processing. My research interests include physics-aware and learning-based imaging, with strong experience in diffusion MRI simulation, restoration (super-resolution, distortion correction, and denoising), weakly supervised segmentation, multi-sensor image fusion, and image-to-image translation. I am currently expanding my research toward multimodal imaging and generative modeling, and exploring emerging foundation models for biomedical AI.
</p>
</section>
<!-- Projects -->
<section id="projects" class="section">
<h2>Selected Research & Projects</h2>
<!-- Project 1 -->
<div class="project-entry">
<div class="project-text">
<h3>USFetal: Tools for Fetal Brain Ultrasound Compounding</h3>
<p class="project-authors">
<strong>Mohammad Khateri</strong>, Morteza Ghahremani, Sergio Valencia,
Camilo Jaimes, Alejandra Sierra, Jussi Tohka, P. Ellen Grant, Davood Karimi
</p>
<p class="project-venue">IEEE Journal of Biomedical and Health Informatics, 2026 <span class="under-review">Under Review</span></p>
<p class="project-links">
<a href="https://arxiv.org/pdf/2601.06726" target="_blank">Paper</a>
<a href="https://github.com/mkhateri/USFetal-Compounding-Tools" target="_blank">Code</a>
</p>
</div>
<img src="figs/USfetal.png" class="project-thumb" alt="USFetal figure">
</div>
<!-- Project 2 -->
<div class="project-entry">
<div class="project-text">
<h3>MRI Super-Resolution with Deep Learning: A Comprehensive Survey</h3>
<p class="project-authors">
<strong>Mohammad Khateri</strong>, Serge Vasylechko, Morteza Ghahremani,
Liam Timms, Deniz Kocanaogullari, Simon K. Warfield, Camilo Jaimes,
Davood Karimi, Alejandra Sierra, Jussi Tohka, Sila Kurugol, Onur Afacan
</p>
<p class="project-venue">Medical Image Analysis, 2026 <span class="under-review">Under Review</span></p>
<p class="project-links">
<a href="https://arxiv.org/pdf/2511.16854" target="_blank">Paper</a>
<a href="https://github.com/mkhateri/Awesome-MRI-Super-Resolution" target="_blank">Code</a>
</p>
</div>
<img src="figs/MRI_SR.png" class="project-thumb" alt="MRI Survey">
</div>
<!-- Project 3 -->
<div class="project-entry">
<div class="project-text">
<h3>H-ViT: Hierarchical Vision Transformer for Deformable Registration</h3>
<p class="project-authors">
Morteza Ghahremani, <strong>Mohammad Khateri</strong>, Bailiang Jian,
Benedikt Wiestler, Ehsan Adeli, Christian Wachinger
</p>
<p class="project-venue">IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2024</p>
<p class="project-links">
<a href="https://openaccess.thecvf.com/content/CVPR2024/html/Ghahremani_H-ViT_A_Hierarchical_Vision_Transformer_for_Deformable_Image_Registration_CVPR_2024_paper.html" target="_blank">Paper</a>
<a href="https://github.com/mogvision/hvit" target="_blank">Code</a>
</p>
</div>
<img src="figs/HViT.png" class="project-thumb" alt="HViT">
</div>
<!-- Project 4 -->
<div class="project-entry">
<div class="project-text">
<h3>No-Clean-Reference Image Super-Resolution: Application to Electron Microscopy</h3>
<p class="project-authors">
<strong>Mohammad Khateri</strong>, Morteza Ghahremani, Alejandra Sierra, Jussi Tohka
</p>
<p class="project-venue">IEEE Transactions on Computational Imaging, 2024</p>
<p class="project-links">
<a href="https://doi.org/10.1109/TCI.2024.3426349" target="_blank">Paper</a>
<a href="https://github.com/mkhateri/EMSR" target="_blank">Code</a>
</p>
</div>
<img src="figs/EMSR.png" class="project-thumb" alt="EMSR">
</div>
<!-- Project 5 -->
<div class="project-entry">
<div class="project-text">
<h3>Self-Supervised Super-Resolution Approach for Isotropic Reconstruction of 3D Electron Microscopy Images from Anisotropic Acquisition</h3>
<p class="project-authors">
<strong>Mohammad Khateri</strong>, Morteza Ghahremani, Alejandra Sierra, Jussi Tohka
</p>
<p class="project-venue">European Workshop on Visual Information Processing (EUVIP), 2023</p>
<p class="project-links">
<a href="https://ieeexplore.ieee.org/abstract/document/10323074" target="_blank">Paper</a>
</p>
</div>
<img src="figs/EM_iso.png" class="project-thumb" alt="EM Isotropic SR">
</div>
<!-- Project 6 -->
<div class="project-entry">
<div class="project-text">
<h3>Adversarial Distortion Learning for Medical Image Denoising</h3>
<p class="project-authors">
Morteza Ghahremani, <strong>Mohammad Khateri</strong>, Alejandra Sierra, Jussi Tohka
</p>
<p class="project-venue">arXiv preprint, 2022</p>
<p class="project-links">
<a href="https://arxiv.org/pdf/2204.14100" target="_blank">Paper</a>
<a href="https://github.com/mogvision/ADL" target="_blank">Code</a>
</p>
</div>
<img src="figs/ADL.png" class="project-thumb" alt="ADL">
</div>
<!-- Project 7 -->
<div class="project-entry">
<div class="project-text">
<h3>What Does FEXI Measure?</h3>
<p class="project-authors">
<strong>Mohammad Khateri</strong>, Marco Reisert, Alejandra Sierra,
Jussi Tohka, Valerij G. Kiselev
</p>
<p class="project-venue">NMR in Biomedicine, 2022</p>
<p class="project-links">
<a href="https://analyticalsciencejournals.onlinelibrary.wiley.com/doi/abs/10.1002/nbm.4804" target="_blank">Paper</a>
</p>
</div>
<img src="figs/FEXI.png" class="project-thumb" alt="FEXI">
</div>
<!-- Project 8 -->
<div class="project-entry">
<div class="project-text">
<h3>A Variational Approach for Fusion of Panchromatic and Multispectral Images Using a New Spatial–Spectral Consistency Term</h3>
<p class="project-authors">
<strong>Mohammad Khateri</strong>, Fahim Shabanzade, Fardin Mirzapour,
Amirhossein Zaji, Zheng Liu
</p>
<p class="project-venue">IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, 2020</p>
<p class="project-links">
<a href="https://ieeexplore.ieee.org/abstract/document/9119131" target="_blank">Paper</a>
</p>
</div>
<img src="figs/Fusion.png" class="project-thumb" alt="Fusion">
</div>
</section>
<!-- Contact -->
<section id="contact" class="section">
<h2>Contact</h2>
<p><strong>Email (Academic):</strong>
<a href="mailto:mohammad.khateri@uef.fi">mohammad.khateri@uef.fi</a>
</p>
<p><strong>Email (Personal):</strong>
<a href="mailto:mkhateri@outlook.com">mkhateri@outlook.com</a>
</p>
<p><strong>Office:</strong><br>
A.I. Virtanen Institute for Molecular Sciences (AIVI)<br>
University of Eastern Finland<br>
Kuopio, Finland
</p>
<p><strong>Postal address:</strong><br>
P.O. Box 1627<br>
FI-70211 Kuopio<br>
Finland
</p>
</section>
</main>
</div>
<footer style="text-align:center; padding:1rem; color:#6c757d; font-size:0.85rem;">
© <span id="year"></span> Mohammad Khateri
</footer>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>