-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
1541 lines (1402 loc) · 65.7 KB
/
index2.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 PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>home [interface ecology lab]</title>
<meta
http-equiv="Content-Type"
content="text/html; charset=utf-8"/>
<link
href="includes/ecologylab.css"
rel="stylesheet"/>
<link
rel="shortcut icon"
href="images/ecologylab-16.ico"
type="image/ico"/>
<link
rel="icon"
href="images/ecologylab-16.png"
type="image/png"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20550827-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="includes/ecologylab.js"></script>
<meta itemprop="description" name="description" content="The Interface Ecology Lab investigates the future of human expression, focusing on creativity, play, participation, and education." />
<meta name="twitter:description" content="The Interface Ecology Lab investigates the future of human expression, focusing on creativity, play, participation, and education." />
<meta property="og:description" content="The Interface Ecology Lab investigates the future of human expression, focusing on creativity, play, participation, and education." />
<meta name="keywords" content="hci,creativity support environments,hcir,exploratory search,exploratory browsing,ideation,social media,cscw,research,games,design,semantics,semantic web,curation,information-based ideation,embodied interfaces," />
<meta property="twitter:image" content="https://ecologylab.net/images/interfaceEcologyLabLogos7-2004-2WhiteMatte.png"/>
<meta property="og:image" content="https://ecologylab.net/images/interfaceEcologyLabLogos7-2004-2WhiteMatte.png"/>
</head>
<body>
<div class="rootcontainer" aonclick="offNav(this)">
<div class="header">
<a href="./index.html"><img class="logo" src="images/interfaceEcologyLabLogos7-2004-2WhiteMatte.png"> </a>
<div class="title">
home
</div>
<span onclick="toggleNav(event);" id="triple">≡</span>
</div>
<div id="navigation_container">
<div class="block">
<a class="navselected" href="index.html">home</a>
<a class="navlink" href="define.html">define</a>
<a class="navlink" href="research/index.html">research</a>
<a class="navlink" href="people/index.html">people</a>
<a class="navlink" href="courses/index.html">courses</a>
<!-- <a class="navlink" href="workshops/index.html">workshops</a> -->
<!-- <a class="navlink" href="summerofcode/index.html">summer of code</a> -->
</div>
<div class="block">
<a class="navlink" target="_blank" href="http://g.co/maps/47d92">225 Teague<br/>
Texas A&M [lot 15]</a>
<div class="block">
<a class="nav_nowrap" target="_blank"
href="https://facebook.com/ecologylab"><img style="vertical-align:text-bottom; margin-top:4px;" src="https://facebook.com/favicon.ico"/> </a>
</div>
</div>
</div>
<div class="intro">
<a href="research/index.html" class="illustrate_left" style="display: flex;">
<img src="research/bodyBased/zerotouch/images/austinChiZtGirlCropScale2.jpg" style="width:170px; height: 107px;"/>
</a>
The Interface Ecology Lab investigates <em>the future of human expression</em>, focusing on creativity, play, participation, and learning.
We develop interdisciplinary research and education from our home in the
<a target="_blank" class="plain" href="http://www.cse.tamu.edu">Texas A&M Department of Computer Science and Engineering</a>.
The lab is directed by <a class="destination" href="people/andruid/index.html">PI Andruid Kerne</a>.
</div>
<div class="intro">
<h2>news</h2>
<table cellpadding="0" border="0">
<tr valign="top">
<td><i>4/2018 -</i> </td>
<td style="padding-bottom:8px;" >
<a target="_blank" class="destination" href="people/bill.html">Bill Hamilton</a> won the 2018 Association of Former Students Distinguished Graduate Student Award for Excellence in Research - Doctoral.
He has taken a position as tenure-track assistant professor at New Mexico State University.
</td>
</tr>
<tr valign="top">
<td><i>5/2018 - 8/2018</i> </td>
<td style="padding-bottom:8px;" >
<a target="_blank" class="destination" href="people/ajit.html">Ajit Jain</a> is on a summer internship, with <a target="_blank" class="destination" href="https://homepages.cwi.nl/~garcia/">Pablo Cesar</a>, in the <a target="_blank" class="destination" href="http://www.dis.cwi.nl/">Distributed and Interactive Systems</a> group at CWI, Netherlands.
</td>
</tr>
<tr valign="top">
<td><i>1/2017 - 12/2018</i> </td>
<td style="padding-bottom:8px;" >
<a target="_blank" class="destination" href="people/andrew.html">Andrew Webb</a>
is on a 2-year post-doc at Inria, in Paris, with Wendy Mackay, in the <a href="https://www.inria.fr/en/teams/ex-situ" target="_blank" class="destination">Extreme Interaction group</a> (EX-SITU).
</td></tr>
<tr valign="top">
<td><i>9/2015 - 8/2019</i> </td>
<td style="padding-bottom:8px;" >
Interface Ecology Lab awarded NSF IIS grant, <em>Transforming Participation in Online Courses through Social Live Media Composition</em>.
</td></tr>
</table>
</div>
<!--<div class="h4">projects</div>
<div class="feature">
<a href="http://ideamache.ecologylab.net" target="_blank">
<img width="164" src="images/ideamache_thumb.png" class="illustrate_left"/>
</a>
<a target="_blank" class="destination" href="http://ideamache.ecologylab.net">IdeaMâché</a> is
a browser-based expressive web curation system that uses
<a target="_blank" href="research/curation.html">information composition</a> as the medium of curation.
<i>Curation</i> is the process of assembling information in meaningful exhibits, for people to think about.
<a target="_blank" class="destination" href="http://ideamache.ecologylab.net">IdeaMâché</a> allows users to
collect, arrange, annotate and synthesize digital content to express relationships and develop ideas.
</div>-->
<h2 style="margin-bottom: .5em;">publications + exhibits</h2>
<div class="feature">
<a
href="https://dl.acm.org/authorize?N652022"
title="Multiscale Design Strategies from a Landscape Architecture Classroom"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/multiscaleDesignIcon.jpg" />
</a>
Lupfer, N., Fowler, H., Valdez, A., Webb, A., Merrill, J., Newman, G., Kerne, A.
<a href="https://dl.acm.org/authorize?N652022" class="pub_destination" target="_blank">
Multiscale Design Strategies from a Landscape Architecture Classroom</a>,
<i>Proc. ACM DIS 2018</i>, 1081-1093 [25%].
<a class="doi" href="https://doi.org/10.1145/3196709.3196812" target="_blank">https://doi.org/10.1145/3196709.3196812</a>
</div>
<div class="feature">
<a
href="research/publications/Lupfer_DIS_DC.pdf"
title=""
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/liveMacheNAIcon.png" />
</a>
Lupfer, N.
<a href="research/publications/Lupfer_DIS_DC.pdf" class="pub_destination" target="_blank">
Multiscale Curation: Supporting Collaborative Design and Ideation</a>,
<i>Proc. ACM DIS 2018 Companion</i>.
<a class="doi" href="https://doi.org/10.1145/3197391.3205380" target="_blank">https://doi.org/10.1145/3197391.3205380</a>
</div>
<div class="feature">
<a
href="https://dl.acm.org/authorize?N652021"
title="Queer Visibility: Supporting LGBT+ Selective Visibility on Social Media"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/Rainbow_flag_and_blue_skies.jpg" />
</a>
Carrasco, M., Kerne, A.
<a href="https://dl.acm.org/authorize?N652021" class="pub_destination" target="_blank">
Queer Visibility: Supporting LGBT+ Selective Visibility on Social Media</a>,
<i>Proc. ACM CHI 2018</i> paper 250: 12 pages [26%].
</div>
<div class="feature">
<a
href="https://dl.acm.org/authorize?N652020"
title="Collaborative Live Media Curation: Shared Context for Participation in Online Learning"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/liveMacheIcon.png" />
</a>
Hamilton, W. A., Lupfer, N., Botello, N., Tesch, T., Stacy, A., Merrill, J., Williford, B., Bentley, F. R., Kerne, A.
<a href="https://dl.acm.org/authorize?N652020" class="pub_destination" target="_blank">
Collaborative Live Media Curation: Shared Context for Participation in Online Learning</a>,
<i>Proc. ACM CHI 2018</i>, paper 555 : 14 pages [26%].
<a class="doi_inline" href="https://doi.org/10.1145/3173574.3174129" target="_blank">https://doi.org/10.1145/3173574.3174129</a>
<a class="pub_video" href="https://youtu.be/OIuFK0RedzY" target="_blank">[video]</a>
</div>
<div class="feature">
<a
href="research/publications/GameAwarenessCHI2018.pdf"
title="A Design Framework for Awareness Cues in Distributed Multiplayer Games"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/gameAwarenessThumb.png" />
</a>
Wuertz, J., Alharthi, S., Hamilton, W. A., Bateman, S., Gutwin, C., Tang, A., Toups Dugas, P. O., Hammer, J.
<a href="research/publications/GameAwarenessCHI2018.pdf" class="pub_destination" target="_blank">
A Design Framework for Awareness Cues in Distributed Multiplayer Games</a>,
<i>Proc. ACM CHI 2018</i> [26%].
<a class="doi" href="https://doi.org/10.1145/3173574.3173817" target="_blank">https://doi.org/10.1145/3173574.3173817</a>
</div>
<div class="feature">
<a
href="research/publications/vr2018.pdf"
title="Pop the Feed Filter Bubble: Making Reddit Social Media a VR Cityscape"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/vr2018thumb.png" />
</a>
Linder, R., Stacey, A. M., Lupfer, N., Kerne, A.,Ragan E. D.<a href="research/publications/vr2018.pdf" class="pub_destination" target="_blank">
Pop the Feed Filter Bubble: Making Reddit Social Media a VR Cityscape</a>,
<i>Proc. IEEE VR 2018</i>.
<!-- <a class="doi" href="https://doi.org/10.1145/3173574.3173817" target="_blank">https://doi.org/10.1145/3173574.3173817</a> -->
</div>
<div class="feature">
<a
href="https://dl.acm.org/authorize?N655731"
title="LiveDissent: A Media Platform for Remote Participation in Activist Demonstrations"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/liveDissentIcon.png" />
</a>
Hamilton, W. A., Lupfer, N., Kerne, A.
<a href="https://dl.acm.org/authorize?N655731" class="pub_destination" target="_blank">
LiveDissent: A Media Platform for Remote Participation in Activist Demonstrations</a>,
<i>Proc. ACM GROUP 2018</i>, 257-66.
<a class="doi" href="https://doi.org/10.1145/3148330.3149406" target="_blank">https://doi.org/10.1145/3148330.3149406</a>
</div>
<div class="feature">
<a
href="http://dl.acm.org/authorize?N31022"
title="Strategies of Free-Form Web Curation: Processes of Creative Engagement with Prior Work"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/freeFormStrategiesIcon.png" />
</a>
Kerne, A., Lupfer, N., Linder R., Qu, Y., Valdez, A., Jain, A., Keith, K., Carrasco, M., Vanegas, J., Billingsley, A.,
<a href="http://dl.acm.org/authorize?N31022" class="pub_destination" target="_blank">
Strategies of Free-form Web Curation: Processes of Creative Engagement with Prior Work</a>,
<i>Proc. ACM Creativity & Cognition 2017</i>, 380-392 [29%].
<a class="doi_inline" href="http://dx.doi.org/10.1145/3059454.3059471" target="_blank">http://dx.doi.org/10.1145/3059454.3059471</a>
<div class="pub_destination">
<a href="https://ideamache.ecologylab.net/e/6Eor5zygyw/" target="_blank">
presentation mâché</a></div>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31459" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/cc2017gss_icon.png" />
</a>
Jain, A.,
<a href="http://dl.acm.org/authorize?N31459" class="pub_destination" target="_blank">
Measuring Creativity: Multi-Scale Visual and Conceptual Design Analysis</a>,
<i>Proc. ACM Creativity & Cognition 2017</i>, Graduate Student Symposium, Singapore, 490-495.
<a class="doi_inline" href="http://dx.doi.org/10.1145/3059454.3078697" target="_blank">http://dx.doi.org/10.1145/3059454.3078697</a>
<div class="pub_destination">
<a href="https://ideamache.ecologylab.net/e/FjaOtpE01Q/" target="_blank">
presentation mâché</a></div>
</div>
<div class="feature">
<!--<a href="research/publications/lupferKerne-patterns.pdf" target="_blank">-->
<a href="http://dl.acm.org/authorize?N31457" class="pub_destination" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/patterns-scoliosis_mache.png" />
</a>
Lupfer, N., Kerne, A., Webb, A.M., Linder R.,
<!--<a href="research/publications/lupferKerne-patterns.pdf" class="pub_destination" target="_blank">-->
<a href="http://dl.acm.org/authorize?N31457" class="pub_destination" target="_blank">
Patterns of Free-form Curation: Visual Thinking with Web Content</a>,
<i>Proc. ACM Multimedia 2016</i>, Amsterdam, Netherlands, 12-21 [20%].
<span class="pub_best">Best Paper Nominee (top 2%).</span>
<a class="doi" style="display: inline" href="http://dx.doi.org/10.1145/2964284.2964303" target="_blank">http://dx.doi.org/10.1145/2964284.2964303</a>
<div class="pub_destination">
<a href="https://ideamache.ecologylab.net/v/loPiQiD3WY/" target="_blank">
presentation mâché</a></div>
</div>
<div class="feature">
<a href="research/publications/distributedLiveness.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/distributedLiveness.png" />
</a>
Webb, A.M., Wang, C., Kerne, A., Cesar, P.,
<a href="research/publications/distributedLiveness.pdf" class="pub_destination" target="_blank">Distributed Liveness: Understanding How New Technologies Transform Performance Experiences</a>,
<i>Proc. ACM Conference on Computer-Supported Cooperative Work 2016</i>, 432-437 [25%].
<a class="doi" href="http://dx.doi.org/10.1145/2818048.2819974" target="_blank">http://dx.doi.org/10.1145/2818048.2819974</a>
</div>
<div class="feature">
<a href="research/publications/webbLayerFish.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/layerFish.png" />
</a>
Webb, A.M., Kerne, A., Brown, Z., Kim, J.H., Kellogg, E.,
<a href="research/publications/webbLayerFish.pdf" class="pub_destination" target="_blank">LayerFish: Bimanual Layering with a Fisheye In-Place</a>,
<i>Proc. ACM Conference on Interactive Surfaces and Spaces (ISS) 2016</i>, Niagara Falls, Canada [28%].
<a class="doi" href="http://dx.doi.org/10.1145/2992154.2992171" target="_blank">http://dx.doi.org/10.1145/2992154.2992171</a>
</div>
<div class="feature">
<a href="research/publications/webb%20kerne%202016%20free-form%20medium%20curating%20the%20digital.pdf" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/curatingTheDigital.png" />
Webb, A.M., Kerne, A., Linder, R., Lupfer, N, Qu, Y., Keith, K., Carrasco, M., Chen, Y.,
<a href="research/publications/webb%20kerne%202016%20free-form%20medium%20curating%20the%20digital.pdf" class="pub_destination" target="_blank">A Free-form Medium for Curating the Digital</a>,in England, D., Schiphorst, T., Bryan-Kinns, N. eds. <i>Curating the Digital Space for Art and Interaction</i>, Springer, 2016, 73-87.
<a class="doi_inline" href="http://dx.doi.org/10.1007/978-3-319-28722-5" target="_blank">http://dx.doi.org/10.1007/978-3-319-28722-5</a>
</div>
<div class="feature">
<a href="research/publications/chiplay2016photoNav.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/photoNav.png" />
</a>
Sharma, H.N., Toups Dugas, P. O., Dolgov, I., Kerne, A., Jain, A.,
<a href="research/publications/chiplay2016photoNav.pdf" target="_blank" class="pub_destination" >Evaluating Display Modalities Using a Mixed Reality Game</a>,
<i>Proc. ACM SIGCHI Annual Symposium on Computer-Human Interaction in Play (CHI PLAY) 2016</i>, 65-77 [29%].
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2967934.2968090">http://dx.doi.org/10.1145/2967934.2968090</a>
</div>
<div class="feature">
<a href="research/publications/webbGuiardWearables.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/guiardAbidingTouch.png" />
</a>
Webb, A.M., Pahud, M., Hinckley, K., Buxton, B.,
<a href="../research/publications/webbGuiardWearables.pdf" class="pub_destination" target="_blank">Wearables as Context for Guiard-abiding Bimanual Touch</a>,
<i>Proc. ACM Symposium on User Interface Software and Technology (UIST) 2016</i>, Tokyo, Japan [20.6%].
<a class="doi" href="http://dx.doi.org/10.1145/2984511.2984564" target="_blank">http://dx.doi.org/10.1145/2984511.2984564</a>
</div>
<div class="feature">
<a href="research/publications/rhema_vast_dc.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/rhema_vast_dc_thumb.png" />
</a>
Linder, R.,
<a href="research/publications/rhema_vast_dc.pdf" target="_blank" class="pub_destination">Analyzing Creative Processes: Qualitative Methods Meets Visual Analytics</a>,
<i>IEEE Conference on Visual Analytics Science and Technology<a target="_blank" class="pub_destination" href="http://ieeevis.org/year/2016/info/overview-amp-topics/doctoral-colloquium"> VAST 2016 Doctoral Colloquium</a></i>, Baltimore, Maryland.
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32140" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/playingatplanning.png" />
</a>
Toups Dugas, P. O., Hamilton, W.A., Alharthi, S.A.,
<a href="http://dl.acm.org/authorize?N32140" target="_blank" class="pub_destination" >Playing at Planning: Game Design Patterns from Disaster Response Practice</a>,
<i>Proc. ACM SIGCHI Annual Symposium on Computer-Human Interaction in Play (CHI PLAY) 2016</i>.
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2967934.2968089">http://dx.doi.org/10.1145/2967934.2968089</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32141" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/rivulet_thb.png" />
</a>
Hamilton, W.A., Tang, J.C., Venolia, G., Inkpen, K., Zillner, J., Huang, D.,
<a href="http://dl.acm.org/authorize?N32141" target="_blank" class="pub_destination" >Rivulet: Exploring Participation in Live Events through Multi-Stream Experiences</a>,
<i>Proc. ACM International Conference on Interactive Experiences for Television and Online (TVX) Video 2016</i>, 31-42.
<span class="pub_best">Best Paper Award.</span>
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2932206.2932211">http://dx.doi.org/10.1145/2932206.2932211</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32142" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/lmpthumb.png" />
</a>
Hamilton, W.A.,
<a href="http://dl.acm.org/authorize?N32142" target="_blank" class="pub_destination" >Live Media Places: Participation in Online Education through Composition</a>,
<i>Proc. 2016 Extended Abstracts</i>, 213-217. <a class="doi" target="blank" href="http://dx.doi.org/10.1145/2851581.2859017">http://dx.doi.org/10.1145/2851581.2859017</a>
</div>
<div class="feature">
<a href="research/publications/crowdpoweredIdeasWorkshopLinder.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/crowdpoweredIdeasWorkshopLinder.png" />
</a>
Linder, R. and Kerne, A.,
<a href="research/publications/crowdpoweredIdeasWorkshopLinder.pdf" target="_blank" class="pub_destination">Composing Everyday Plans on Pinterest: 5 Minute Projects and Gathered Ideas</a>,
<i>CHI 2016 Workshop: <a target="_blank" class="pub_destination" href="http://research.microsoft.com/en-us/um/people/teevan/misc/microproductivity/"> Productivity Decomposed: Getting Big Things Done with Little Microtasks</a></i>, San Jose, California.
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31249" target="_blank" class="pub_destination">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/integrateExplorationCuration.png" />
</a>
Qu, Y.
<a href="http://dl.acm.org/authorize?N31249" target="_blank" class="pub_destination">
Supporting Ideation by Integrating Exploratory Search, Browsing, and Curation</a>,
<i>Proc. ACM Conference on Human Information Interaction and Retrieval (CHIIR) 2016</i>, 361-363.
<a class="doi" href="http://dx.doi.org/10.1145/2854946.2854948" target="_blank">http://dx.doi.org/10.1145/2854946.2854948</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31458" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/twb_oscars.png" />
</a>
Jain, A., Lupfer, N., Qu, Y., Linder, R., Kerne, A., Smith, S.M.,
<a href="http://dl.acm.org/authorize?N31458" class="pub_destination" target="_blank">Evaluating TweetBubble with Ideation Metrics of Exploratory Browsing,
</a>
<i>Proc. ACM Creativity and Cognition 2015</i>, 178-187 [28%].
<span class="pub_best">Best Paper Honorable Mention (top 2%).</span>
<a class="doi" href="http://dx.doi.org/10.1145/2757226.2757239" target="_blank">http://dx.doi.org/10.1145/2757226.2757239</a>
<div class="pub_destination">
<a href="https://ideamache.ecologylab.net/e/2t7vxnmFDn/" target="_blank">
presentation mâché</a> |
<a href="https://youtu.be/IekEK5XxYPY" target="_blank">video</a></div>
</div>
<div class="feature">
<!-- <a href="research/publications/mache_present.pdf" target="_blank"> -->
<a href="http://dl.acm.org/authorize?N31466" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/machePresentIcon.png" />
</a>
Linder, R., Lupfer, N., Kerne, A., Webb, A. M., Hill, C., Qu, Y., Keith, K., Carrasco M., Kellogg, E.
<!-- <a href="research/publications/mache_present.pdf" class="pub_destination" target="_blank">Beyond Slideware: How a Free-form Presentation Medium Stimulates Free-form Thinking in the Classroom,
</a> -->
<a href="http://dl.acm.org/authorize?N31466" class="pub_destination" target="_blank">Beyond Slideware: How a Free-form Presentation Medium Stimulates Free-form Thinking in the Classroom,
</a>
<i>Proc. ACM Creativity and Cognition 2015</i>, 285-294 [28%].
<a class="doi" href="http://dx.doi.org/10.1145/2757226.2757251" target="_blank">http://dx.doi.org/10.1145/2757226.2757251</a>
<!-- uncomment below when active -->
<!-- <a class="doi" href="http://dx.doi.org/10.1145/2757226.2757251" target="_blank">http://dx.doi.org/10.1145/2757226.2757251</a> -->
</div>
<div class="feature">
<a href="research/publications/webbPenTouchDiagramming.pdf" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/penTouchDiagramming.png" /></a>
Webb, A.M.,
<a class="pub_destination" href="research/publications/webbPenTouchDiagramming.pdf" target="_blank">
Pen + Touch Diagramming to Stimulate Design Ideation</a>,
<i>Proc. ACM Creativity and Cognition 2015</i>, Graduate Symposium, 331-332.
<a class="doi" href="http://dx.doi.org/10.1145/2757226.2764766" target="_blank">http://dx.doi.org/10.1145/2757226.2764766</a>
</div>
<div class="feature">
<a href="research/publications/EvolutionWorks.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/evolutionworks.png" />
</a>
Wilkins, J., Järvi, J., Jain, A., Kejriwal, G., Kerne, A., Kumar, V.,
<a href="research/publications/EvolutionWorks.pdf" class="pub_destination" target="_blank">EvolutionWorks: Towards Improved Visualization of Citation Networks,
</a>
<i>Proc. IFIP International Conference on Computer-Human Interaction (INTERACT) 2015</i>, 213-230 [29.9%].
<a class="doi" href="http://dx.doi.org/10.1007/978-3-319-22723-8_17" target="_blank">http://dx.doi.org/10.1007/978-3-319-22723-8_17</a>
</div>
<div class="feature">
<a href="research/publications/Lupfer_Hamiliton_ArtCHI_Exhibition.pdf" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/artchi_thumb.jpg" /></a>
Lupfer, N., Hamiliton, W. Webb, A., Linder, R., Edmonds, E., and Kerne, A.,
<a class="pub_destination" href="research/publications/Lupfer_Hamiliton_ArtCHI_Exhibition.pdf" target="_blank">
The Art.CHI Gallery: An Embodied Iterative Curation Experience</a>,
Interactivity Exhibit,
<i>Proc CHI 2015 EA</i>. <!--, 1165-1170 [%].-->
<a class="doi" href="http://dx.doi.org/10.1145/2702613.2725457" target="_blank">http://dx.doi.org/10.1145/2702613.2725457</a>
</div>
<div class="feature">
<!-- <a href="research/publications/quarry.pdf" target="_blank"><img -->
<a href="http://dl.acm.org/authorize?N31468" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/quarry.png" /></a>
R., Linder, and Koh, E.,
<!-- <a class="pub_destination" href="research/publications/quarry.pdf" target="_blank">
-->
<a class="pub_destination" href="http://dl.acm.org/authorize?N31468" target="_blank">
Quarry: Picking From Examples to Explore Big Data</a>,
<i>Proc CHI 2015 EA</i> 1869-1874. <!--, 1165-1170 [%].-->
<a class="doi" href="http://dx.doi.org/10.1145/2702613.2732933" target="_blank">http://dx.doi.org/10.1145/2702613.2732933</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32144" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/commframework.png" />
</a>
Toups Dugas, P. O., Hammer, J., Hamilton, W., Jarrah, A., Graves, W., and Garretson, O.
<a class="pub_destination" href="http://dl.acm.org/authorize?N32144" target="_blank">
A Framework for Cooperative Communication Game Mechanics from Grounded Theory</a>,
<i>Proc CHI PLAY 2014</i>,
<a class="doi" href="http://dx.doi.org/10.1145/2658537.2658681" target="_blank">DOI:10.1145/2658537.2658681</a>
</div>
<div class="feature">
<a
href="http://dl.acm.org/authorize?N31023.pdf"
target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/curationIdeationGaugeIcon.png" />
</a>
Kerne, A., Webb, A.M., Smith, S.M., Linder, R., Lupfer, N., Qu, Y., Moeller, J., Damaraju, S.,
<a href="http://dl.acm.org/authorize?N31023" target="_blank" class="pub_destination">
Using Metrics of Curation to Evaluate Information-based Ideation</a>,
<i>ACM Transactions on Computer-Human Interaction (ToCHI)</i>,
21(3), June 2014, 48 pages.
<a class="doi" href="http://dx.doi.org/10.1145/2591677" target="_blank">http://dx.doi.org/10.1145/2591677</a>
<a class="pub_video" href="https://docs.google.com/document/d/1BQUH0oZNmDvlX-NO7nsPtED7o_RZ2JS-z-bW0w82saA/edit?usp=sharing" target="_blank">reader's guide</a>
</div>
<div class="feature">
<a href="http://link.springer.com/article/10.1007%2Fs10606-014-9211-4#page-1" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/1x1.gif" />
</a>
Pipek, V., Liu, S., Kerne, A.
<a href="http://link.springer.com/article/10.1007%2Fs10606-014-9211-4#page-1" target="_blank" class="pub_destination">
Crisis Informatics and Collaboration: A Brief Introduction</a>,
<i>Journal of Computer Supported Cooperative Work (JCSCW)</i>,
23(4), August 2014, 8 pages.
<a class="doi" href="http://dx.doi.org/10.1007/s10606-014-9211-4" target="_blank">http://dx.doi.org/10.1007/s10606-014-9211-4</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31240" target="_blank" class="pub_destination">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/eics-debi.png" />
</a>
Qu, Y., Kerne, A., Lupfer, N., Linder, R., Jain, A.,
<a href="http://dl.acm.org/authorize?N31240" target="_blank" class="pub_destination">
Metadata Type System: Integrate Presentation, Data Models and Extraction to Enable Exploratory Browsing Interfaces</a>,
<i>Proc. ACM Engineering Interactive Computing Systems (EICS) 2014</i>, 107-116 [18%].
<a class="doi_inline" href="http://dx.doi.org/10.1145/2607023.2607030" target="_blank">http://dx.doi.org/10.1145/2607023.2607030</a>
<a class="pub_video" href="https://www.youtube.com/watch?v=CbtCZSHsenA" target="_blank">[video]</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32255" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/twitch.png" />
</a>
Hamilton, W., Garretson, O., and Kerne, A.
<a href="http://dl.acm.org/authorize?N32255" target="_blank" class="pub_destination">Streaming on Twitch: Fostering Participatory Communities of Play within Live Mixed Media</a>,
<i>Proc. CHI 2014</i>, 1315-1324 [23%].
<a class="doi_inline" href="http://dx.doi.org/10.1145/2556288.2557048" target="_blank">http://dx.doi.org/10.1145/2556288.2557048</a>
<a target="_blank" class="pub_video" href="https://www.youtube.com/watch?v=WXxptc_Ctt0">[video]</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31467" target="_blank" class="pub_destination">
<img
class="illustrate_left"
height="100"
src="research/images/pinterest_thumb.png" />
</a>
Linder, R., Snodgrass, C., and Kerne, A.
<!-- <a href="research/publications/everyday_ideation_pinterest.pdf" target="_blank" class="pub_destination">Everyday Ideation: All of My Ideas Are On Pinterest</a>,
-->
<a href="http://dl.acm.org/authorize?N31467" target="_blank" class="pub_destination">Everyday Ideation: All of My Ideas Are On Pinterest</a>,
<i>Proc. CHI 2014</i>, 2411-2420 [23%].
<a class="doi" href="http://dx.doi.org/10.1145/2556288.2557273" target="_blank">http://dx.doi.org/10.1145/2556288.2557273</a>
</div>
<div class="feature">
<a href="research/publications/webbEmbodiedDiagrammingGestures.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/embodiedDiagrammingGestures.png" />
</a>
Webb, A.M. and Kerne, A.,
<a href="research/publications/webbEmbodiedDiagrammingGestures.pdf" target="_blank" class="pub_destination">Embodying Diagramming through Pen + Touch Gestures</a>,
<i>CHI 2014 Workshop: Gesture Interaction Design: Communication and
Cognition</i>, Toronto, Canada.
</div>
<div class="feature">
<a href="research/publications/webbMultiScaleCuration.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/digitalCurated.png" />
</a>
Webb, A.M., Kerne, A., Linder, R., Lupfer, N., Qu, Y., Keith, K., Carrasco, M.,
<a href="research/publications/webbMultiScaleCuration.pdf" target="_blank" class="pub_destination">Multi-Scale Information Composition: a New Medium for Freeform Art Curation in the Cloud</a>,
<i>CHI 2014 Workshop: Curating the Digital: Spaces for Art and Interaction</i>, Toronto, Canada.
<a target="_blank" class="pub_video" style="display: block;" href="http://ideamache.ecologylab.net/v/lj3V2VT0eR/">[information composition]</a>
</div>
<div class="feature">
<a href="research/publications/coordMixedReality2013.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/coordMixedReality2013.png" />
</a>
Fischer, J.E., Jiang, W., Kerne, A., Greenhalgh, C., Ramchurn, S.D., Reece,S., Pantidi, N., Rodden, T.,
<a href="research/publications/coordMixedReality2013.pdf" target="_blank" class="pub_destination">Supporting Team Coordination on the Ground: Requirements from a Mixed-Reality Game</a>,
<i>Proc. Design of Cooperative Systems (COOP) 2014</i>, 49-67 [42%].
<a class="doi" target="blank" href="http://dx.doi.org/10.1007/978-3-319-06498-7_4">http://dx.doi.org/10.1007/978-3-319-06498-7_4</a>
</div>
<div class="feature">
<a href="research/publications/feiNFCTransSurfacePortal2013.pdf" target="_blank" class="pub_destination">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/trans-surface.png" />
</a>
Fei, S., Webb, A.M., Kerne, A., Qu, Y., and Jain, A.,
<a href="research/publications/feiNFCTransSurfacePortal2013.pdf" target="_blank" class="pub_destination">Peripheral Array of Tangible NFC Tags: Positioning Portals for Embodied Trans-Surface Interaction</a>,
<i>Proc. ACM Interactive Tabletops and Surfaces 2013</i>, 33-36.
[29%].
<a class="doi" href="http://dx.doi.org/10.1145/2512349.2512820" target="_blank">http://dx.doi.org/10.1145/2512349.2512820</a>
<a target="_blank" class="pub_video" href="https://www.youtube.com/watch?v=Z-rTTJAH2-k">[video]</a>
</div>
<div class="feature">
<a href="research/publications/curatingRichBookmarks.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/curatingRichBookmarksCC2013.png" />
</a>
Webb, A.M., Linder, R., Kerne, A., Lupfer, N., Qu, Y., Poffenberger, B., and Revia, C.,
<a href="research/publications/curatingRichBookmarks.pdf" target="_blank" class="pub_destination">Promoting Reflection and Interpretation in Education: Curating Rich Bookmarks as Information Composition</a>,
<i>Proc. Creativity and Cognition 2013</i>, 53-62 [32%].
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2466627.2466636">http://dx.doi.org/10.1145/2466627.2466636</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31341" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/ecseThumbnail.png" />
</a>
Kerne, A., Latulipe, C., Drucker, S.M., Candy, L., Höök, K., Webb, A.M., and Carroll, E.
<a href="http://dl.acm.org/authorize?N31341" target="_blank" class="pub_destination">Evaluation methods for creativity support environments</a>,
<i>Proc CHI 2013 Extended Abstracts</i>, 3295-3298.
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2468356.2479670">http://dx.doi.org/10.1145/2468356.2479670</a>
</div>
<div class="feature">
<a href="research/publications/Searching_to_Measure_the_Novelty_of_Collected_Ideas.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/Searching_to_Measure_the_Novelty_of_Collected_Ideas.png" />
</a>
Linder, R., Webb, A.M., and Kerne, A.,
<a class="pub_destination" href="research/publications/Searching_to_Measure_the_Novelty_of_Collected_Ideas.pdf" target="_blank">Searching to Measure the Novelty of Collected Ideas</a>,
<i>CHI 2013 Evaluation Methods for Creativity Support Environments Workshop</i>, Paris, France.
</div>
<div class="feature">
<a href="research/publications/multiTapIUI2013.pdf" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/multiTapIcon.png" />
</a>
Damaraju, S., Seo, J.H., Hammond, T., Kerne, A.,
<a class="pub_destination" href="research/publications/multiTapIUI2013.pdf" target="_blank">
Multi-tap sliders: advancing touch interaction for parameter adjustment</a>,
<i>Proc IUI 2013</i>, 445-452 [22%].
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2468356.2479670">http://dx.doi.org/10.1145/2468356.2479670</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32256" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/rtsUISTPic.png" />
</a>
Hamilton, W., Kerne, A., and Robbins, T.,
<a class="pub_destination" href="http://dl.acm.org/authorize?N32256" target="_blank">High-Performance Pen + Touch Modality Interactions: A Real-Time Strategy Game eSports Context</a>,
<i>Proc. UIST 2012</i>, 309-318 [21%].
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2380116.2380156">http://dx.doi.org/10.1145/2380116.2380156</a>
<a target="_blank" class="pub_video" href="https://www.youtube.com/watch?v=Tyb4PAlstm8">[video]</a>
</div>
<div class="feature">
<a target="_blank" href="research/publications/moellerKerneZeroTouchCHI2012.pdf"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/zerotouch-icon.png" /></a>
Moeller, J. and Kerne, A.,
<a class="pub_destination" target="_blank" href="research/publications/moellerKerneZeroTouchCHI2012.pdf">ZeroTouch: An Optical Multi-Touch and Free-Air Interaction Architecture</a>,
<i>Proc. CHI 2012</i>, 2165-2174 [23%].
<div class="pub_best">Best Paper Honorable Mention.</div>
<a class="doi" href="http://dx.doi.org/10.1145/2207676.2208368" target="_blank">http://dx.doi.org/10.1145/2207676.2208368</a>
<a target="_blank" class="pub_video" href="research/images/chi%20video%20zerotouch.mov">[video]</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32258" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/rummy_tile.png" />
</a>
Kerne, A., Hamilton, W., Toups Dugas, P. O.,
<a class="pub_destination" href="http://dl.acm.org/authorize?N32258" target="_blank">
Culturally Based Design: Embodying Trans-Surface Interaction in Rummy</a>,
<i>Proc CSCW 2012</i>, 509-518 [top 9%].
<a class="doi" href="http://dx.doi.org/10.1145/2145204.2145284" target="_blank">http://dx.doi.org/10.1145/2145204.2145284</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32257" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/pihcvid.png" />
</a>
Hamilton, W., Kerne, A., and Moeller, J.
<a class="pub_destination" href="http://dl.acm.org/authorize?N32257" target="_blank">Pen-in-Hand Command: NUI for Real-Time Strategy eSports</a>,
<i>Proc CHI EA 2012 (Video Showcase)</i>, 1455.
<a class="doi" target="blank" href="http://dx.doi.org/10.1145/2212776.2212483">http://dx.doi.org/10.1145/2212776.2212483</a>
<a target="_blank" class="pub_video" href="https://www.youtube.com/watch?v=t4D8atZf2z4">[video]</a>
</div>
<div class="feature">
<a href="research/publications/creativeVisualThinkingThroughInformationComposition+Diagramming.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/infoCompDiagrammingVisualThinking.jpg" />
</a>
Webb, A.M. and Kerne, A.,
<a class="pub_destination" href="research/publications/creativeVisualThinkingThroughInformationComposition+Diagramming.pdf" target="_blank">Creative Visual Thinking through Information Composition + Diagramming</a>,
<i>CHI 2012 Visual Thinking & Digital Imagery Workshop</i>, Austin, TX.
</div>
<div class="feature">
<a href="research/publications/Events_Across_Time_and_Place.pdf" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/Events_Across_Time_and_Place_Icon.png" />
</a>
Linder, R. and Kerne, A.,
<a class="pub_destination" href="research/publications/Events_Across_Time_and_Place.pdf" target="_blank">Using Information Composition to Represent Connections Among Events Across Time and Place</a>,
<i>CHI 2012 Workshop on Heritage Matters: Designing for current and future values through digital and social technologies</i>.
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32259" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/tecGameMechanicsV019-4.png" /></a>
Toups Dugas, P. O., Kerne, A., Hamilton, W. A.
<a class="pub_destination" href="http://dl.acm.org/authorize?N32259" target="_blank">
The Team Coordination Game: A zero-fidelity simulation abstracted from fire emergency response work practice</a>,
<i>ACM Transactions on Computer-Human Interaction (ToCHI)</i>, 18(4), December 2011, 37 pages.
<a class="doi" href="http://dx.doi.org/10.1145/2063231.2063237" target="_blank">http://dx.doi.org/10.1145/2063231.2063237</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N32250" target="_blank"><img
class="illustrate_left" width="144" height="100" src="research/images/ttecCHI2011Icon.png" /></a>
Toups Dugas, P. O., Kerne, A., Hamilton, W. A., Shahzad, N.
<a class="pub_destination" href="http://dl.acm.org/authorize?N32250" target="_blank">
Zero-Fidelity Simulation of Fire Emergency Response: Improving Team Coordination Learning</a>,
<i>Proc CHI 2011</i>, 1959–1968 [26%].
<a class="doi" href="http://dx.doi.org/10.1145/1978942.1979226" target="_blank">http://dx.doi.org/10.1145/1978942.1979226</a>
<a target="_blank" class="pub_video" href="https://www.youtube.com/watch?v=0qzuF60ItEs">[video]</a>
</div>
<div class="feature">
<a href="research/publications/webb-messyOrganizer.pdf" target="_blank"><img
class="illustrate_left"
width="144"
src="research/images/messyOrganizerJCDL.jpg" /></a>
Webb, A.M., Kerne, A.
<a class="pub_destination" href="research/publications/webb-messyOrganizer.pdf" target="_blank">
Integrating Implicit Structure Visualization with Authoring Promotes Ideation</a>,
<i>Proc Joint ACM/IEEE Conf on Digital Libraries (JCDL) 2011</i>, 203-212 [23%].
<a class="doi" href="http://dx.doi.org/10.1145/1998076.1998116" target="_blank">http://dx.doi.org/10.1145/1998076.1998116</a>
<a target="_blank" class="pub_video" href="https://www.youtube.com/watch?v=Nga8DVTg0mM">[video]</a>
</div>
<div class="feature">
<a href="research/publications/SmithLinseyKerne_2010.pdf" target="_blank"><img
class="illustrate_left"
width="144"
src="research/images/evolvedAnalogiesIcon.png" /></a>
Smith, S.M., Linsey, J.S., Kerne, A.
<a class="pub_destination" href="research/publications/SmithLinseyKerne_2010.pdf" target="_blank">
Using Evolved Analogies to Overcome Creative Design Fixation</a>,
<i>Proc Design Creativity 2010</i>, 35-39 [33%].
<a class="doi" href="http://dx.doi.org/10.1007/978-0-85729-224-7_6" target="_blank">http://dx.doi.org/10.1007/978-0-85729-224-7_6</a>
</div>
<div class="feature">
<a href="research/publications/icmi2011ComparingMultitouch-damaraju.pdf" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/comparingMultitouchInterface.png" /></a>
Damaraju, S., Kerne, A.,
<a class="pub_destination" href="research/publications/icmi2011ComparingMultitouch-damaraju.pdf" target="_blank">
Comparing Multi-Touch Interaction Techniques for Manipulation of an Abstract Parameter Space</a>,
<i>Proc. International Conference on Multimodal Interaction (ICMI) 2011</i>, 221-224 [39%].
<a class="doi" href="http://dx.doi.org/10.1145/2070481.2070520" target="_blank">http://dx.doi.org/10.1145/2070481.2070520</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31241" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/integratingSearches.png" />
</a>
Qu, Y., Kerne, A., Webb, A.M., Herstein, A.
<a class="pub_destination" href="http://dl.acm.org/authorize?N31241" target="_blank">
Interoperable Metadata Semantics with Meta-Metadata: A Use Case Integrating Search Engines</a>,
<i>Proc ACM DocEng 2011</i>, 171-174 [53%].
<a class="doi" href="http://dx.doi.org/10.1145/2034691.2034729" target="_blank">http://dx.doi.org/10.1145/2034691.2034729</a>
</div>
<div class="feature">
<a href="research/publications/intangibleCanvas.pdf" target="_blank"> <img
class="illustrate_left"
width="144"
src="research/images/intangibleicon.png" /></a>
Moeller, J., Lupfer, N., Hamilton, B., Lin, H., Kerne, A.,
<a class="pub_destination" href="research/publications/intangibleCanvas.pdf" target="_blank">
intangibleCanvas: Free-Air Finger Painting on a Projected Canvas </a>,
<i>Proc CHI 2011 EA</i>, 1165-1170 [46%].
<a class="doi" href="http://dx.doi.org/10.1145/1979742.1979817" target="_blank">http://dx.doi.org/10.1145/1979742.1979817</a>
</div>
<div class="feature">
<a href="research/publications/moeller-zerotouch.pdf" target="_blank"><img
class="illustrate_left"
width="144"
height="100"
src="research/images/zerotouchicon.jpg" /></a>
Moeller, J. and Kerne, A.,
<a class="pub_destination" href="research/publications/moeller-zerotouch.pdf" target="_blank">
ZeroTouch: A Zero-Thickness Optical Multi-Touch Force Field</a>, Interactivity Exhibit,
<i>Proc CHI 2011 EA</i>, 1165-1170 [46%].
<a class="doi" href="http://dx.doi.org/10.1145/1979742.1979710" target="_blank">http://dx.doi.org/10.1145/1979742.1979710</a>
<a class="pub_video" target="_blank" href="research/images/zerotouch.mov">[video]</a>
</div>
<div class="feature">
<a href="http://dl.acm.org/authorize?N31242" target="_blank">
<img
class="illustrate_left"
width="144"
height="100"
src="research/images/metaMetadataCIKM.jpg" />
</a>
Kerne, A., Qu, Y., Webb, A.M., Damaraju, S., Lupfer, N., Mathur, A.
<a class="pub_destination" href="http://dl.acm.org/authorize?N31242" target="_blank">
Meta-Metadata: A Metadata Semantics Language for Collection Representation Applications</a>,
<i>Proc ACM Conference on Information and Knowledge Management (CIKM) 2010</i>, 1129-1138 [12.7%].