-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2313 lines (1941 loc) · 86.7 KB
/
index.html
File metadata and controls
2313 lines (1941 loc) · 86.7 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
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 lang="en">
<head>
<meta name="generator" content="Hugo 0.160.1">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>MRinRT 2026</title>
<meta
content="Explore the exciting integration of MRI in radiotherapy at our scientific symposium, where experts from diverse fields will discuss advancements and developments in radiation oncology."
name="description">
<meta content="scientific symposium, MRI, magnetic resonance, healthcare innovation, radiation oncology, radiotherapy"
name="keywords">
<link href="/assets/img/favicon.ico" rel="icon">
<link href="/assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
<link href="/assets/vendor/aos/aos.css" rel="stylesheet">
<link href="/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link href="/assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="/assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link href="/assets/css/style.css" rel="stylesheet">
</head>
<body class="page">
<header id="header" class="d-flex align-items-center " >
<div class="container-fluid container-xxl d-flex align-items-center">
<div id="logo" class="me-auto">
<a href="/" class="scrollto"><img src="/assets/img/Logo-RGB-Dark-BG.svg" width="100%"></a>
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto" href="/#about">About</a></li>
<li><a class="nav-link scrollto" href="/#schedule">Program</a></li>
<li><a class="nav-link scrollto" href="/#venue">Venue</a></li>
<li><a class="nav-link scrollto" href="/#hotels">Hotels</a></li>
<li><a class="nav-link scrollto" href="/#supporters">Sponsors</a></li>
<li><a class="nav-link scrollto" href="/#committee">Committee</a></li>
<li><a class="nav-link" href="/abstracts/">Abstract Submission</a></li>
<li><a class="nav-link " href="/news">News</a></li>
<li><a class="nav-link" href="/forauthors/">For Authors</a></li>
<li class="dropdown"><a href="#"><span>Archive</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="/archive">MRinRT 2025</a></li>
</ul>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<a class="buy-tickets" href="/register">Register</a>
</div>
</header>
<section id="hero">
<div class="hero-container" data-aos="zoom-in" data-aos-delay="100">
<div class="row justify-content-center mb-5 img-logo" style="width: 100%;">
<div class="col-1 col-lg-3 img-logo"></div>
<div class="col-10 col-lg-6 text-center px-2 imgpulse img-logo">
<img src="/assets/img/Logo-RGB-Dark-BG.svg"
style="max-height: 180px; max-width: 100%; filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.8));"
class="">
</div>
<div class="col-1 col-lg-3 img-logo"></div>
</div>
<h2 class="pb-0" style="text-transform: none; color: #ffffff;">12<sup>th</sup> Annual Symposium on<br>Magnetic Resonance in
Radiation Therapy </h2>
<h2 class="pb-0" style="text-transform: none; color: #018DF9; font-style: italic;">Status, Challenges & Opportunities </h2>
<h1 class="pb-0">June 17-19 2026, Odense, Denmark</h1>
<div class="col-auto">
<a href="#about" class="about-btn scrollto">Learn More<i class="bi bi-chevron-double-down ms-2"></i></a>
</div>
</div>
</div>
</section>
<main id="main">
<section id="about">
<div class="container position-relative" data-aos="fade-up">
<section id="endorsers">
<div class="section-header" style="margin-bottom: 50px;">
<h2>Endorsed by</h2>
</div>
<div class="d-flex flex-row flex-wrap justify-content-center no-gutters endorsers-wrap clearfix"
data-aos="zoom-in" data-aos-delay="100">
<div class="endorsers-logo" style="background-color: white;">
<a href="https://www.estro.org/" target="_blank"><img src="assets/img/supporters/estro_logo.jpg" class="img-fluid" alt=""></a>
</div>
<div class="endorsers-logo" style="background-color: white;">
<a href="https://www.straaleterapi.dk/" target="_blank"><img src="assets/img/supporters/dccc.jpg" class="img-fluid" alt=""></a>
</div>
<div class="endorsers-logo" style="background-color: white;">
<a href="https://dsmf.org/" target="_blank"><img src="assets/img/supporters/dsmf_logo.png" style="padding: 10px;" class="img-fluid" alt=""></a>
</div>
<div class="endorsers-logo" style="background-color: white;">
<a href="https://dsmmr.dk/" target="_blank"><img src="assets/img/supporters/DSMMRlogo.png" class="img-fluid" alt=""></a>
</div>
<div class="endorsers-logo" style="background-color: white;">
<a href="https://faro.asia/" target="_blank"><img src="assets/img/supporters/FARO_Logo.jpg" style="padding: 10px;" class="img-fluid" alt=""></a>
</div>
</div>
</section>
<div class="row" style="margin-top: 40px;">
<div class="col-lg-7 col-md-7 col-sm-12" style="margin-bottom: 30px;">
<h2>MR<span style="color: #018DF9;">in</span>RT 2026</h2>
<p style="text-align: justify; margin-top: 20px;" class="about-text">
MRinRT 2026 is a three-day, single-track international symposium dedicated to advancing the integration of magnetic resonance imaging (MRI) in radiotherapy.
The meeting will take place in Odense, Denmark, bringing together researchers, radiotherapy professionals,
and industry partners to share the latest developments, challenges, and future directions in MRI-guided and MRI-informed radiotherapy.
The symposium will feature a focused programme of invited lectures, proffered papers, poster-pitch and poster viewing,
young investigator award and panel discussions, highlighting both clinical implementation and cutting-edge research in
areas such as adaptive MRI-guided radiotherapy, quantitative and functional MRI, AI-driven workflows, and biological image guidance.
This year, the International Society for Magnetic Resonance in Medicine (ISMRM) has been invited to join the scientific committee
and has contributed to the development of the programme to foster collaboration between the radiotherapy and MRI communities.
MRinRT 2026 aims to accelerate translation of MRI innovations into clinical practice, ultimately improving precision, personalization,
and outcomes in cancer treatment.
</p>
</div>
<div class="col-lg-5 col-md-5 col-sm-12">
<div class="mb-3 d-flex flex-row flex-wrap justify-content-between">
<div class="mb-3" style="margin-right: 80px;">
<h2>When</h2>
<p>June 17 - 19, 2026</p>
</div>
<div class="">
<h2>Where</h2>
<p>
Comwell H.C. Andersen<br>
Claus Bergs Gade 9<br>
Odense 5000, Denmark
</p>
</div>
</div>
<div class="row">
<h2>Deadlines</h2>
<ul style="padding-left: 1.7rem; font-size: 18px;">
<li>Abstract Submission: <span style="font-weight: 700;">January 22, 2026</span></li>
<li>Registration Closing: <span style="font-weight: 700;">April 30, 2026</span></li>
</ul>
</div>
<div class="row">
<h2>News</h2>
<ul style="padding-left: 1.7rem; font-size: 18px; margin-bottom: 0px;">
<li><a href="/news/registration_reminder/" class="title newslink">IMPORTANT: Remember to Register!</a></li>
</ul>
<ul style="padding-left: 1.7rem; font-size: 18px; margin-bottom: 0px;">
<li><a href="/news/registration_is_open/" class="title newslink">Registration is Now Open</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="schedule" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Program</h2>
</div>
<ul class="nav nav-tabs program_list" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-bs-toggle="tab">JUN 17</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-bs-toggle="tab">JUN 18</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-3" role="tab" data-bs-toggle="tab">JUN 19</a>
</li>
</ul>
<div class="tab-content row justify-content-center mt-5 mb-4" data-aos="fade-up" data-aos-delay="200">
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<h2 class="sub-heading" style="font-weight: 600; margin-bottom: 20px;">Wednesday, 17th of June</h2>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
<div class="col-md-2 schedule-time">8.00 - 8.45</div>
<div class="col-md-8 schedule-item">
<h4>Opening and Welcome</h4>
</div>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTwo" aria-expanded="false" aria-controls="flush-collapseTwo">
<div class="col-md-2 schedule-time">8.45 - 9.30</div>
<div class="col-md-8 schedule-item">
<h4>Keynote: The Clinical Evidence for MRI in Radiotherapy</h4>
</div>
</button>
</h2>
<div id="flush-collapseTwo" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<ul style="margin-bottom: 0;">
<li>
<div class="row mb-3">
<div class="col-md-3 col-sm-12">Uulke van der Heide</div>
<div class="col-md-9 col-sm-12"><em>Netherlands Cancer Institute, Amsterdam, The Netherlands</em></div>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseThree" aria-expanded="false" aria-controls="flush-collapseThree">
<div class="col-md-2 schedule-time">9.30 - 10.00</div>
<div class="col-md-8 schedule-item">
<h4>Coffee Break</h4>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFour" aria-expanded="false" aria-controls="flush-collapseFour">
<div class="col-md-2 schedule-time">10.00 - 11.30</div>
<div class="col-md-8 schedule-item">
<h4>State of the art solutions for MRI-guided RT</h4>
</div>
</button>
</h2>
<div id="flush-collapseFour" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator(s): Simeon Nill </em></div>
<ul style="margin-bottom: 0; margin-bottom: 25px;">
<li>
<div class="col-md-12 col-sm-12" style="color: #0e1b4d;"><strong>Offline MRI-guided RT</strong></div>
<div class="row">
<div class="col-md-3 col-sm-6">Neelam Tyagi</div>
<div class="col-md-9 mb-3"><em>Memorial Sloan Kettering Cancer Center, New York, NY, USA </em></div>
</div>
</li>
<li>
<div class="col-md-12 col-sm-12" style="color: #0e1b4d;"><strong>Online MRI-guided RT</strong></div>
<div class="row">
<div class="col-md-3 col-sm-6">Sebastian Klüter</div>
<div class="col-md-9 mb-3"><em>Heidelberg University Hospital, Heidelberg, Germany</em></div>
</div>
</li>
</ul>
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Proffered papers:</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:50</td>
<td>Teaching an old dog new tricks: developing customized RF coils for radiation therapy MR simulation — considerations and experiences.</td>
<td>Kiaran McGee</td>
<td>27</td>
</tr>
<tr>
<td>11:00</td>
<td>Metal artifact reduction for 3T MRI-only prostate radiotherapy with hip prostheses: target definition, synthetic CT and fiducial marker identification</td>
<td>Mizgin Coskun</td>
<td>36</td>
</tr>
<tr>
<td>11:10</td>
<td>Treating intermediate-risk prostate cancer with no prior patient-specific imaging using online adaptive MRI-guided radiotherapy</td>
<td>Søren Agergaard</td>
<td>91</td>
</tr>
<tr>
<td>11:20</td>
<td>Automation enables efficient MRI-enhanced online adaptive RT on a conventional C-arm linac</td>
<td>Hubert Gabrys</td>
<td>87</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFive" aria-expanded="false" aria-controls="flush-collapseFive">
<div class="col-md-2 schedule-time">11.30 - 11.45</div>
<div class="col-md-8 schedule-item">
<h4>Coffee Break</h4>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseSix" aria-expanded="false" aria-controls="flush-collapseSix">
<div class="col-md-2 schedule-time">11.45 - 12.45</div>
<div class="col-md-8 schedule-item">
<h4>Technical and physics innovations</h4>
</button>
</h2>
<div id="flush-collapseSix" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator: Uffe Bernchou and Teodor Stanescu</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>11:45</td>
<td>Plan quality reporting for single-fraction, stereotactic MR-guided adaptive radiotherapy</td>
<td>Kathryn Mittauer</td>
<td>70</td>
</tr>
<tr>
<td>11:55</td>
<td>Treatment efficiency and dosimetric benefit of intrafraction motion management during MRI-guided SBRT for liver tumors</td>
<td>Thomas Willigenburg</td>
<td>6</td>
</tr>
<tr>
<td>12:05</td>
<td>MRI Toolkit for 0.35 T MR-Linac Adaptive Workflows: Toward Robust Quantitative Biomarkers for dose painting</td>
<td>Matteo Nardini</td>
<td>69</td>
</tr>
<tr>
<td>12:15</td>
<td>Target-driven acquisition and super-resolution reconstruction for simultaneous cine imaging and 4D-MRI</td>
<td>Nikolai Mickevicius</td>
<td>100</td>
</tr>
<tr>
<td>12:25</td>
<td>Deformable Dose Accumulation Variability Analysis in Localized Pancreatic Cancer Treated with MR-Guided Adaptive Radiotherapy</td>
<td>Nicolas Cote</td>
<td>95</td>
</tr>
<tr>
<td>12:35</td>
<td>Motion management application in two-fraction prostate radiotherapy: initial DESTINATION 2 trial experience</td>
<td>Robert Adam Mitchell</td>
<td>68</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseSeven" aria-expanded="false" aria-controls="flush-collapseSeven">
<div class="col-md-2 schedule-time">12.45 - 13.45</div>
<div class="col-md-8 schedule-item">
<h4>Lunch</h4>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseEight" aria-expanded="false" aria-controls="flush-collapseEight">
<div class="col-md-2 schedule-time">13.45 - 15.00</div>
<div class="col-md-8 schedule-item">
<h4>Clinical trials 1</h4>
</div>
</button>
</h2>
<div id="flush-collapseEight" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator(s): Stefanie Corradini </em></div>
<ul style="margin-bottom: 0; margin-bottom: 25px;">
<li>
<div class="col-md-12 col-sm-12" style="color: #0e1b4d;"><strong>Clinical Trials - Why they are important, what to consider and how to design </strong></div>
<div class="row">
<div class="col-md-3 col-sm-6">Søren Bentzen</div>
<div class="col-md-9 mb-3"><em>University of Maryland School of Medicine Baltimore, Maryland, USA</em></div>
</div>
</li>
</ul>
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Proffered papers:</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>14:20</td>
<td>MR-image-guided adaptive interventional radiotherapy boost for vaginal recurrences</td>
<td>Valentina Lancellota</td>
<td>49</td>
</tr>
<tr>
<td>14:30</td>
<td>Adaptive MRI-guided Stereotactic Body Radiation Therapy for pancreatic cancer: Clinical outcomes in a prospective cohort</td>
<td>Pia Hartfelt</td>
<td>11</td>
</tr>
<tr>
<td>14:40</td>
<td>MR-guided ultra-hypofractionated radiotherapy with real-time motion management for early-stage glottic cancer patients</td>
<td>Sabine Linden</td>
<td>83</td>
</tr>
<tr>
<td>14:50</td>
<td>Clinical Outcomes of MRI-guided Pelvic Reirradiation in Previously Irradiated Locally Recurrent Rectal Cancer</td>
<td>Angela Romano</td>
<td>65</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseNine" aria-expanded="false" aria-controls="flush-collapseNine">
<div class="col-md-2 schedule-time">15.00 - 15.15</div>
<div class="col-md-8 schedule-item">
<h4>Coffee Break</h4>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTen" aria-expanded="false" aria-controls="flush-collapseTen">
<div class="col-md-2 schedule-time">15.15 - 16.30</div>
<div class="col-md-8 schedule-item">
<h4>AI-based workflow improvements</h4>
</div>
</button>
</h2>
<div id="flush-collapseTen" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator(s): Tufve Nyholm </em></div>
<ul style="margin-bottom: 0; margin-bottom: 25px;">
<li>
<div class="col-md-12 col-sm-12" style="color: #0e1b4d;"><strong>AI for radiation therapy </strong></div>
<div class="row">
<div class="col-md-3 col-sm-6">Lorenzo Placidi</div>
<div class="col-md-9 mb-3"><em>Fondazione Policlinico Universitario A. Gemelli IRCCS, Rome, Italy</em></div>
</div>
</li>
</ul>
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Proffered papers:</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>15:40</td>
<td>From motion to dose: Dosimetric evaluation of motion-based margins using AI-predicted dose in MR-Linac adaptive workflows</td>
<td>Nina Tilly</td>
<td>97</td>
</tr>
<tr>
<td>15:50</td>
<td>Catching MRI outliers: unsupervised detection and localization of MRI artefacts and clinical anomalies using deep learning</td>
<td>Musti Kadhim</td>
<td>5</td>
</tr>
<tr>
<td>16:00</td>
<td>Eliminating synthetic CT? Fast AI dose calculation directly on MRI</td>
<td>Nikolaos Delopoulos</td>
<td>17</td>
</tr>
<tr>
<td>16:10</td>
<td>AI-based organ segmentation to streamline MRI-guided adaptive radiotherapy for locally advanced pancreatic cancer</td>
<td>Elisabeth Kildegaard</td>
<td>23</td>
</tr>
<tr>
<td>16:20</td>
<td>Predictors of Treatment Plan Adaptation in Radiation Therapy for Pancreatic Cancer</td>
<td>Anil Sethi</td>
<td>103</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseEleven" aria-expanded="false" aria-controls="flush-collapseEleven">
<div class="col-md-2 schedule-time">16.30 - 16.45</div>
<div class="col-md-8 schedule-item">
<h4>Coffee Break</h4>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTwelve" aria-expanded="false" aria-controls="flush-collapseTwelve">
<div class="col-md-2 schedule-time">16.45 - 18.00</div>
<div class="col-md-8 schedule-item">
<h4>Young investigator award presentations</h4>
</div>
</button>
</h2>
<div id="flush-collapseTwelve" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator: James Balter and Faisal Mahmood</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>16:45</td>
<td>AI-empowered Four-dimensional Magnetic Resonance Fingerprinting (AIE-4DMRF) for Accurate and Efficient Liver Cancer Radiotherapy Motion Management</td>
<td>Chenyang LIU</td>
<td>44</td>
</tr>
<tr>
<td>16:55</td>
<td>Repeatability coefficient thresholding for voxelwise qMRI treatment response in head and neck cancer</td>
<td>Ryan Bonate</td>
<td>86</td>
</tr>
<tr>
<td>17:05</td>
<td>Microstructural Assessment of Oral Squamous Cell Carcinoma Using Time-Dependent Diffusion MRI</td>
<td>Jamila Guichelaar</td>
<td>24</td>
</tr>
<tr>
<td>17:15</td>
<td>Diffusion-MRI hypoxia mapping with distortion correction in head and neck cancer radiotherapy</td>
<td>Minoo Gandomi</td>
<td>13</td>
</tr>
<tr>
<td>17:25</td>
<td>Motion-Corrected Multimodality MRF for Pseudo-CT Generation: A Feasibility Study in Abdominal Radiotherapy</td>
<td>Yimin Ni</td>
<td>7</td>
</tr>
<tr>
<td>17:35</td>
<td>Low cost, high reward: real-time motion management for pancreatic tumors on the 1.5 T MR-Linac</td>
<td>Bloem van Dam</td>
<td>15</td>
</tr>
<tr>
<td>17:45</td>
<td>Multi-contrast conditional organs-at-risk segmentation for online adaptive MR-guided radiotherapy of pancreatic cancer</td>
<td>Mehdi Shojaei</td>
<td>98</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseThirteen" aria-expanded="false" aria-controls="flush-collapseThirteen">
<div class="col-md-2 schedule-time">18.30 -</div>
<div class="col-md-8 schedule-item">
<h4>Social event and symposium reception (drinks and finger food)</h4>
</div>
</button>
</h2>
</div>
</div>
<div class="d-flex justify-content-center" style="margin-top: 40px;">
<a class="blue-btn" href="/assets/img/program-schedule/program-schedule.pdf"
target="_blank"><i class="fa fa-download"></i> Download Program Schedule</a>
</div>
</div>
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<h2 class="sub-heading" style="font-weight: 600; margin-bottom: 20px;">Tuesday, 18th of June</h2>
<div class="accordion accordion-flush" id="accordionFlushExample2">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFourteen" aria-expanded="false" aria-controls="flush-collapseFourteen">
<div class="col-md-2 schedule-time">08.30 - 09.50</div>
<div class="col-md-8 schedule-item">
<h4>MRI for Biological Guidance in Radiation Therapy</h4>
</div>
</button>
</h2>
<div id="flush-collapseFourteen" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator(s): Rasmus Hvass Hansen </em></div>
<ul style="margin-bottom: 0; margin-bottom: 25px;">
<li>
<div class="col-md-12 col-sm-12" style="color: #0e1b4d;"><strong>MRI biomarkers for radiation therapy</strong></div>
<div class="row">
<div class="col-md-3 col-sm-6">Lars Olsson</div>
<div class="col-md-9 mb-3"><em>Lund University, Lund, Sweden</em></div>
</div>
</li>
</ul>
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator: TBD</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>09:10</td>
<td>Mathematical modeling of MRI-based tumor habitats during radiotherapy in a murine model of glioma</td>
<td>Ayesha Das</td>
<td>4</td>
</tr>
<tr>
<td>09:20</td>
<td>Multi-institutional in-vivo characterization of consensus measurement methods for T1 and T2 mapping on the 1.5T Unity MR-linac</td>
<td>Erik van der Bijl</td>
<td>54</td>
</tr>
<tr>
<td>09:30</td>
<td>Evaluation of the Combined Effects of Magnetic Field and Radiotherapy on Patient-Derived Pancreatic Ductal Adenocarcinoma Organoids</td>
<td>Carlo Guglielmo Cattaneo</td>
<td>30</td>
</tr>
<tr>
<td>09:40</td>
<td>Longitudinal ADC changes on a 0.35 T MR-Linac during rectal cancer MRI-guided radiotherapy</td>
<td>Matteo Nardini</td>
<td>66</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFifteen" aria-expanded="false" aria-controls="flush-collapseFifteen">
<div class="col-md-2 schedule-time">9.50 - 10.15</div>
<div class="col-md-8 schedule-item">
<h4>Coffee Break</h4>
</div>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseSixteen" aria-expanded="false" aria-controls="flush-collapseSixteen">
<div class="col-md-2 schedule-time">10.15 - 11.05</div>
<div class="col-md-8 schedule-item">
<h4>Quantitative MRI 1: Clinical and Physics Applications </h4>
</div>
</button>
</h2>
<div id="flush-collapseSixteen" class="accordion-collapse collapse" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator: TBD</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:15</td>
<td>Prognostic value of diffusion-weighted MRI and clinical parameters in prediction of overall survival after SBRT in patients with pancreatic cancer</td>
<td>Anne Bisgaard</td>
<td>25</td>
</tr>
<tr>
<td>10:25</td>
<td>Spatiotemporal Deep Learning for Early Prediction of Glioblastoma Response Using 1.5T MR-Linac Imaging</td>
<td>Edoardo Salmeri</td>
<td>14</td>
</tr>
<tr>
<td>10:35</td>
<td>Multiparametric MRI–Based Habitat Imaging for Risk Stratification and Survival Prediction in Head and Neck Tumors</td>
<td>Walid Dandachly</td>
<td>20</td>
</tr>
<tr>
<td>10:45</td>
<td>Prospective study on response assessment during MR-guided RT for glioblastoma – first results from the MARGA-I-study</td>
<td>Lena Kretzschmar</td>
<td>39</td>
</tr>
<tr>
<td>10:55</td>
<td>Development and validation of MRI biomarkers of liver function radiation response for functional-guided liver SBRT</td>
<td>Sirisha Tadimalla</td>
<td>79</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseSeventeen" aria-expanded="false" aria-controls="flush-collapseSeventeen">
<div class="col-md-2 schedule-time">11.05 - 11.20</div>
<div class="col-md-8 schedule-item">
<h4>Coffee Break</h4>
</div>
</button>
</h2>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseEighteen" aria-expanded="false" aria-controls="flush-collapseEighteen">
<div class="col-md-2 schedule-time">11.20 - 12.45</div>
<div class="col-md-8 schedule-item">
<h4>Advancements in motion management</h4>
</div>
</button>
</h2>
<div id="flush-collapseEighteen" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator(s): TBD </em></div>
<ul style="margin-bottom: 0; margin-bottom: 25px;">
<li>
<div class="col-md-12 col-sm-12" style="color: #0e1b4d;"><strong>Basics of MRI and motion management</strong></div>
<div class="row">
<div class="col-md-3 col-sm-6">Jie Deng</div>
<div class="col-md-9 mb-3"><em>UT Southwestern Medical Center, Dallas, USA</em></div>
</div>
</li>
</ul>
<div style="margin-left: 0.9em; margin-bottom: 10px;"><em>Moderator: TBD</em></div>
<div class="table-responsive" style="padding-left: 15px; padding-right: 15px;">
<table class="table table-striped" style="width: 100%; max-width: 100%;">
<thead>
<tr>
<th>Time</th>
<th>Title</th>
<th>Name</th>
<th>Abstract</th>
</tr>
</thead>
<tbody>
<tr>
<td>11:45</td>
<td>Toward augmented reality-driven, MR-guided interstitial brachytherapy with active tracking</td>
<td>Eric Paulson</td>
<td>88</td>
</tr>
<tr>
<td>11:55</td>
<td>4D motion propagation from orthogonal cine MRI for time-resolved volumetric imaging in MR-guided radiotherapy</td>
<td>Yuqing Xiong</td>
<td>72</td>
</tr>
<tr>
<td>12:05</td>
<td>GUIDING-U trial: Effect of audio-visual breathing guidance on improving scan efficiency for respiratory-correlated abdominal and thoracic MRI</td>
<td>Frédérique van Gameren</td>
<td>67</td>
</tr>
<tr>
<td>12:15</td>
<td>Comparison of pilot tone- and self-navigated stack-of-stars 4D-MRI</td>
<td>Nikolai Mickevicius</td>
<td>90</td>
</tr>
<tr>
<td>12:25</td>
<td>Feasibility of ADC-based intrafraction biological target tracking for MR-guided radiotherapy</td>
<td>Eric Paulson</td>
<td>101</td>
</tr>
<tr>
<td>12:35</td>
<td>More Contrast, Less artifacts: Redefining cine MRI for abdominal and esophageal treatments in the MR-Linac workflow</td>
<td>Lieke Meijers</td>
<td>52</td>
</tr>
</tbody>
</table>