-
Notifications
You must be signed in to change notification settings - Fork 1
/
program-backup.html
2312 lines (2235 loc) · 147 KB
/
program-backup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-59JZV5ZYEB"></script>
<script src="./assets/js/analytics.js"></script>
<!-- Meta data -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ASSETS 2022 official website | Program Committee">
<meta name="keywords" content="ASSETS 2022, ASSETS'22, SIGACCESS, Program Committee, PC">
<meta name="author" content="">
<meta name="generator" content="">
<!-- Metadata tags for link preview -->
<meta property="og:type" content="website" />
<meta name="title" property="og:title" content="ASSETS 2022 | Program Committee" />
<meta name="image" property="og:image" content="https://assets22.sigaccess.org/assets/img/large/ASSETS2022_Logo.png" />
<meta name="og:title" content="ASSETS 2022 | The 24th International ACM SIGACCESS Conference on Computers and Accessibility" />
<meta name="og:image" content="https://assets22.sigaccess.org/assets/img/large/ASSETS2022_Logo.png" />
<title>ASSETS 2022 | Program</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap core CSS -->
<link href="./assets/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./assets/css/style.css" rel="stylesheet">
<link href="./assets/css/navbar.css" rel="stylesheet">
<link href="./assets/css/committees.css" rel="stylesheet">
<!-- Javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./assets/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://use.typekit.net/zmi2bzm.css">
<!-- <link href="assets/css/program-style.css" rel="stylesheet" type="text/css" /> -->
<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
<!-- <script>
localStorage.setItem("current_page", "Program");
</script> -->
</head>
<body>
<main>
<!--Navigation bar-->
<div id="navbar"></div>
<script>
$(function(){
$("#navbar").load("navbar.html");
});
</script>
<!--Navigation bar-->
<div id="content">
<!-- Jumbotron -->
<div id="top-jumbotron-committee" class="jumbotron jumbotron-fluid text-light bg-overlay image-wrapper">
<div class="container px-4 py-5 text-center content">
<span class="d-flex justify-content-center align-items-center mt-5">
<img class="d-block my-0 mx-4" src="./assets/img/large/logo-large.png" alt="ASSETS'22 logo" width="125">
<!-- <h1 class="display-4 confTitle mt-4 mb-0 mx-1">ASSETS 2022</h1> -->
<div>
<h1 class="display-6 confTitle mt-4 mb-0">Program</h1>
<h5 class="confTitle">October 23-26, 2022</h5>
</div>
</span>
</div>
</div>
<!-- Jumbotron -->
<section class="callout_section_2 p-3">
<div class="container">
<div class="row justify-content-md-center">
<div class="col-lg-8 mt-4">
<h3 class="text-center" tabindex="0">ASSETS 2022 Program</h3>
<p><strong>Please note: this schedule is still subject to change.</strong></p>
<p>Jump to the Program Schedule for:</p>
<ul>
<li><a href="#monday">Monday, Oct 24</a></li>
<li><a href="#tuesday">Tuesday, Oct 25</a></li>
<li><a href="#wednesday">Wednesday, Oct 26</a></li>
<li><a href="#poster-1">Poster Session 1 (Monday)</a></li>
<li><a href="#demo">Demo Session (Monday Evening)</a></li>
<li><a href="#poster-2">Poster Session 2 (Tuesday)</a></li>
</ul>
</div>
</div>
</div>
</section>
<section class="callout_section_0 p-3">
<div class="container">
<div class="row justify-content-md-center">
<div class="section_wrapper">
<div class="section_wrapper">
<h3 tabindex="0" class="home_section_title" style="text-align: center;">
<a id="monday"></a>Program Schedule for Monday, Oct 24</h3>
<table class="program">
<tr>
<th>
<p style="font-weight: 400;">
<b>TIME [EEST]</b>
<!-- <br />
-3h Seattle [PDT]<br />+5h London [BST]<br />+6h Central Europe [CET] -->
</p>
</th>
<th>
<p>EVENT</p>
</th>
</tr>
<tr>
<td><p>8:45</p></td>
<td><p>Welcome</p></td>
</tr>
<tr>
<td><p>9:15</p></td>
<td><p>Opening Keynote: Haben Girma</p></td>
</tr>
<tr>
<td><p>10:15</p></td>
<td><p>Coffee Break and Poster Session 1 (45 mins)</p></td>
</tr>
<tr>
<td><p>11:00</p></td>
<td><p>Session 1: AR, VR and Games</p></td>
</tr>
<tr>
<td><p>12:30</p></td>
<td><p>Lunch</p></td>
</tr>
<tr>
<td><p>13:50</p></td>
<td><p>Session 2: Representation and Inclusion</p></td>
</tr>
<tr>
<td><p>15:15</p></td>
<td><p>Coffee Break and Poster Session 1 (continued) (45 mins)</p></td>
</tr>
<tr>
<td><p>16:00</p></td>
<td><p>Session 3: Data for Modeling and Recognition</p></td>
</tr>
<tr>
<td><p>19:00</p></td>
<td><p>Evening Reception and Demo Session</p></td>
</tr>
<tr>
<td>
<p>9:00</p>
</td>
<td>
<p><b>Opening Session: Welcome and Introductions</b></p>
<p> General Chair:</small></p>
<ul>
<li>Jonathan Lazar, University of Maryland, USA</li>
</ul>
<p>Program Chairs:</p>
<ul>
<li>Heidi Feng, Towson University, USA</li>
<li>Faustina Hwang, University of Reading, UK</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>9:20</p>
</td>
<td>
<p><b>Opening Keynote Presentation</b></p>
<p><b>The DARE Index: Monitoring the Progress of Digital </b></p>
<p><b>Accessibility around the World </b></p>
<p><a href="keynote_speaker.html">Axel Leblois</a></p>
</td>
</tr>
<tr>
<td>
<p>10:10</p>
</td>
<td>
<p><b>Keynote Q&A</b></p>
</td>
</tr>
<tr>
<td>
<p>10:25</p>
</td>
<td>
<p><b>Break (10 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>10:35 (40 mins)</p>
</td>
<td>
<p><b>Paper Session 1: Inclusive education</b></p>
<p>Session Chairs:</small></p>
<ul>
<li>Catherine Baker, Creighton University, USA</li>
<li>Yasmine Elglaly, Western Washington University, USA</li>
</ul>
<ul>
<li>
<b>Enabling meaningful use of AI-infused educational technologies
for children with blindness: learnings from the development and
piloting of the PeopleLens curriculum*</b></br>
Cecily Morrison: Microsoft Research;</br>
Edward Cutrell: Microsoft Research;</br>
Martin Grayson: Microsoft Research;</br>
Elisabeth RB Becker: Microsoft Research;</br>
Vasiliki Kladouchou: Microsoft Research;</br>
Linda Pring: Microsoft Research;</br>
Katherine Jones: University of Bristol;</br>
Rita Faia Marques: Microsoft Research;</br>
Camilla Longden: Microsoft Research;</br>
Abigail Sellen: Microsoft Research <br />
<div class="paper_award">
<img src="assets/img/large/honorable_mention.png" width="20" alt="award">
<i>Best Paper Nominee</i>
</div>
</li>
<li>
<b>Understanding Disability Services Toward Improving Graduate Student
Support</b></br>
Murtaza Tamjeed: Rochester Institute of Technology;</br>
Vinita Tibdewal: Rochester Institute of Technology;</br>
Madison Russell: Rochester Institute of Technology;</br>
Michael McQuaid: Rochester Institute of Technology;</br>
Tae Oh: Rochester Institute of Technology;</br>
Kristen Shinohara: Rochester Institute of Technology
</li>
<li>
<b>How Teachers of the Visually Impaired Compensate with the Absence of
Accessible Block-Based Languages </b></br>
Aboubakar Mountapmbeme: University of North Texas;</br>
Stephanie Ludi: University of North Texas
</li>
<li><b>Panel Q&A</b></li>
</ul>
</td>
</tr>
<tr>
<td>
<p>11:15</p>
</td>
<td>
<p><b>Break (10 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>11:25</p>
</td>
<td>
<p><b>
50th Anniversary Panel 1: </br>
The Impact of the Trace Center: Celebrating 50 Years
</b></p>
<p>
Moderator:
</p>
<ul>
<li>
Clayton Lewis
</li>
</ul>
<p>
Panelists:
</p>
<ul>
<li>
Judy Brewer
</li>
<li>
Alan Brightman
</li>
<li>
David Capozzi
</li>
<li>
Gregg Vanderheiden
</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>12:30</p>
</td>
<td>
<p><b>Gold Sponsors</b></p>
<p>Microsoft</p>
<p>Apple</p>
</td>
</tr>
<tr>
<td>
<p>12:45</p>
</td>
<td>
<p><b>Break (45 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>13:30</p>
</td>
<td>
<p><b>Poster Previews Session 1</b></p>
<p>Short video previews of each of today's posters, demos, student research competition
submissions, and doctoral consortium artifacts will be played. </p>
<p>Session Chairs:</small></p>
<ul>
<li>Jon Froehlich, University of Washington, USA</li>
<li>Benjamin Tannert, Bremen City University of Applied Science, Germany</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>14:00</p>
</td>
<td>
<p><b>Posters, Demos, SRC & DC Session 1</b></p>
<div>
<button type="button" class="collapsible">
<b>Session 1:</b> Health & Exercise
</button>
<div class="content button-content">
<div class="paper">
[SRC] Activity Recognition in Older Adults with Training Data from Younger
Adults: Preliminary Results
on in Vivo Smartwatch Sensor Data
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Fatima Sabahat
</p>
</div>
<div class="paper">
[Poster] Increasing Access to Trainer-led Aerobic Exercise for People with
Visual Impairments through a Sensor Mat System
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Jeehan Malik
</p>
</div>
<div class="paper">
[Poster] Determining a Taxonomy of Accessible Phrases During Exercise
Instruction for People with Visual Impairments for Text Analysis
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Kyle Rector
</p>
</div>
<div class="paper">
[Poster] Designing Apps to Support Engagement by Older Adults: A think-aloud
study of the eNutri dietary-intake assessment web app
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Eve Kelly
</p>
</div>
<div class="paper">
[Poster] "What just happened?": Understanding Non-visual Watching Sports
Experiences
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Saki Asakawa
</p>
</div>
</div>
<!-- End of Button 1 Content -->
</div> <!-- End of Button Container -->
<br />
<div>
<button type="button" class="collapsible">
<b>Session 2:</b> Reading | Empowerment
</button>
<div class="content button-content">
<div class="paper">
[SRC] Measuring Text Comprehension for People with Reading Difficulties Using a
Mobile Application
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Andreas Säuberli
</p>
</div>
<div class="paper">
[Demo] iReadMore: A Reading Therapy App Co-Designed by People with Aphasia and
Alexia
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Thomas Langford
</p>
</div>
<div class="paper">
[Poster] Augmenta11y: A Reading Assistant Application for Children with Dyslexia
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Tushar Gupta
</p>
</div>
<div class="paper">
[SRC] Voice Creator: Giving Customized Voice to the Voiceless for Online
Communication
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Hyeon Jeong Byeon
</p>
</div>
<div class="paper">
[Poster] Exploring the Requirements of Abuse Reporting for Persons with
Intellectual and Developmental Disabilities
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Krishna Venkatasubramanian
</p>
</div>
</div>
<!-- End of Button 2 Content -->
</div> <!-- End of Button Container -->
<br />
<div>
<button type="button" class="collapsible">
<b>Session 3:</b> Live Communication Support
</button>
<div class="content button-content">
<div class="paper">
[SRC] Auditory feedback to compensate audible instructions to support people
with visual impairment
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Gabriele Galimberti
</p>
</div>
<div class="paper">
[Poster] Word Cloud for Meeting: A Visualization System for DHH People in Online
Meetings
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Ryo Iijima
</p>
</div>
<div class="paper">
[Demo] Visionary Caption: Improving the Accessibility of Presentation Slides
Through Highlighting Visualization
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Kotaro Hara
</p>
</div>
<div class="paper">
[Demo] SynSLaG: Synthetic Sign Language Generator
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Teppei Miura
</p>
</div>
<div class="paper">
[Demo] Equivalent Telecommunications Access on Mobile Devices
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Spencer Montan
</p>
</div>
</div>
<!-- End of Button 3 Content -->
</div> <!-- End of Button Container -->
<br />
<div>
<button type="button" class="collapsible">
<b>Session 4:</b> Mobility & Navigation
</button>
<div class="content button-content">
<div class="paper">
[Poster] Sidewalk Gallery: An Interactive, Filterable Image Gallery of Over
500,000 Sidewalk Accessibility Problems
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Jon Froehlich
</p>
</div>
<div class="paper">
[Poster] GazeMetro: A Gaze-Based Interactive System for Metro Map
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Zhuo Yang
</p>
</div>
<div class="paper">
[Demo] Experimental Crowd+AI Approaches to Track Accessibility Features in
Sidewalk Intersections Over Time
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Ather Sharif & Jon Froehlich
</p>
</div>
<div class="paper">
[Poster] "Would the smart cane benefit me?": Perceptions of the Visually
Impaired towards Smart Canes
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Rezylle Milallos
</p>
</div>
</div>
<!-- End of Button 4 Content -->
</div> <!-- End of Button Container -->
<br />
<div>
<button type="button" class="collapsible">
<b>Session 5:</b> Creativity & Design Tools | Touchscreen Accessibility
</button>
<div class="content button-content">
<div class="paper">
[SRC] Adee: Bringing Accessibility Right Inside Design Tools
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Samine Hadadi
</p>
</div>
<div class="paper">
[Poster] Using Games to Practice Screen Reader Gestures
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
André Rodrigues
</p>
</div>
<div class="paper">
[Poster] New Metrics for Understanding Touch by People with and without Limited
Fine Motor Function
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Junhan Kong
</p>
</div>
<div class="paper">
[Poster] A Preliminary Analysis of Android Educational Game Accessibility
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Jesse Martinez
</p>
</div>
</div>
<!-- End of Button 5 Content -->
</div> <!-- End of Button Container -->
<br />
</td> <!-- End of Poster & Demo Cell Content -->
</tr>
<tr>
<td>
<p>14:45</p>
</td>
<td>
<p><b>Break (15 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>15:00</p>
</td>
<td>
<p><b>Paper Session 2: Immersive and wearable technologies</b></p>
<p>Session Chairs:</small></p>
<ul>
<li>Amy Hurst, New York University, USA</li>
<li>Claire Kearney-Volpe, Verizon, USA</li>
</ul>
<ul>
<li>
<b>Nearmi: A Framework for Designing Point of Interest Techniques for VR Users
with Limited Mobility </b></br>
Rachel L. Franz: University of Washington;</br>
Sasa Junuzovic: Microsoft Research;</br>
Martez Mott: Microsoft Research
</li>
<li>
<b>Beyond Adaptive Sports: Challenges & Opportunities to Improve Accessibility
and Analytics</b></br>
Rushil Khurana: Carnegie Mellon University;</br>
Ashley Wang: Carnegie Mellon University;</br>
Patrick Carrington: Carnegie Mellon University
</li>
<li>
<b>Wearable Interactions for Users with Motor Impairments: Systematic Review,
Inventory, and Research Implications</b></br>
Alexandru-Ionut Siean: Ștefan cel Mare University of Suceava;</br>
Radu-Daniel Vatavu: Ștefan cel Mare University of Suceava
</li>
<li>
<b>Accessing Passersby Proxemic Signals through a Head-Worn Camera:
Opportunities and Limitations for the Blind </b></br>
Kyungjun Lee: University of Maryland;</br>
Daisuke Sato: Carnegie Mellon University;</br>
Saki Asakawa: New York University;</br>
Chieko Asakawa: IBM;</br>
Hernisa Kacorri: University of Maryland
</li>
<li>
<b>Panel Q&A</b>
</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>16:00 - 17:00</p>
</td>
<td>
<p><b>1970s Zoom Dance Party</b></p>
</td>
</tr>
</table>
<br />
<a href="#top">[Back to top]</a>
<h3 tabindex="0" class="home_section_title" style="text-align: center;">
<a id="tuesday"></a>Program Schedule for [the second day]
</h3>
<table class="program">
<tr>
<th>
<p style="font-weight: 400;">
<b>TIME [EDT]</b><br />
-3h Seattle [PDT]<br />+5h London [BST]<br />+6h Central Europe [CET]
</p>
</th>
<th>
<p>EVENT</p>
</th>
</tr>
<tr>
<td>
<p>9:00</p>
</td>
<td>
<p><b>Paper Session 3: Health and support systems</b></p>
<p>Session Chairs:</small></p>
<ul>
<li>Mingming Fan, Hong Kong University of Science and Technology, Hong Kong</li>
<li>Yuhang Zhao, University of Wisconsin-Madison, USA</li>
</ul>
<ul>
<li>
<b>Understanding Barriers and Design Opportunities to Improve Healthcare and QOL
for Older Adults through Voice Assistants</b></br>
Chen Chen: University of California San Diego;</br>
Janet G Johnson: University of California San Diego;</br>
Kemeberly Charles: University of California San Diego;</br>
Alice Lee: University of California San Diego;</br>
Ella T Lifset: University of California San Diego;</br>
Michael Hogarth: University of California San Diego;</br>
Alison A Moore: University of California San Diego;</br>
Emilia Farcas: University of California San Diego;</br>
Nadir Weibel: University of California San Diego</br>
</li>
<li>
<b>How Online Tests Contribute to the Support System for People With Cognitive and
Mental Disabilities*</b><br />
Qisheng Li: University of Washington; <br />
Josephine Lee: University of Washington;<br />
Christina Zhang: University of Washington;<br />
Katharina Reinecke: University of Washington<br />
<div class="paper_award">
<img src="assets/img/large/honorable_mention.png" width="20" alt="award">
<i>Best Paper Nominee</i>
</div>
</li>
<li>
<b>Designing an App to help Individuals with Intellectual and Developmental
Disabilities to Recognize Abuse</b></br>
Thomas Howard III: University of Rhode Island;</br>
Krishna Venkatasubramanian: University of Rhode Island;</br>
Jeanine L M Skorinko: Worcester Polytechnic Insitute;</br>
Pauline Bosma: Massachusetts Adovcates Standing Strong;</br>
John Mullaly: Massachusetts Adovcates Standing Strong;</br>
Brian Kelly: Massachusetts Advocates Standing Strong;</br>
Deborah Lloyd: Massachusetts Advocates Standing Strong;</br>
Mary Wishart: University of Rhode Island;</br>
Emiton Alves: University of Rhode Island;</br>
Nicole Jutras: Worcester Polytechnic Institute;</br>
Mariah Freark: Massachusetts Disabled Persons Protection Commission;</br>
Nancy A. Alterio: Massachusetts Disabled Persons Protection Commission
</li>
<li>
<b>Beyond Fun: Players’ Experiences of Accessible Rehabilitation Gaming with
Spinal Cord Injury </b></br>
Gabriele Cimolino: Queen's University;</br>
Sussan Askari: Providence Care Hospital;</br>
T.C. Nicholas Graham: Queen's University
</li>
<li>
<b>VIDDE: Visualizations for Helping People with COPD Interpret Dyspnea During
Exercise</b></br>
Claudia Chen: University of Toronto;</br>
Robert Wu: University Health Network;</br>
Hashim Khan: UHN;</br>
Khai Truong: University of Toronto;</br>
Fanny Chevalier: University of Toronto
</li>
<li>
<b>Panel Q&A</b>
</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>10:00</p>
</td>
<td>
<p><b>Break (15 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>10:15</p>
</td>
<td>
<p><b>Paper Session 4: Screen readers and effective descriptions</b></p>
<p>Session Chairs:</small></p>
<ul>
<li>Jeff Bigham, Carnegie Mellon University, USA</li>
<li>Amy Pavel, Carnegie Mellon University, USA</li>
</ul>
<ul>
<li>
<b>Understanding Screen-Reader Users’ Experiences with Online Data
Visualizations</b></br>
Ather Sharif: University of Washington;</br>
Sanjana Shivani Chintalapati: University of Washington;</br>
Jacob O. Wobbrock: University of Washington;</br>
Katharina Reinecke: University of Washington
</li>
<li>
<b>Understanding Screen Readers' Plugins</b></br>
Farhani Momotaz: Pennsylvania State University;</br>
Md Touhidul Islam: Pennsylvania State University;</br>
Md Ehtesham-Ul-Haque: Penn State University;</br>
Syed Masum Billah: Pennsylvania State University
</li>
<li>
<b>Going Beyond One-Size-Fits-All Image Descriptions to Satisfy the Information
Wants of People Who are Blind or Have Low Vision</b></br>
Abigale Stangl: University of Washington;</br>
Nitin Verma: University of Texas at Austin;</br>
Kenneth R. Fleischmann: The University of Texas at Austin;</br>
Meredith Ringel Morris: Microsoft Research;</br>
Danna Gurari: University of Texas at Austin
</li>
<li>
<b>The Efficacy of Collaborative Authoring of Video Scene Description*</b></br>
Rosiana Natalie: Singapore Management University;</br>
Jolene Loh Loh: Singapore Management University;</br>
Huei Suen Tan: Singapore Management University;</br>
Joshua Tseng: Singapore Managamenet University;</br>
Ian Luke Yi-Ren Chan: Singapore Managamenet University;</br>
Ebrima H Jarjue: University of Maryland (Umd);</br>
Hernisa Kacorri: University of Maryland;</br>
Kotaro Hara: Singapore Management University</br>
<div class="paper_award">
<img src="assets/img/large/honorable_mention.png" width="20" alt="award">
<i>Best Paper Nominee</i>
</div><br />
</li>
<li>
<b>Panel Q&A</b>
</li>
</td>
</tr>
<tr>
<td>
<p>11:15</p>
</td>
<td>
<p><b>Break (10 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>11:25</p>
</td>
<td>
<p><b>50th Anniversary Panel 2: The History of SIGACCESS</b></p>
<p>Moderator:</p>
<ul>
<li>Shari Trewin</li>
<li></li>
</ul>
<p>Panelists:</p>
<ul>
<li>Harriet Fell</li>
<li>Jason Freeman</li>
<li>Vicki Hanson</li>
<li>Clayton Lewis</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>12:30</p>
</td>
<td>
<p><b>Gold Sponsors</b></p>
<p>Adobe</p>
<p>Elsevier</p>
</td>
</tr>
<tr>
<td>
<p>12:45</p>
</td>
<td>
<p><b>Break (45 mins)</b></p>
</td>
</tr>
<tr>
<td>
<p>13:30</p>
</td>
<td>
<p><b>Poster Previews Session 2</b></p>
<p>Short video previews of each of today's posters, demos, student research competition
submissions, and doctoral consortium artifacts will be played.</p>
<p>Session Chairs:</small></p>
<ul>
<li>Jon Froehlich, University of Washington, USA</li>
<li>Benjamin Tannert, Bremen City University of Applied Science, Germany</li>
</ul>
</td>
</tr>
<tr>
<td>
<p>14:00</p>
</td>
<td>
<p><b>Posters, Demos, SRC & DC Session 2</b></p>
<div>
<button type="button" class="collapsible">
<b>Session 1:</b> Web & Social Media
</button>
<div class="content button-content">
<div class="paper">
[DC] Making web accessibility more accessible
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Vincenzo Rubano
</p>
</div>
<div class="paper">
[Poster] Designing Sensory and Social Tools for Neurodivergent Individuals in
Social Media Environments
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Lauren Race
</p>
</div>
<div class="paper">
[Poster] Sound Cells: Rendering Visual and Braille Music in the Browser
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Fabiha Ahmed
</p>
</div>
<div class="paper">
[Poster] Designing a Podcast Platform for Deaf and Hard of Hearing Users
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Kristen Shinohara
</p>
</div>
<div class="paper">
[Demo] Image Explorer: Multi-Layered Touch Exploration to Make Images Accessible
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Jaewook Lee
</p>
</div>
</div>
<!-- End of Button 1 Content -->
</div> <!-- End of Button Container -->
<br />
<div>
<button type="button" class="collapsible">
<b>Session 2:</b> Information Access | Study Methods
</button>
<div class="content button-content">
<div class="paper">
[DC] The Use of Automatic Text Simplification to Provide Reading Assistance to
Deaf and Hard-of-hearing Individuals in Computing Fields
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Oliver Alonzo
</p>
</div>
<div class="paper">
[DC] Audio Description Technology for Live Theater: Exploring New Approaches
<!-- <p class="paperShortcuts">
<a class="discordShortcut" href="#" target="_blank">[Discord channel TBD]</a>
</p> -->
<p class="authors">
Dirk Vander Wilt