forked from sofiamichopoulou/single_voxel_group
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
931 lines (843 loc) · 45.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Home | Single Voxel Group</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Gp
* Updated: Aug 30 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top ">
<div class="container d-flex align-items-center justify-content-lg-between">
<!-- Uncomment below if prefer to use texts only -->
<!-- <h1 class="logo me-auto me-lg-0"><a href="index.html">SVG</a></h1> -->
<!-- Uncomment below if prefer to use an image logo -->
<a href="index.html" class="logo me-auto me-lg-0"><img src="assets/img/logos/SVG-logo-Sep2024.png" alt="SVG Logo" class="img-fluid"></a>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li class="dropdown"><a href="#agenda"><span>Workshops</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#workshop-1">Workshop 1</a></li>
<li><a href="#workshop-2">Workshop 2</a></li>
<li><a href="#workshop-3">Workshop 3</a></li>
<li><a href="#workshop-4">Workshop 4</a></li>
<li><a href="#workshop-5">Workshop 5</a></li>
</ul>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="/#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a href="#cta" class="get-started-btn scrollto">Call to Action</a>
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center justify-content-center">
<div class="container" data-aos="fade-up">
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="150">
<div class="col-xl-6 col-lg-8">
<h1>Welcome to<br> Single Voxel Group</h1>
</div>
</div>
<div class="row gy-4 mt-5 justify-content-center" data-aos="zoom-in" data-aos-delay="250">
<div class="col-xl-2 col-md-4">
<div class="icon-box">
<!-- <i class="ri-store-line"></i> -->
<i class="ri-calendar-todo-line"></i>
<h3><a href="#workshop-5">Save the Date</a></h3>
<p>Next Workshop: Thursday<br> 5 December, 2024</p>
</div>
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= Team Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
<p>Who We Are</p>
</div>
<div class="pt-4 pb-4 pt-lg-0 order-2 order-lg-1 content aos-init aos-animate fs-5" data-aos="fade-right data-aos-delay="100">
<ul>
<li><i class="ri-search-line"></i> We are a group of academics and clinicians developing image processing and data analysis methods for neurological disorders.</li>
<li><i class="ri-brain-line"></i> We use brain images and data to understand disease mechanisms.</li>
<li><i class="ri-hospital-line"></i> We translate image processing workflows into clinical application at University Hospital Southampton.</li>
</ul>
</div>
<div class="row">
<!-- Rahman Attar -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/members/Rahman_Attar.jpg" class="img-fluid" alt="Rahman Attar">
</div>
<div class="member-info">
<h4>Rahman Attar</h4>
<span>Lecturer of Electronics and Computer Science</span>
<div class="social">
<!-- <a href=""><i class="bi bi-linkedin"></i></a> -->
<a href="#" data-bs-toggle="modal" data-bs-target="#member-rahman-attar"><i
class="bi bi-person-lines-fill"></i></a>
<div id="member-rahman-attar" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Rahman Attar</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="assets/img/members/Rahman_Attar.jpg" class="img-fluid pb-4" alt="Rahman Attar">
<p>Rahman Attar is a computer scientist specialising in Artificial Medical Intelligence. He currently holds the position of Lecturer (which is the British equivalent of a tenured Assistant Professor in the USA) at the Department of Electronics and Computer Science, University of Southampton. Prior to this, he worked as a postdoctoral researcher at Imperial College London. Rahman completed his PhD under the supervision of Professor Alex Frangi at the University of Sheffield and the University of Leeds. His primary research area involves combining Artificial Intelligence (AI) and Medicine to create unbiased and ethical AI technologies that can improve healthcare strategies.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="https://www.ideac.org/wp-content/uploads/2021/06/A-Darekar.jpg" class="img-fluid" alt="Angela Darekar">
<!-- <div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
<a href=""><i class="bi bi-person-lines-fill"></i></a>
</div> -->
</div>
<div class="member-info">
<h4>Angela Darekar</h4>
<span>UHS Imaging Research Lead</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/members/Ruihua_Hou.jpg" class="img-fluid" alt="Ruihua Hou">
</div>
<div class="member-info">
<h4>Ruihua Hou</h4>
<span>Professor of Biological Psychiatry</span>
<div class="social">
<!-- <a href=""><i class="bi bi-linkedin"></i></a> -->
<a href="#" data-bs-toggle="modal" data-bs-target="#member-ruihua-hou"><i class="bi bi-person-lines-fill"></i></a>
<div id="member-ruihua-hou" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Ruihua Hou</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="assets/img/members/Ruihua_Hou_original.jpg" class="img-fluid pb-4" alt="Ruihua Hou">
<p>Ruihua Hou is a professor of biological psychiatry. She qualified in medicine and trained as a psychiatrist. She
completed a clinical fellowship followed by her PhD in psychopharmacology, both in the Department of Psychiatry Queen’s
Medical Centre at the University of Nottingham. She then joined the Department of Psychiatry at the University of
Southampton. Her research interest is in human psychopharmacology focusing on the role of the locus coeruleus in the
development of neurodegenerative diseases using MRI imaging technique. She led the ARUK-funded project investigating the
role of the locus coeruleus using neuromelanin-sensitive MRI in Alzheimer’s disease. Her work aims to identify early
biomarkers for cognitive decline and develop early intervention approaches to prevent disease progression.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="200">
<div class="member-img">
<img src="https://www.ideac.org/wp-content/uploads/2021/06/C-Kipps.jpg" class="img-fluid" alt="Christopher Kipps">
<!-- <div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
<a href=""><i class="bi bi-person-lines-fill"></i></a>
</div> -->
</div>
<div class="member-info">
<h4>Christopher Kipps</h4>
<span>Professor of Clinical Neurology and Dementia</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="member-img">
<img src="https://www.ideac.org/wp-content/uploads/2021/06/Sofia-Michopolou.jpg" class="img-fluid" alt="Sofia Michopoulou">
</div>
<div class="member-info">
<h4>Sofia Michopoulou</h4>
<span>Consultant Clinical Scientist</span>
<div class="social">
<a href="https://www.linkedin.com/in/sofia-michopoulou-60303322/"><i class="bi bi-linkedin"></i></a>
<a href="#" data-bs-toggle="modal" data-bs-target="#member-sofia-michopoulou"><i class="bi bi-person-lines-fill"></i></a>
<div id="member-sofia-michopoulou" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Sofia Michopoulou</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="https://www.ideac.org/wp-content/uploads/2021/06/Sofia-Michopolou.jpg" class="img-fluid pb-4" alt="Sofia Michopoulou">
<p>Sofia is a Consultant Clinical Scientist and Head of Nuclear Medicine Physics at University Hospital Southampton and Honorary Senior Clinical Lecturer at University of Southampton. In her clinical role, Sofia leads a team of clinical scientists supporting and developing radionuclide therapy and diagnostic SPECT/CT and PET/CT services. She also teaches medical imaging at BSc and MSc modules and delivers part of the Fellows of Royal College of Radiology physics module. Her research focuses on the development and evaluation of imaging and inflammation biomarkers for disease characterisation and the use of artificial intelligence for dementia diagnosis support.</p>
<a href="//scholar.google.com/citations?user=9BRWDUEAAAAJ&hl=en&oi=ao" target="_blank">Google Scholar</a>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Ruben Sanchez-Garcia -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="member-img">
<img src="assets/img/members/Ruben_SanchezGarcia.jpg" class="img-fluid"
alt="Ruben Sanchez-Garcia">
</div>
<div class="member-info">
<h4>Ruben Sanchez-Garcia</h4>
<span>Professor of Mathematics</span>
<div class="social">
<!-- <a href=""><i class="bi bi-linkedin"></i></a> -->
<a href="#" data-bs-toggle="modal" data-bs-target="#member-ruben-sanchez-garcia"><i class="bi bi-person-lines-fill"></i></a>
<div id="member-ruben-sanchez-garcia" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Ruben Sanchez-Garcia</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="assets/img/members/Ruben_SanchezGarcia_original.jpeg" class="img-fluid pb-4" alt="Ruben Sanchez-Garcia">
<p>Ruben Sanchez-Garcia is a Professor in Mathematics at the University of Southampton, member of the Institute for Life Sciences, and Fellow of the Alan Turing Institute. He does interdisciplinary work in network science and applied topology motivated by real-world, particularly biomedical, applications. His research publications include work on network modelling and analysis, applied topology, and mathematical biology.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="member-img">
<img src="https://www.repronim.org/images/2022_fellows/Yukai_Zou.jpeg" class="img-fluid" alt="Yukai Zou">
</div>
<div class="member-info">
<h4>Yukai Zou</h4>
<span>UHS Imaging Physicist (MRI)</span>
<div class="social">
<a href="https://www.linkedin.com/in/yukaizou/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Workshops Section ======= -->
<section id="agenda" class="agenda">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Workshops</h2>
<p>Check our Workshops</p>
</div>
<a name="workshop-1">
<h2 class="pt-4 pb-4">Workshop 1</h2>
<p>
<b>Date:</b> Tuesday 3 October, 2023 <br>
<b>Location:</b> LF9 at South Academic Block, Southampton General Hospital
</p>
<h3>Agenda</h3>
<table class="table table-light">
<thead>
<tr>
<th>Time</th>
<th>Topic</th>
<th>Speaker</th>
<th>Slides</th>
</tr>
</thead>
<tbody>
<tr>
<td>14:00 - 14:15</td>
<td>Imaging in dementia, synergies and directions</td>
<td>Angela Darekar</td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/1vCX6RvGp9TCrl6UU7lliYCRycKSk93os/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>14:15 - 14:30</td>
<td>Aims, datasets available, survey results</td>
<td>Chris Kipps<br>Sofia Michopoulou</td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/19qrxglWmbiI8tBRGrgKzzPE5lmQZCBXz/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>14:30 - 15:00</td>
<td>Break into groups:<br>
<ol>
<li>Multimodal Integration using AI</li>
<li>Processing Pipelines</li>
<li>Disease Trajectories</li>
</ol>
</td>
<td></td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/1p8v0v3LarXoAsCOwLpAfIWNe1TBtPgiO/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>15:00-15:30</td>
<td>Regroup and Present Projects (5 minutes presentation and 5 minutes discussion each)</td>
</tr>
<tr>
<td>15:30-16:00</td>
<td>Summarise and Close: Focus on things that add value, Plan next steps for group/subgroups</td>
<td></td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/14jUClaD9P37FIKmFXKkrJfDYM_6i1cSB/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
</tbody>
</table>
<!-- Actions from Workshop 1 -->
<a class="agenda-btn" href="#" data-bs-toggle="modal" data-bs-target="#workshop-1-action"><i class="ri-play-fill"></i> <strong>Actions</strong></a>
<div id="workshop-1-action" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Actions from Workshop 1</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<ul>
<li>Develop a survey to identify brain imaging datasets at Southampton.</li>
<li>Develop a website for the single voxel group image processing stream.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Workshop 2 -->
<a name="workshop-2">
<h2 class="pt-4 pb-4">Workshop 2</h2>
<p>
<b>Date:</b> Friday 12 January, 2024 <br>
<b>Location:</b> LE30 (Level E), Southampton General Hospital [<a target="_blank"
href="https://drive.google.com/file/d/1C3N-K4sop_B2r6P-nsE9FJDPn2qwWOGd/view?usp=sharing">Directions</a>]
</p>
<p>
In this workshop, we will present the results of the <a target="_blank" href="https://forms.gle/pdvyYJDwqMuCPsmT9">survey</a> and discuss the available datasets. We will continue developing our workstreams, informed by a review of the available datasets, and options on data storage and sharing with short talks on XNAT and the Secure Data Environment.
</p>
<h3>Agenda</h3>
<table class="table table-light">
<thead>
<tr>
<th>Time</th>
<th>Topic</th>
<th>Speaker</th>
<th>Slides</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:30 – 10:45</td>
<td>Recap of last meeting, presentation of imaging datasets</td>
<td>Chris Kipps<br>Sofia Michopoulou</td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/1zCvjNZrI_e864eAyeaEOvdtdbZpqE_6B/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>10:45 – 11:00</td>
<td>XNAT Presentation</td>
<td>Katja Zilonova</td>
<td><a class="slides-btn" target="_blank"
href="https://drive.google.com/file/d/1kgcUTKMMf-eMqBU6POCIqywpQOCg1cFg/view?usp=sharing"><i
class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>11:00 – 11:15</td>
<td>Secure Data Environment Presentation</td>
<td>Chris Kipps</td>
<td><a class="slides-btn" target="_blank"
href="https://drive.google.com/file/d/1WK1keicCNgTnTByHQMr8vjPeJ9-Ijmpb/view?usp=sharing"><i
class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>11:15 – 11:45</td>
<td>Break out into workstreams, project development</td>
<td>All</td>
<td><a class="slides-btn" target="_blank"
href="https://drive.google.com/file/d/16V64JsezjAQBowP2EXt9IcZ8dEFfK0nc/view?usp=sharing"><i
class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>11:45 – 12:15</td>
<td>Regroup and discuss synergies between groups, planning for project delivery and funding</td>
<td>All</td>
</tr>
<tr>
<td>12:15 – 12:30</td>
<td>Wrap up, plans for next meeting, presentation of website</td>
<td>Chris Kipps<br>Sofia Michopoulou</td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/11gXGZ0oMdjvLMGa_LU0RvfRCQfWfF98U/view?usp=sharing"><i
class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
</tbody>
</table>
<!-- Actions from Workshop 2 -->
<a class="agenda-btn" href="#" data-bs-toggle="modal" data-bs-target="#workshop-2-action"><i class="ri-play-fill"></i>
<strong>Actions</strong></a>
<div id="workshop-2-action" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Actions from Workshop 2</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<ul>
<li>Invite members to the Teams channel that already estbalished on the UoS side.</li>
<li>Finalise database of datasets and share on the Teams channel.</li>
<li>Collate photos and bios and upload to website, also add iDEAC banner.</li>
<li>Discuss access to biobank data.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Workshop 3 -->
<a name="workshop-3">
<h2 class="pt-4 pb-4">Workshop 3</h2>
<p>
<b>Date:</b> Tuesday 4 June, 2024<br>
<b>Location:</b> LE30 (Level E), Southampton General Hospital [<a target="_blank"
href="https://drive.google.com/file/d/1C3N-K4sop_B2r6P-nsE9FJDPn2qwWOGd/view?usp=sharing">Directions</a>]
</p>
<p>
In this workshop, inspired from the lightning talks at the IDeAC network event
on 16 May 2024, we will do short introductions (3-5 minute presentations, with or without slides)
of our work / area of interest. We would use the lightning talks to do a mapping of interests,
with the aim to identify areas for further collaboration and future funding applications.
</p>
<h3>Agenda</h3>
<table class="table table-light">
<thead>
<tr>
<th>Time</th>
<th>Topic</th>
<th>Speaker</th>
<!-- <th>Slides</th> -->
</tr>
</thead>
<tbody>
<tr>
<td>14:00 – 14:15</td>
<td>Recap</td>
<td>Sofia Michopoulou</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<td>14:15 – 14:35</td>
<td>ReproNim</td>
<td>Yukai Zou</td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/1kNQToKAaV1S-Ho_JzexLQJHu2p4BCeTH/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>14:35 – 14:55</td>
<td>Multi-modality and multi-resolution topological image analysis</td>
<td>Ruben Sanchez-Garcia</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<td>14:55 – 16:00</td>
<td>Lightning talks and mapping</td>
<td>Various speakers</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<td>16:00 – 16:45</td>
<td>Identify project areas for future funding applications</td>
<td>All</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<td>16:45 - 17:00</td>
<td>Wrap up and plans for next workshop</td>
<td></td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
</tbody>
</table>
<!-- Actions from Workshop 3 -->
<a class="agenda-btn" href="#" data-bs-toggle="modal" data-bs-target="#workshop-3-action"><i class="ri-play-fill"></i> <strong>Actions</strong></a>
<div id="workshop-3-action" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Actions from Workshop 3</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<ul>
<li>Create a presentation template for Single Voxel Group members, so as to showcase the brand consitently across presentations and maintain a uniform presence on the website.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Workshop 4 -->
<a name="workshop-4">
<h2 class="pt-4 pb-4">Workshop 4</h2>
<p>
<b>Date:</b> Thursday 5 September, 2024<br>
<b>Location:</b> Buttercup room, Wellbeing Hub, Southampton General Hospital [<a target="_blank"
href="https://drive.google.com/file/d/1jhkoyqT_fTKy4T9xNkdC_cahYNT83CA_/view?usp=sharing">Location</a>]
</p>
<!-- <p></p> -->
<h3>Agenda</h3>
<table class="table table-light">
<thead>
<tr>
<th>Time</th>
<th>Topic</th>
<th>Speaker</th>
<th>Slides</th>
</tr>
</thead>
<tbody>
<tr>
<td>13:00 - 13:20</td>
<td>Recap</td>
<td>Sofia Michopoulou</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<td>13:20 - 14:00</td>
<td>Spatio-temporal modelling of disease progression</td>
<td>Niranjan Mahesan</td>
<td><a class="slides-btn" target="_blank" href="https://drive.google.com/file/d/18vCfo2oG1BeiPFXHHMZoSmkyZjAfeEKL/view?usp=sharing"><i class="ri-slideshow-2-fill h5"></i></a></td>
</tr>
<tr>
<td>14:00-14:40</td>
<td>Integration for data extraction and research data pipelines at the SETT centre</td>
<td>Cai Davis</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<td>14:40-15:10</td>
<td>Tea/coffee break</td>
</tr>
<tr>
<td>15:10-16:00</td>
<td>BRAIID disease trajectories</td>
<td>Dave Evenden</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<!-- <tr> -->
<!-- <td>14:45-15:00</td> -->
<!-- <td>BRAIN AI wrap up</td> -->
<!-- <td>Sofia Michopoulou</td> -->
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
<!-- </tr> -->
<!-- <tr> -->
<!-- <td>15:00-15:55</td> -->
<!-- <td>NIHR imaging research group & BRC imaging in neuro and beyond</td> -->
<!-- <td>Angela Darekar</td> -->
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
<!-- </tr> -->
<tr>
<td>16:00 - 16:05</td>
<td>Wrap up and plans for next meeting</td>
<td></td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
</tbody>
</table>
<!-- Actions from Workshop 4 -->
<a class="agenda-btn" href="#" data-bs-toggle="modal" data-bs-target="#workshop-4-action"><i class="ri-play-fill"></i> <strong>Actions</strong></a>
<div id="workshop-4-action" class="modal fade" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Actions from Workshop 4</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<ul>
<li>Due to meeting overrun, roll over some of the talks not presented at this meeting to the next workshop.</li>
<li>Invite additional members who would like to join.</li>
<li>(Optional) Inherit the Single Voxel Group <a target="_blank" href="https://docs.google.com/presentation/d/1aQmbZa1r0xooHbbnL8ERg-C4ZiOUg-Gi/edit?usp=sharing&ouid=117155765040566319388&rtpof=true&sd=true">template <i class="ri-external-link-line"></i></a> for future presentations.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Workshop 5 -->
<a name="workshop-5">
<h2 class="pt-4 pb-4">Workshop 5</h2>
<p>
<b>Date:</b> Thursday 5 December, 2024<br>
<b>Location:</b> Room 7013, Building 100, Highfield Campus, University of Southampton [<a target="_blank" href="http://id.southampton.ac.uk/room/100-7013">Map</a>]
</p>
<p>🎄 We aim to plan this meeting as a Christmas special in December at Highfield. 🎄<br> 🎁 Please get in contact to introduce people who would like to join! 🎁</p>
<h3>Tentative Agenda</h3>
<p>Please feel free to suggest ideas for the agenda.<br>
<b>(Optional) Presentation Template:</b> Please consider using the template <a target="_blank" href="https://docs.google.com/presentation/d/1aQmbZa1r0xooHbbnL8ERg-C4ZiOUg-Gi/edit?usp=sharing&ouid=117155765040566319388&rtpof=true&sd=true">here <i class="ri-external-link-line"></i></a>, to
showcase our brand consitently across presentations and help maintain
a uniform presence on our website.</p>
<table class="table table-light">
<thead>
<tr>
<!-- <th>Time</th> -->
<th>Topic</th>
<th>Speaker</th>
<!-- <th>Slides</th> -->
</tr>
</thead>
<tbody>
<tr>
<!-- <td>Time TBD</td> -->
<td>(Rolled over) BRAIN AI wrap up</td>
<td>Sofia Michopoulou</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
<tr>
<!-- <td>Time TBD</td> -->
<td>(Rolled over) NIHR imaging research group & BRC imaging in neuro and beyond</td>
<td>Angela Darekar</td>
<!-- <td><a class="slides-btn" target="_blank" href="#"><i class="ri-slideshow-2-fill h5"></i></a></td> -->
</tr>
</tbody>
</table>
</div>
</section>
<!-- End Agenda Section -->
<!-- ======= Features Section ======= -->
<!-- <section id="features" class="features">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="image col-lg-6" style='background-image: url("assets/img/features.jpg");' data-aos="fade-right"></div>
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="100">
<div class="icon-box mt-5 mt-lg-0" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-receipt"></i>
<h4>Est labore ad</h4>
<p>Consequuntur sunt aut quasi enim aliquam quae harum pariatur laboris nisi ut aliquip</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-cube-alt"></i>
<h4>Harum esse qui</h4>
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-images"></i>
<h4>Aut occaecati</h4>
<p>Aut suscipit aut cum nemo deleniti aut omnis. Doloribus ut maiores omnis facere</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-shield"></i>
<h4>Beatae veritatis</h4>
<p>Expedita veritatis consequuntur nihil tempore laudantium vitae denat pacta</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Features Section -->
<!-- ======= Portfolio Section ======= -->
<!-- End Portfolio Section -->
<!-- ======= Counts Section ======= -->
<!-- End Counts Section -->
<!-- ======= Testimonials Section ======= -->
<!-- End Testimonials Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="text-center">
<h3>Call To Action</h3>
<p>Please fill in this survey to help us make a start on populating a database of current and previous studies at Southampton that include brain imaging data.
</p>
<a class="cta-btn" href="https://forms.gle/faWprAS6b5cQ8YQQ8">Take the Survey</a>
</div>
</div>
</section>
<!-- End Cta Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
<p>Contact Us</p>
</div>
<div>
<!-- Google Maps Embed API: https://developers.google.com/maps/documentation/embed/quickstart -->
<iframe style="border:0; width: 100%; height: 270px;" src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJe2yBpet1dEgR20wsbD0Opmg&key=AIzaSyBes-HTQONzRIWc3IsO3c4CzfSoxlVOwww" frameborder="0" allowfullscreen></iframe>
</div>
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<!-- Mailpoint 29 Minerva House, Southampton General Hospital, SO16 6YD, Southampton, UK -->
<p>Mailpoint 29<br>
Minerva House<br>
Southampton General Hospital<br>
Tremona Road<br>
Southampton SO16 6YD<br>
United Kingdom</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>singlevoxelgroup_imageprocessing@uhs.nhs.uk</p>
</div>
<!-- <div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+1 5589 55488 55</p>
</div> -->
</div>
</div>
</div>
</div>
</section><!-- End Contact Section -->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients">
<div class="container">
<div class="section-title">
<h2>Acknowledgement</h2>
<p>Our Partners</p>
</div>
<div class="row gap-5">
<div class="col">
<a target="_blank" href="https://uhs.nhs.uk">
<img src="assets/img/logos/UHS-Logo.webp" class="img-fluid" alt="University Hospital Southampton">
</a>
</div>
<div class="col">
<a target="_blank" href="https://southampton.ac.uk">
<img src="assets/img/logos/UoS-new-logo-590.png" class="img-fluid" alt="University of Southampton">
</a>
</div>
<div class="col">
<a target="_blank" href="https://repronim.org">
<img src="assets/img/logos/repronim-logo-512.png" class="img-fluid" alt="ReproNim: A Center for Reproducible Neuroimaging Computation">
</a>
</div>
<div class="col">
<a target="_blank" href="https://ideac.org">
<img src="assets/img/logos/iDeAC-Logo-2021.png" class="img-fluid" alt="Interdisciplinary Dementia and Ageing Centre">
</a>
</div>
</div>
</div>
</section>
<!-- End Clients Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<div class="copyright">
Copyright © <strong><a href="https://github.com/sotnir">SOTNIR</a></strong> 2023-2024
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/ -->
<ul class="list-inline">
<li>Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a></li>
<li>Site <a href="https://github.com/sotnir/svg">source</a></li>
</ul>
</div>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>