-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupervision.html
More file actions
596 lines (516 loc) · 32.1 KB
/
Copy pathsupervision.html
File metadata and controls
596 lines (516 loc) · 32.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Supervision - Dr. Christopher Clarke</title>
<meta name="description" content="Supervision and research opportunities with Dr. Christopher Clarke at University of Bath.">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="img/favicon.ico" type="image/ico">
<style>
/* Additional styles for supervision page */
.supervision-intro {
background: rgba(50, 130, 184, 0.05);
padding: var(--spacing-md);
border-left: 4px solid var(--color-accent);
border-radius: 0 8px 8px 0;
margin-bottom: var(--spacing-lg);
}
.student-item {
padding: var(--spacing-md);
margin-bottom: var(--spacing-md);
border-left: 3px solid var(--color-light);
background: rgba(187, 225, 250, 0.03);
border-radius: 0 6px 6px 0;
transition: all 0.3s ease;
display: flex;
gap: var(--spacing-md);
align-items: flex-start;
}
.student-avatar {
flex-shrink: 0;
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-light), var(--color-accent));
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.student-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.student-avatar svg {
width: 50px;
height: 50px;
fill: white;
}
.student-info {
flex: 1;
}
.student-item:hover {
border-left-color: var(--color-accent);
background: rgba(187, 225, 250, 0.08);
transform: translateX(3px);
}
.student-name {
font-weight: 600;
font-size: 1.05rem;
color: var(--color-primary);
margin-bottom: 0.5rem;
}
.student-topic {
color: var(--color-secondary);
font-weight: 500;
font-size: 0.95rem;
margin-bottom: 0.3rem;
}
.graduated {
color: var(--color-text-light);
font-style: italic;
font-size: 0.9rem;
}
.student-item p {
margin: 0;
font-size: 0.95rem;
color: var(--color-text);
}
.opportunities-box {
background: linear-gradient(135deg, rgba(50, 130, 184, 0.1), rgba(187, 225, 250, 0.1));
border: 2px solid var(--color-accent);
border-radius: 8px;
padding: var(--spacing-lg);
margin-top: var(--spacing-lg);
margin-bottom: var(--spacing-lg);
}
.opportunities-box h3 {
color: var(--color-secondary);
margin-top: 0;
}
.research-topics {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-md);
margin: var(--spacing-md) 0;
}
.topic-card {
padding: var(--spacing-md);
background: white;
border: 1px solid var(--color-border);
border-radius: 8px;
transition: all 0.3s ease;
}
.topic-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
border-color: var(--color-accent);
}
.topic-card h4 {
color: var(--color-secondary);
font-weight: 600;
margin-bottom: var(--spacing-xs);
font-size: 1.05rem;
}
.topic-card p {
font-size: 0.95rem;
color: var(--color-text-light);
margin: 0;
}
.cta-button {
display: inline-block;
margin-top: var(--spacing-md);
padding: 0.8rem 1.5rem;
background: var(--color-accent);
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
transition: all 0.3s ease;
}
.cta-button:hover {
background: var(--color-secondary);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(15, 76, 117, 0.3);
text-decoration: none;
}
/* Supervision Page Submenu */
.supervision-submenu {
position: sticky;
top: 65px;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--color-border);
z-index: 999;
padding: var(--spacing-sm) 0;
margin-bottom: var(--spacing-lg);
}
.submenu-container {
max-width: var(--content-width);
margin: 0 auto;
padding: 0 var(--spacing-md);
}
.submenu-links {
display: flex;
gap: var(--spacing-md);
list-style: none;
flex-wrap: wrap;
justify-content: center;
}
.submenu-links a {
color: var(--color-text);
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
padding: 0.5rem 1rem;
border-radius: 20px;
transition: all 0.3s ease;
border: 1px solid transparent;
}
.submenu-links a:hover {
color: var(--color-accent);
background: rgba(50, 130, 184, 0.05);
border-color: var(--color-accent);
}
.submenu-links a.active {
background: var(--color-accent);
color: white;
border-color: var(--color-accent);
}
@media (max-width: 768px) {
.supervision-submenu {
top: 60px;
}
.submenu-links {
gap: 0.5rem;
}
.submenu-links a {
font-size: 0.85rem;
padding: 0.4rem 0.8rem;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav id="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">Christopher Clarke</a>
<div class="menu-toggle" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links" id="navLinks">
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="supervision.html" class="active">Supervision</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
</nav>
<!-- Supervision Content -->
<div style="margin-top: 80px;"></div>
<!-- Supervision Submenu -->
<div class="supervision-submenu" id="supervisionSubmenu">
<div class="submenu-container">
<ul class="submenu-links">
<li><a href="#opportunities">PhD Opportunities</a></li>
<li><a href="#current-students">Current Students</a></li>
<li><a href="#graduated-students">Graduated Students</a></li>
<li><a href="#student-projects">Student Projects</a></li>
</ul>
</div>
</div>
<section id="supervision-header">
<h2>Supervision</h2>
<div class="supervision-intro">
<p>I am very lucky to work with amazing PhD students and co-supervisors across a range of topics. Below you'll find information about current and past students, as well as opportunities for prospective PhD candidates.</p>
</div>
</section>
<!-- PhD Opportunities Section (moved to top) -->
<section id="opportunities">
<div class="opportunities-box">
<h3>Interested in Pursuing a PhD?</h3>
<p>
I welcome inquiries from prospective PhD students interested in human-computer interaction, ubiquitous computing, novel input techniques, AR/VR, wearable computing, and digital health applications.
</p>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">Funding Opportunities</h4>
<p>
We advertise funded opportunities on <a href="https://www.findaphd.com/phds/united-kingdom/human-computer-interaction/university-of-bath/?n0M7g2w1zM40">FindAPhD</a>, but there are always other opportunities for excellent students. Funding sources include:
</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>University of Bath PhD Scholarships</li>
<li>UKRI Doctoral Training Partnerships</li>
<li>Industry-sponsored PhDs</li>
<li>International scholarship schemes</li>
<li>Self-funded opportunities</li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">How to Apply</h4>
<p>
If you're interested in pursuing a PhD in these areas, please email me with:
</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Your research interests and why you want to work with me</li>
<li>Your CV including academic qualifications and any relevant experience</li>
<li>Any relevant publications, projects, or portfolio work</li>
<li>Your preferred start date and funding situation</li>
</ul>
<a href="index.html#contact" class="cta-button">Get in Touch About PhD Opportunities</a>
</div>
</section>
<section id="supervision">
<h3 id="current-students">Current PhD Students</h3>
<div class="student-item">
<div class="student-avatar">
<img src="img/james-whiffing.jpg" alt="James Whiffing" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/james-whiffing">James Whiffing</a></div>
<div class="student-topic">"Variability in Cursorless Freehand Pointing"</div>
<p>Supervised with <a href="https://www.au.dk/en/tobias.langlotz@cs.au.dk">Prof. Tobias Langlotz</a>, <a href="https://www.adwaitsharma.com/">Dr. Adwait Sharma</a>, and <a href="http://lutteroth.me/">Dr. Christof Lutteroth</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/lauren-pococke.jpg" alt="Lauren Pococke" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/lauren-pococke">Lauren Pococke</a></div>
<div class="student-topic">"Improving the Accessibility of Freehand Gesture Interaction in Virtual Reality for Users with Upper Limb Motor Impairments"</div>
<p>Supervised with <a href="http://lutteroth.me/">Dr. Christof Lutteroth</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/greg-knowles.jpg" alt="Greg Knowles" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://cdt-art-ai.ac.uk/students/greg-knowles/">Greg Knowles</a></div>
<div class="student-topic">"AI-based mobility monitoring of axial spondyloarthritis patients using wearable sensors"</div>
<p>Supervised with <a href="https://researchportal.bath.ac.uk/en/persons/benjamin-metcalfe">Dr. Benjamin Metcalfe</a> and <a href="https://www.ruh.nhs.uk/RNHRD/patients/services/rheumatology/AS_service/team.asp?menu_id=2">Prof. Raj Sengupta</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/rosie-barnett.jpg" alt="Rosie Barnett" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/rosie-barnett">Rosie Barnett</a></div>
<div class="student-topic">"Exploration of digital interventions to support the self-management of axial spondyloarthritis"</div>
<p>Co-supervised with <a href="https://researchportal.bath.ac.uk/en/persons/peter-rouse">Dr. Peter Rouse</a> and <a href="https://www.ruh.nhs.uk/RNHRD/patients/services/rheumatology/AS_service/team.asp?menu_id=2">Prof. Raj Sengupta</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/alaa-kattan.jpg" alt="Alaa Kattan" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/alaa-kattan/">Alaa Kattan</a></div>
<div class="student-topic">"Effect of Pain and Kinesiophobia on Biomechanical Parameters, Muscle Activation Strategies, and Spinal Mobility in Axial Spondyloarthritis Patients During and After Flare Stage, and Implementation of Virtual Reality Rehabilitation"</div>
<p>Co-supervised with <a href="https://researchportal.bath.ac.uk/en/persons/dario-cazzola">Dr. Dario Cazzola</a>, <a href="https://researchportal.bath.ac.uk/en/persons/peter-rouse">Dr. Peter Rouse</a>, <a href="https://researchportal.bath.ac.uk/en/persons/logan-wade/">Dr. Logan Wade</a>, and <a href="https://www.ruh.nhs.uk/RNHRD/patients/services/rheumatology/AS_service/team.asp?menu_id=2">Prof. Raj Sengupta</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/yige-yang.jpg" alt="Yige Yang" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://cdt-art-ai.ac.uk/students/yige-yang/">Yige Yang</a></div>
<div class="student-topic">"Detecting affective states and brain interfacing in the real world and in multitasking scenarios: A Neurotechnological Approach"</div>
<p>Co-supervised with <a href="https://researchportal.bath.ac.uk/en/persons/damien-coyle">Prof. Damien Coyle</a> and <a href="https://researchportal.bath.ac.uk/en/persons/crescent-jicol/">Dr. Crescent Jicol</a>.</p>
</div>
</div>
<h3 id="graduated-students">Graduated PhD Students</h3>
<div class="student-item">
<div class="student-avatar">
<img src="img/violet-henderson.jpg" alt="Dr Violet Henderson" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/violet-henderson">Dr Violet Henderson</a> <span class="graduated">(graduated 2024)</span></div>
<div class="student-topic">"Using Smartphone Tools to Enable Home-Measurement of the BASMI"</div>
<p>Supervised with <a href="https://researchportal.bath.ac.uk/en/persons/dario-cazzola">Dr. Dario Cazzola</a>, <a href="https://www.ruh.nhs.uk/RNHRD/patients/services/rheumatology/AS_service/team.asp?menu_id=2">Prof. Raj Sengupta</a>, and <a href="https://simonjones.phd/">Dr. Simon Jones</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/izzy-fitton.jpg" alt="Dr Izzy Fitton" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/izzy-fitton">Dr Izzy Fitton</a> <span class="graduated">(graduated 2024)</span></div>
<div class="student-topic">"Observational Learning for Psychomotor Skills Training in Virtual Environments"</div>
<p>Co-supervised with <a href="http://lutteroth.me/">Dr. Christof Lutteroth</a>, <a href="https://researchportal.bath.ac.uk/en/persons/michael-proulx">Dr. Michael Proulx</a>, and <a href="https://jeremydaltonxr.com/">Jeremy Dalton</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/julia-groot.jpg" alt="Dr Julia Groot" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/julia-groot">Dr Julia Groot</a> <span class="graduated">(graduated 2025)</span></div>
<div class="student-topic">"Evaluating Engagement and Effectiveness of Digital Health Technology to Promote and Support Mental Health and Well-being"</div>
<p>Co-supervised with <a href="https://researchportal.bath.ac.uk/en/persons/mark-brosnan">Prof. Mark Brosnan</a> and <a href="https://www.southampton.ac.uk/people/5xbf59/doctor-ben-ainsworth">Dr. Ben Ainsworth</a>.</p>
</div>
</div>
<div class="student-item">
<div class="student-avatar">
<img src="img/james-nash.jpg" alt="Dr James Nash" onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display:none;"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>
</div>
<div class="student-info">
<div class="student-name"><a href="https://researchportal.bath.ac.uk/en/persons/james-nash">Dr James Nash</a> <span class="graduated">(graduated 2026)</span></div>
<div class="student-topic">"Exploring Force-Augmented Deformable Interfaces"</div>
<p>Co-supervised with <a href="http://www.jasonalexander.kiwi/">Prof. Jason Alexander</a> and <a href="https://www.adwaitsharma.com/">Dr. Adwait Sharma</a>.</p>
</div>
</div>
</section>
<!-- Student Projects Section -->
<section id="student-projects">
<h2>Student Projects</h2>
<h3>Master's Dissertations</h3>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2024-25</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Alger Da Costa, <em>"Contactless Touch Interaction"</em></li>
<li>Sol Merritt, <em>"Development and Validation of a Markerless Pose Detection System to Measure Axial Mobility in Ankylosing Spondylitis Patients"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2023-24</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Lu Ji, <em>"Detecting and Measuring Stress Using Earables"</em></li>
<li>Max Atherton, <em>"Converting Physical Activity Videos into Exergames"</em></li>
<li>Yi-Chun Chen, <em>"The Dual Impact of Exercise Avatars on User Confidence and Positive Emotions"</em></li>
<li>Manisha, <em>"Automatic Measurement of the BASMI"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2021-22</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>James Whiffing, <em>"Distinguishing Between Head and Phone Gestures On a Smartphone With Front-Facing Camera and IMU"</em></li>
<li>Zoe Broad, <em>"Emotion in Motion: Introducing real-time emotional responsiveness to VR exergames"</em></li>
<li>Tiffany Yip, <em>"Exploratory study investigating the impact of priming on presence and learning, and the moderating impact of suggestibility"</em></li>
<li>Remi Lucas, <em>"Motion Coupling of Multiple Wearables in Raised Camera View"</em></li>
<li>Han Dong, <em>"Dance Party: design and evaluation of gamification of aerobic dance workout based on wearables"</em></li>
<li>Ani Udom, <em>"An Investigation into the Effectiveness of Virtual Reality and Feedforward in Badminton Training for Beginner Players"</em></li>
<li>Justin Kuo, <em>"Multimodal Performance Capture and Analysis Suite - Badminton Training"</em></li>
<li>Dilip Kommanapalli, <em>"Effects of fatigue on skilled performance and attention decision making in athletes"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2020-21</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Christoph Meyer, <em>"Non-translational motion correlation for device association with tangible interfaces"</em></li>
<li>Torem Ozturk, <em>"Just Smile and Wave Boys, Smile and Wave: Harmonic synchronisation of hand gestures with visual displays"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">Lancaster University - 2020</h4>
<p style="font-style: italic; color: var(--color-text-light);">Co-supervised projects during postdoctoral position:</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Matthew Templeton, <em>"Collaborative Session Browsing in Mobile Augmented Reality"</em>, EPSRC intern student co-supervised with <a href="https://stevenhouben.be/">Dr. Steven Houben</a></li>
<li>Peter Ehric, <em>"Motion Coupling of Earable Devices in Camera View"</em>, Erasmus dissertation co-supervised with <a href="https://www.lancaster.ac.uk/scc/about-us/people/hans-gellersen">Prof. Hans Gellersen</a></li>
<li>Enikö Harmat, <em>"Motion Correlation with Earables and Smartphones"</em>, Erasmus dissertation co-supervised with <a href="https://www.lancaster.ac.uk/scc/about-us/people/hans-gellersen">Prof. Hans Gellersen</a></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">Lancaster University - 2019</h4>
<p style="font-style: italic; color: var(--color-text-light);">Co-supervised projects during postdoctoral position:</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Xuesong Zhang, <em>"Outline Pursuits in Virtual Reality for Selection"</em>, Erasmus dissertation co-supervised with <a href="https://www.lancaster.ac.uk/scc/about-us/people/hans-gellersen">Prof. Hans Gellersen</a> and <a href="https://ludwigsidenmark.com/#/">Dr. Ludwig Sidenmark</a></li>
</ul>
<h3>Undergraduate Dissertations</h3>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2024-25</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Wang Hao Chan, <em>"Contactless Touch Interaction with Leap Motion"</em></li>
<li>Matthew Chapman, <em>"ASPose: Measurement of Ankylosing Spondylitis Using Pose Estimation"</em></li>
<li>Samuel Thomson, <em>"BASMI Home Measurement Application to Monitor Ankylosing Spondylitis Progression"</em></li>
<li>Zebedee Marsh, <em>"Exploring the feasibility of using Earables for Head-Gaze Interaction"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2023-24</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Timothy Chan, <em>"Unistroke Virtual Touchpad: A Touchpad-and-Cursor-Based One-Handed Smartphone Interaction Technique"</em></li>
<li>Matthew Holmes, <em>"Gym Partner - Haptic and Audio Feedback to Improve Form in Strength Exercises using Body Pose Estimation with Consumer Wearables"</em></li>
<li>Lee Chilvers, <em>"RudimentWatch: A Drumming Real-Time Feedback System Using A Commercial Smartwatch"</em></li>
<li>Max Baker, <em>"Development of a Mobile Application to Measure Axial Spondyloarthritis Using Pose Detection"</em></li>
<li>Yi Ching Lee, <em>"TipControl: Matching microgesture for touchless interaction with display"</em></li>
<li>Oli Tocher, <em>"GameVideo: Exploring the Conversion of Exercise Videos into Exergames, and the Impact Generated Exergames Have on Physical Activity"</em></li>
<li>Ismail Hussain, <em>"BioKwondo: Using Biomechanical Feedback to Enhance Taekwondo Techniques"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">University of Bath - 2021-22</h4>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Alfred Sharp, <em>"An Elicitation Study to Expand the Gesture Set of Touchless-Touch Screens"</em></li>
<li>Angus Oehlers, <em>"Investigation into the use of Pose Estimation Software to assist in self measurement of the BASMI"</em></li>
<li>Nghiem Khuu, <em>"An Exploration of Touch-free Input on Interactive Public Displays"</em></li>
<li>Oyvind Luras, <em>"Contactless Touch Interaction: An analysis of its use in public displays relating to hygiene"</em></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">Lancaster University - 2020</h4>
<p style="font-style: italic; color: var(--color-text-light);">Co-supervised projects during postdoctoral position:</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Jenny Phu, <em>"Outline Pursuits: Selection in Virtual Environments"</em>, co-supervised with <a href="https://www.lancaster.ac.uk/scc/about-us/people/hans-gellersen">Prof. Hans Gellersen</a> and <a href="https://ludwigsidenmark.com/#/">Dr. Ludwig Sidenmark</a></li>
</ul>
<h4 style="color: var(--color-secondary); margin-top: var(--spacing-md);">Lancaster University - 2019</h4>
<p style="font-style: italic; color: var(--color-text-light);">Co-supervised projects during postdoctoral position:</p>
<ul style="margin-left: 2rem; margin-bottom: var(--spacing-md);">
<li>Lisa Norcross, <em>"Motion Correlation for Hands-free Smartphone Input"</em>, co-supervised with <a href="https://www.lancaster.ac.uk/scc/about-us/people/hans-gellersen">Prof. Hans Gellersen</a></li>
<li>Louis Creely, <em>"Motion-based Interaction Using a Smartphone for Ubiquitous Interaction"</em>, co-supervised with <a href="https://www.lancaster.ac.uk/scc/about-us/people/hans-gellersen">Prof. Hans Gellersen</a></li>
</ul>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<p>© 2025 Christopher Clarke. All Rights Reserved.</p>
<p style="margin-top: 0.5rem; font-size: 0.85rem;">
Last updated: February 2025
</p>
<p style="margin-top: 1rem; font-size: 0.75rem; opacity: 0.8;">
<a href="https://www.flaticon.com/free-icons/headphones" title="headphones icons" target="_blank" rel="noopener noreferrer">Headphones icons created by Freepik - Flaticon</a> •
<a href="https://www.flaticon.com/free-icons/vr-glasses" title="vr glasses icons" target="_blank" rel="noopener noreferrer">Vr glasses icons created by Cuputo - Flaticon</a> •
<a href="https://www.flaticon.com/free-icons/pc" title="pc icons" target="_blank" rel="noopener noreferrer">Pc icons created by Fhmrvi94 - Flaticon</a>
</p>
</div>
</footer>
<script src="script.js"></script>
<script>
// Submenu active state handling
const submenuLinks = document.querySelectorAll('.submenu-links a');
const sections = document.querySelectorAll('section[id]');
function updateActiveSubmenuLink() {
let current = '';
const scrollPosition = window.scrollY + 150;
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) {
current = section.getAttribute('id');
}
});
submenuLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === '#' + current) {
link.classList.add('active');
}
});
}
window.addEventListener('scroll', updateActiveSubmenuLink);
window.addEventListener('load', updateActiveSubmenuLink);
// Smooth scroll for submenu links
submenuLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetSection = document.getElementById(targetId);
if (targetSection) {
const offset = 140;
const targetPosition = targetSection.offsetTop - offset;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>