-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstaff.json
More file actions
1808 lines (1808 loc) · 566 KB
/
staff.json
File metadata and controls
1808 lines (1808 loc) · 566 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"mhanheide": {
"sys_id": "9784d77a-95ab-4b79-b2b7-fec86960cadb",
"personId": "9784d77a-95ab-4b79-b2b7-fec86960cadb",
"prefixHonorific": "Prof",
"familiarName": "Marc",
"firstName": "Marc",
"middleName": "Alexander",
"surname": "Hanheide",
"orcid": "0000-0001-7728-1849",
"telephone": "01522886966",
"staffEmailAddress": "mhanheide@lincoln.ac.uk",
"samAccount": "mhanheide",
"jobTitle": "Professor of Intelligent Robotics & Interactive Systems",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Hanheide2023,title = {Autonomous Topological Optimisation for Multi-robot Systems in Logistics},journal = {Proceedings of the ACM Symposium on Applied Computing},year = {2023},pages = {791-799},author = {Zhu, Z. and Das, G. and Hanheide, M.}}",
"@article{Hanheide2021,title = {Maximising Availability of Transportation Robots Through Intelligent Allocation of~Parking Spaces},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {13054 LNAI},pages = {337-348},author = {Ravikanna, R. and Hanheide, M. and Das, G. and Zhu, Z.}}",
"@article{Hanheide2010,title = {A calibration-free head gesture recognition system with online capability},journal = {Proceedings - International Conference on Pattern Recognition},year = {2010},pages = {3814-3817},author = {W{\\\"o}hler, N.-C. and Gro{\\ss}ekath{\\\"o}fer, U. and Dierker, A. and Hanheide, M. and Kopp, S. and Hermann, T.}}",
"@inproceedings{lirolem6930, month= {August}, author= {Manja Lohse and Marc Hanheide}, note= {In a society that keeps getting closer in touch with social robots it is very important to include potential users throughout the design of the systems. This is an important rationale to build robots that provide services and assistance in a socially acceptable way and influence societies in a positive way. In the process, methods are needed to rate the robot interaction performance. We present a multimodal corpus of na\\\"ive users interacting with an autonomously operating system. It comprises data that, to our conviction, reveal a lot about human-robot interaction (HRI) in general and social acceptance, in particular. In both, the evaluation and the design process we took into account Clarkson and Arkin's heuristics for HRI (developed by adapting Nielsen's and Scholtz' heuristics to robotics) 1. We discuss exemplary results to show the use of heuristics in the design of socially acceptable robots.}, booktitle= {Robots as Social Actors Workshop: International Symposium on Robot and Human Interactive Communication (RO-MAN 08)}, editor= {B. Gottfried and H. Aghajan}, title= {Evaluating a social home tour robot applying heuristics}, pages= {1584--1589}, year= {2008}, keywords= {ARRAY(0x7f43493c1068)}, url= {http://eprints.lincoln.ac.uk/6930/}, abstract= {In a society that keeps getting closer in touch with social robots it is very important to include potential users throughout the design of the systems. This is an important rationale to build robots that provide services and assistance in a socially acceptable way and influence societies in a positive way. In the process, methods are needed to rate the robot interaction performance. We present a multimodal corpus of na\\\"ive users interacting with an autonomously operating system. It comprises data that, to our conviction, reveal a lot about human-robot interaction (HRI) in general and social acceptance, in particular. In both, the evaluation and the design process we took into account Clarkson and Arkin's heuristics for HRI (developed by adapting Nielsen's and Scholtz' heuristics to robotics) 1. We discuss exemplary results to show the use of heuristics in the design of socially acceptable robots.}}\n\n",
"@article{Hanheide2015,title = {A computational model of human-robot spatial interactions based on a qualitative trajectory calculus},journal = {Robotics},year = {2015},volume = {4},number = {1},pages = {63-102},author = {Dondrup, C. and Bellotto, N. and Hanheide, M. and Eder, K. and Leonards, U.}}",
"@article{Hanheide2023,title = {Learned Long-Term Stability Scan Filtering for Robust Robot Localisation in Continuously Changing Environments},journal = {Proceedings of the 11th European Conference on Mobile Robots, ECMR 2023},year = {2023},author = {Hroob, I. and Molina, S. and Polvara, R. and Cielniak, G. and Hanheide, M.}}",
"@article{Hanheide2022,title = {Learning on the Job: Long-Term Behavioural Adaptation in Human-Robot Interactions},journal = {IEEE Robotics and Automation Letters},year = {2022},volume = {7},number = {3},pages = {6934-6941},author = {Duchetto, F.D. and Hanheide, M.}}",
"@inproceedings{lirolem8323, month= {June}, author= {C. Lang and S. Wachsmuth and H. Wersing and Marc Hanheide}, note= {Conference Code: 81678}, booktitle= {Conference of 2010 IEEE Computer Society Conference on Computer Vision and Pattern Recognition - Workshops, CVPRW 2010}, address= {San Francisco, CA}, title= {Facial expressions as feedback cue in human-robot interaction: a comparison between human and automatic recognition performances}, year= {2010}, journal= {2010 IEEE Computer Society Conference on Computer Vision and Pattern Recognition - Workshops, CVPRW 2010}, pages= {79--85}, keywords= {ARRAY(0x7f43493bfc80)}, url= {http://eprints.lincoln.ac.uk/8323/}, abstract= {Facial expressions are one important nonverbal communication cue, as they can provide feedback in conversations between people and also in human-robot interaction. This paper presents an evaluation of three standard pattern recognition techniques (active appearance models, gabor energy filters, and raw images) for facial feedback interpretation in terms of valence (success and failure) and compares the results to the human performance. The used database contains videos of people interacting with a robot by teaching the names of several objects to it. After teaching, the robot should term the objects correctly. The subjects reacted to its answer while showing spontaneous facial expressions, which were classified in this work. One main result is that an automatic classification of facial expressions in terms of valence using simple standard pattern recognition techniques is possible with an accuracy comparable to the average human classification rate, but with a high variance between different subjects, likewise to the human performance. \\^A\\\\copyright 2010 IEEE.}}\n\n",
"@article{Hanheide2024,title = {Probabilistic model-checking of collaborative robots: A human injury assessment in agricultural applications},journal = {Computers and Electronics in Agriculture},year = {2024},volume = {222},author = {Guevara, L. and Khalid, M. and Hanheide, M. and Parsons, S.}}",
"@article{Hanheide2022,title = {EDLaaS:Fully Homomorphic Encryption over Neural Network Graphs for Vision and Private Strawberry Yield Forecasting},journal = {Sensors},year = {2022},volume = {22},number = {21},author = {Onoufriou, G. and Hanheide, M. and Leontidis, G.}}",
"@inproceedings{lirolem6939, booktitle= {5th International Conference on Computer Vision Systems (ICVS 2007)}, editor= {B. Gottfried and H. Aghajan}, title= {Active vision-based localization for robots in a home-tour scenario}, author= {Falk Schubert and Thorsten P. Spexard and Marc Hanheide and Sven Wachsmuth}, publisher= {Applied Computer Science Group, Bielefeld University, Germany}, year= {2007}, note= {Self-Localization is a crucial task for mobile robots. It is not only a requirement\r\nfor auto navigation but also provides contextual information to support\r\nhuman robot interaction (HRI). In this paper we present an active vision-based\r\nlocalization method for integration in a complex robot system to work in human\r\ninteraction scenarios (e.g. home-tour) in a real world apartment. The holistic\r\nfeatures used are robust to illumination and structural changes in the scene. The\r\nsystem uses only a single pan-tilt camera shared between different vision applications\r\nrunning in parallel to reduce the number of sensors. Additional information\r\nfrom other modalities (like laser scanners) can be used, profiting of an integration\r\ninto an existing system. The camera view can be actively adapted and the\r\nevaluation showed that different rooms can be discerned.}, keywords= {ARRAY(0x7f43493c12d8)}, url= {http://eprints.lincoln.ac.uk/6939/}, abstract= {Self-Localization is a crucial task for mobile robots. It is not only a requirement\r\nfor auto navigation but also provides contextual information to support\r\nhuman robot interaction (HRI). In this paper we present an active vision-based\r\nlocalization method for integration in a complex robot system to work in human\r\ninteraction scenarios (e.g. home-tour) in a real world apartment. The holistic\r\nfeatures used are robust to illumination and structural changes in the scene. The\r\nsystem uses only a single pan-tilt camera shared between different vision applications\r\nrunning in parallel to reduce the number of sensors. Additional information\r\nfrom other modalities (like laser scanners) can be used, profiting of an integration\r\ninto an existing system. The camera view can be actively adapted and the\r\nevaluation showed that different rooms can be discerned.}}\n\n",
"@article{Hanheide2014,title = {A probabilistic model of human-robot spatial interaction using a qualitative trajectory calculus},journal = {AAAI Spring Symposium - Technical Report},year = {2014},volume = {SS-14-06},pages = {18-25},author = {Dondrup, C. and Bellotto, N. and Hanheide, M.}}",
"@article{Hanheide2021,title = {Efficient and Robust Orientation Estimation of Strawberries for Fruit Picking Applications},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2021},volume = {2021-May},pages = {6818-6823},author = {Wagner, N. and Kirk, R. and Hanheide, M. and Cielniak, G.}}",
"@phdthesis{lirolem6748, month= {July}, title= {Objektbezogene 3D-Erkennung automatisch generierter Konturmodelle in Intensit\\\"atsbildern}, school= {Universitat Bielefeld}, author= {Marc Hanheide}, year= {2001}, note= {Abstract}, keywords= {ARRAY(0x7f43493c15d8)}, url= {http://eprints.lincoln.ac.uk/6748/}, abstract= {Abstract}}\n\n",
"@article{Hanheide2022,title = {Environment-aware Interactive Movement Primitives for Object Reaching in Clutter},journal = {IEEE International Conference on Automation Science and Engineering},year = {2022},volume = {2022-August},pages = {493-498},author = {Mghames, S. and Hanheide, M.}}",
"@article{Hanheide2010,title = {Facial expressions as feedback cue in human-robot interaction-a comparison between human and automatic recognition performances},journal = {2010 IEEE Computer Society Conference on Computer Vision and Pattern Recognition - Workshops, CVPRW 2010},year = {2010},pages = {79-85},author = {Lang, C. and Wachsmuth, S. and Wersing, H. and Hanheide, M.}}",
"@article{Hanheide2009,title = {Attention via synchrony: Making use of multimodal cues in social learning},journal = {IEEE Transactions on Autonomous Mental Development},year = {2009},volume = {1},number = {1},pages = {55-67},author = {Rolf, M. and Hanheide, M. and Rohlfing, K.J.}}",
"@article{lirolem6702, volume= {10}, number= {S2}, month= {September}, author= {Annika Peters and Petra Weiss and Marc Hanheide}, note= {In humanhuman interaction, social signals or unconscious cues are sent and received by interaction partners. These signals and cues influence the interaction partner wanted and unwantedsometimes to achieve a distinct goal. To be aware of those signals and especially of implicit cues is crucial when interaction between a robot and a human is modelled. This project aims to use implicit body and machine movements to make HRI smoother and simpler. A robot should not only consider social rules with respect to proxemics in communication or in encounter people. It should also be able to signal and understand certain spatial constraints. A first spatial and situational constraint, which this research project currently focuses on, is avoiding each other. This includes not only passing by but also especially making room for each other. Consider a narrow place, e.g. hallways, door frames or a small kitchen. A robot might block the way or drives towards you, pursuing its own goal like you. Humans do not even speak to each other in order to pass by and avoid bumping into each other even if the space is narrow. A first study is currently conducted to find out which behaviour is the most appropriate avoiding strategy and how participants express their wish to pass by. Therefore, a variety of defensive and more offensive avoiding strategies of the robot are applied in experiments. The results of the study will be used to equip the robot with spatial concepts to make interaction faster and more appropriate.}, title= {Avoid me: a spatial movement concept in human-robot interaction}, publisher= {Springer}, year= {2009}, journal= {Cognitive Processing}, pages= {177--178}, keywords= {ARRAY(0x7f43493c0e58)}, url= {http://eprints.lincoln.ac.uk/6702/}, abstract= {In humanhuman interaction, social signals or unconscious cues are sent and received by interaction partners. These signals and cues influence the interaction partner wanted and unwantedsometimes to achieve a distinct goal. To be aware of those signals and especially of implicit cues is crucial when interaction between a robot and a human is modelled. This project aims to use implicit body and machine movements to make HRI smoother and simpler. A robot should not only consider social rules with respect to proxemics in communication or in encounter people. It should also be able to signal and understand certain spatial constraints. A first spatial and situational constraint, which this research project currently focuses on, is avoiding each other. This includes not only passing by but also especially making room for each other. Consider a narrow place, e.g. hallways, door frames or a small kitchen. A robot might block the way or drives towards you, pursuing its own goal like you. Humans do not even speak to each other in order to pass by and avoid bumping into each other even if the space is narrow. A first study is currently conducted to find out which behaviour is the most appropriate avoiding strategy and how participants express their wish to pass by. Therefore, a variety of defensive and more offensive avoiding strategies of the robot are applied in experiments. The results of the study will be used to equip the robot with spatial concepts to make interaction faster and more appropriate.}}\n\n",
"@article{Hanheide2024,title = {ROS-Causal: A ROS-based Causal Analysis Framework for Human-Robot Interaction Applications},journal = {arXiv},year = {2024},author = {Castri, L. and Beraldo, G. and Mghames, S. and Hanheide, M. and Bellotto, N.}}",
"@article{Hanheide2023,title = {The ILIAD Safety Stack: Human-Aware Infrastructure-Free Navigation of Industrial Mobile Robots},journal = {IEEE Robotics and Automation Magazine},year = {2023},author = {Molina, S. and Mannucci, A. and Magnusson, M. and Adolfsson, D. and Andreasson, H. and Hamad, M. and Abdolshah, S. and Chadalavada, R.T. and Palmieri, L. and Linder, T. and Swaminathan, C.S. and Kucner, T.P. and Hanheide, M. and Fernandez-Carmona, M. and Cielniak, G. and Duckett, T. and Pecora, F. and Bokesand, S. and Arras, K.O. and Haddadin, S. and Lilienthal, A.J.}}",
"@article{Hanheide2020,title = {Sim-to-Real quadrotor landing via sequential deep Q-Networks and domain randomization},journal = {Robotics},year = {2020},volume = {9},number = {1},author = {Polvara, R. and Patacchiola, M. and Hanheide, M. and Neumann, G.}}",
"@article{Hanheide2016,title = {Robot deployment in long-term care: Case study on using a mobile robot to support physiotherapy,Robotereinsatz in der Langzeitpflege: Fallstudie {\\\"u}ber den Gebrauch eines mobilen Roboters zur Unterst{\\\"u}tzung von Physiotherapie},journal = {Zeitschrift fur Gerontologie und Geriatrie},year = {2016},volume = {49},number = {4},pages = {288-297},author = {Gerling, K. and Hebesberger, D. and Dondrup, C. and K{\\\"o}rtner, T. and Hanheide, M.}}",
"@article{Hanheide2018,title = {Do Not Make the Same Mistakes Again and Again: Learning Local Recovery Policies for Navigation from Human Demonstrations},journal = {IEEE Robotics and Automation Letters},year = {2018},volume = {3},number = {4},pages = {4084-4091},author = {Del Duchetto, F. and Kucukyilmaz, A. and Iocchi, L. and Hanheide, M.}}",
"@article{Hanheide2020,title = {Towards Safer Robot Motion: Using a Qualitative Motion Model to Classify Human-Robot Spatial Interaction},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2020},volume = {12228 LNAI},pages = {249-260},author = {Roberts-Elliott, L. and Fernandez-Carmona, M. and Hanheide, M.}}",
"@article{Hanheide2017,title = {Patterns of use: How older adults with progressed dementia interact with a robot},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2017},pages = {131-132},author = {Hebesberger, D.V. and Dondrup, C. and Gisinger, C. and Hanheide, M.}}",
"@article{Hanheide2020,title = {Enhancing Grasp Pose Computation in Gripper Workspace Spheres},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2020},pages = {1539-1545},author = {Sorour, M. and Elgeneidy, K. and Hanheide, M. and Abdalmjed, M. and Srinivasan, A. and Neumann, G.}}",
"@article{Hanheide2010,title = {Learning a probabilistic self-awareness model for robotic systems},journal = {IEEE/RSJ 2010 International Conference on Intelligent Robots and Systems, IROS 2010 - Conference Proceedings},year = {2010},pages = {2745-2750},author = {Golombek, R. and Wrede, S. and Hanheide, M. and Heckmann, M.}}",
"@article{Hanheide2008,title = {Reducing noise and redundancy in registered range data for planar surface extraction},journal = {Proceedings - International Conference on Pattern Recognition},year = {2008},author = {Swadzba, A. and Vollmer, A. and Hanheide, M. and Wachsmuth, S.}}",
"@inproceedings{lirolem6944, month= {October}, author= {Marc Hanheide and Christian Bauckhage and Gerhard Sagerer}, note= {As wearable sensors and computing hardware are becoming a reality,\r\nnew and unorthodox approaches to seamless human-computer\r\ninteraction can be explored. This paper presents the prototype of a\r\nwearable, head-mounted device for advanced human-machine interaction\r\nthat integrates speech recognition and computer vision\r\nwith head gesture analysis based on inertial sensor data. We will\r\nfocus on the innovative idea of integrating visual and inertial data\r\nprocessing for interaction. Fusing head gestures with results from\r\nvisual analysis of the environment provides rich vocabularies for\r\nhuman-machine communication because it renders the environment\r\ninto an interface: if objects or items in the surroundings are\r\nbeing associated with system activities, head gestures can trigger\r\ncommands if the corresponding object is being looked at. We will\r\nexplain the algorithmic approaches applied in our prototype and\r\npresent experiments that highlight its potential for assistive technology.\r\nApart from pointing out a new direction for seamless interaction\r\nin general, our approach provides a new and easy to use\r\ninterface for disabled and paralyzed users in particular.}, booktitle= {7th international conference on Multimodal interfaces}, editor= {B. Gottfried and H. Aghajan}, title= {Combining environmental cues \\& head gestures to interact with wearable devices}, publisher= {ACM Association of Computing Machinery}, year= {2005}, pages= {25--31}, keywords= {ARRAY(0x7f43493c13f8)}, url= {http://eprints.lincoln.ac.uk/6944/}, abstract= {As wearable sensors and computing hardware are becoming a reality,\r\nnew and unorthodox approaches to seamless human-computer\r\ninteraction can be explored. This paper presents the prototype of a\r\nwearable, head-mounted device for advanced human-machine interaction\r\nthat integrates speech recognition and computer vision\r\nwith head gesture analysis based on inertial sensor data. We will\r\nfocus on the innovative idea of integrating visual and inertial data\r\nprocessing for interaction. Fusing head gestures with results from\r\nvisual analysis of the environment provides rich vocabularies for\r\nhuman-machine communication because it renders the environment\r\ninto an interface: if objects or items in the surroundings are\r\nbeing associated with system activities, head gestures can trigger\r\ncommands if the corresponding object is being looked at. We will\r\nexplain the algorithmic approaches applied in our prototype and\r\npresent experiments that highlight its potential for assistive technology.\r\nApart from pointing out a new direction for seamless interaction\r\nin general, our approach provides a new and easy to use\r\ninterface for disabled and paralyzed users in particular.}}\n\n",
"@article{Hanheide2006,title = {Action recognition in a wearable assistance system},journal = {Proceedings - International Conference on Pattern Recognition},year = {2006},volume = {2},pages = {1254-1257},author = {Hanheide, M. and Hofemann, N. and Sagerer, G.}}",
"@inproceedings{lirolem6927, month= {April}, author= {Matthias Rolf and Marc Hanheide and Katharina J. Rohlfing}, note= {In our approach, we aim at an objective measurement of\r\nsynchrony in multimodal tutoring behavior. The use of signal\r\ncorrelation provides a well formalized method that yields\r\ngradual information about the degree of synchrony. For our\r\nanalysis, we used and extended an algorithm proposed by\r\nHershey \\& Movellan (2000) that correlates single-pixel\r\nvalues of a video signal with the loudness of the\r\ncorresponding audio track over time. The results of all pixels are integrated over the video to achieve a scalar estimate of synchrony.}, booktitle= {SRCD 2009 Biennial Meeting}, editor= {B. Gottfried and H. Aghajan}, title= {The use of synchrony in parent-child interaction can be measured on a signal-level}, publisher= {Society for Research in Child Development}, year= {2009}, keywords= {ARRAY(0x7f43493c0f48)}, url= {http://eprints.lincoln.ac.uk/6927/}, abstract= {In our approach, we aim at an objective measurement of\r\nsynchrony in multimodal tutoring behavior. The use of signal\r\ncorrelation provides a well formalized method that yields\r\ngradual information about the degree of synchrony. For our\r\nanalysis, we used and extended an algorithm proposed by\r\nHershey \\& Movellan (2000) that correlates single-pixel\r\nvalues of a video signal with the loudness of the\r\ncorresponding audio track over time. The results of all pixels are integrated over the video to achieve a scalar estimate of synchrony.}}\n\n",
"@article{Hanheide2006,title = {Integration and coordination in a cognitive vision system},journal = {Proceedings of the Fourth IEEE International Conference on Computer Vision Systems, ICVS{'}06},year = {2006},volume = {2006},pages = {1},author = {Wrede, S. and Hanheide, M. and Wachsmuth, S. and Sagerer, G.}}",
"@article{Hanheide2019,title = {Making the case for human-aware navigation in warehouses},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2019},volume = {11650 LNAI},pages = {449-453},author = {Fernandez Carmona, M. and Parekh, T. and Hanheide, M.}}",
"@article{Hanheide2011,title = {Home alone: Autonomous extension and correction of spatial representations},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2011},pages = {3907-3914},author = {Hawes, N. and Hanheide, M. and Hargreaves, J. and Page, B. and Zender, H. and Jensfelt, P.}}",
"@article{Hanheide2017,title = {HAI 2017 Chairs{'} Welcome},journal = {HAI 2017 - Proceedings of the 5th International Conference on Human Agent Interaction},year = {2017},pages = {iii},author = {Wrede, B. and Nagai, Y. and Komatsu, T. and Hanheide, M. and Natale, L.}}",
"@article{Hanheide2010,title = {Remembering interaction episodes: An unsupervised learning approach for a humanoid robot},journal = {2010 10th IEEE-RAS International Conference on Humanoid Robots, Humanoids 2010},year = {2010},pages = {566-571},author = {Gieselmann, S. and Hanheide, M. and Wrede, B.}}",
"@article{Hanheide2020,title = {Next-Best-Sense: A Multi-Criteria Robotic Exploration Strategy for RFID Tags Discovery},journal = {IEEE Robotics and Automation Letters},year = {2020},volume = {5},number = {3},pages = {4477-4484},author = {Polvara, R. and Fernandez-Carmona, M. and Neumann, G. and Neumann, G. and Neumann, G. and Hanheide, M.}}",
"@article{Hanheide2004,title = {A cognitive vision system for action recognition in office environments},journal = {Proceedings of the IEEE Computer Society Conference on Computer Vision and Pattern Recognition},year = {2004},volume = {2},author = {Bauckhage, C. and Hanheide, M. and Wrede, S. and Sagerer, G.}}",
"@article{Hanheide2024,title = {Learning Manipulation Tasks in Dynamic and Shared 3D Spaces},journal = {arXiv},year = {2024},author = {Arunachalam, H. and Hanheide, M. and Mghames, S.}}",
"@inproceedings{lirolem6931, month= {August}, author= {Manja Lohse and Marc Hanheide and Britta Wrede and Michael L. Walters and Kheng Lee Koay and Dag Sverre Syrdal and Anders Green and Helge Huttenrauch and Kerstin Dautenhahn and Gerhard Sagerer and Kerstin Severinson-Eklundh}, note= {Human-robot interaction (HRI) research is here presented into social robots that have to be able to interact with inexperienced users. In the design of these robots many research findings of human-human interaction and human-computer interaction are adopted but the direct applicability of these theories is limited because a robot is different from both humans and computers. Therefore, new methods have to be developed in HRI in order to build robots that are suitable for inexperienced users. In this paper we present a video study we conducted employing our robot BIRON (Bielefeld robot companion) which is designed for use in domestic environments. Subjects watched the system during the interaction with a human and rated two different robot behaviours (extrovert and introvert). The behaviours differed regarding verbal output and person following of the robot. Aiming to improve human-robot interaction, participantspsila ratings of the behaviours were evaluated and compared.}, booktitle= {The 17th IEEE International Symposium on Robot and Human Interactive Communication}, editor= {B. Gottfried and H. Aghajan}, title= {Evaluating extrovert and introvert behaviour of a domestic robot -- a video study}, publisher= {IEEE}, year= {2008}, pages= {488--493}, keywords= {ARRAY(0x7f43493c1098)}, url= {http://eprints.lincoln.ac.uk/6931/}, abstract= {Human-robot interaction (HRI) research is here presented into social robots that have to be able to interact with inexperienced users. In the design of these robots many research findings of human-human interaction and human-computer interaction are adopted but the direct applicability of these theories is limited because a robot is different from both humans and computers. Therefore, new methods have to be developed in HRI in order to build robots that are suitable for inexperienced users. In this paper we present a video study we conducted employing our robot BIRON (Bielefeld robot companion) which is designed for use in domestic environments. Subjects watched the system during the interaction with a human and rated two different robot behaviours (extrovert and introvert). The behaviours differed regarding verbal output and person following of the robot. Aiming to improve human-robot interaction, participantspsila ratings of the behaviours were evaluated and compared.}}\n\n",
" @article{Castri_2024, title={CAnDOIT: Causal Discovery with Observational and Interventional Data from Time Series}, volume={6}, ISSN={2640-4567}, url={http://dx.doi.org/10.1002/aisy.202400181}, DOI={10.1002/aisy.202400181}, number={12}, journal={Advanced Intelligent Systems}, publisher={Wiley}, author={Castri, Luca and Mghames, Sariah and Hanheide, Marc and Bellotto, Nicola}, year={2024}, month=nov }\n",
"@article{Hanheide2016,title = {Towards automated system and experiment reproduction in robotics},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2016},volume = {2016-November},pages = {3298-3305},author = {Lier, F. and Hanheide, M. and Natale, L. and Schulz, S. and Weisz, J. and Wachsmuth, S. and Wrede, S.}}",
" @article{Poozhiyil_2025, title={A Framework for Real-Time Autonomous Robotic Sorting and Segregation of Nuclear Waste: Modelling, Identification and Control of DexterTM Robot}, volume={13}, ISSN={2075-1702}, url={http://dx.doi.org/10.3390/machines13030214}, DOI={10.3390/machines13030214}, number={3}, journal={Machines}, publisher={MDPI AG}, author={Poozhiyil, Mithun and Argin, Omer F. and Rai, Mini and Esfahani, Amir G. and Hanheide, Marc and King, Ryan and Saunderson, Phil and Moulin-Ramsden, Mike and Yang, Wen and Garc\u00eda, Laura Palacio and Mackay, Iain and Mishra, Abhishek and Okamoto, Sho and Yeung, Kelvin}, year={2025}, month=mar, pages={214} }\n",
"@article{Hanheide2020,title = {Incorporating spatial constraints into a bayesian tracking framework for improved localisation in agricultural environments},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2020},pages = {2440-2445},author = {Khan, M.W. and Das, G.P. and Hanheide, M. and Cielniak, G.}}",
"@article{Hanheide2008,title = {Systemic interaction analysis (SInA) in HRI},journal = {Proceedings of the 4th ACM/IEEE International Conference on Human-Robot Interaction, HRI{'}09},year = {2008},pages = {93-100},author = {Lohse, M. and Hanheide, M. and Rohlfing, K.J. and Sagerer, G.}}",
"@article{lirolem6742, volume= {19}, number= {2}, month= {March}, author= {Sven Wachsmuth and Sebastian Wrede and Marc Hanheide and Christian Bauckhage}, note= {Computer vision is becoming an integral part in human-machine interfaces as research increasingly aims at a seamless\r\nand natural interaction between a user and an application system. Gesture recognition, context awareness, and grounding\r\nconcepts in the commonly perceived environment as well as in the interaction history are key abilities of such systems.\r\nSimultaneously, recent computer vision research has indicated that integrated systems which are embedded in the world\r\nand interact with their environment seem a prerequisite for solving more general vision tasks. Cognitive computer vision\r\nsystems which enable the generation of knowledge on the basis of perception, reasoning, and extension of prior models\r\nare a major step towards this goal. For these, the integration, interaction and organization of memory becomes a key\r\nissue in system design. In this article we will present a computational framework for integrated vision systems that is\r\ncentered around an active memory component. It supports a fast integration and substitution of system components,\r\nvarious means of interaction patterns, and enables a system to reason about its own memory content. This framework\r\nwill be exemplified by means of a cognitive human-machine interface in an Augmented Reality scenario. The system is\r\nable to acquire new concepts from interaction and provides a context aware scene augmentation for the user.}, title= {An active memory model for cognitive computer vision systems}, publisher= {Springer for Fachbereiches KI in der Gesellschaft f\\\"ur Informatik}, year= {2005}, journal= {KI - K\\\"unstliche Intelligenz}, pages= {25--31}, keywords= {ARRAY(0x7f43493c14b8)}, url= {http://eprints.lincoln.ac.uk/6742/}, abstract= {Computer vision is becoming an integral part in human-machine interfaces as research increasingly aims at a seamless\r\nand natural interaction between a user and an application system. Gesture recognition, context awareness, and grounding\r\nconcepts in the commonly perceived environment as well as in the interaction history are key abilities of such systems.\r\nSimultaneously, recent computer vision research has indicated that integrated systems which are embedded in the world\r\nand interact with their environment seem a prerequisite for solving more general vision tasks. Cognitive computer vision\r\nsystems which enable the generation of knowledge on the basis of perception, reasoning, and extension of prior models\r\nare a major step towards this goal. For these, the integration, interaction and organization of memory becomes a key\r\nissue in system design. In this article we will present a computational framework for integrated vision systems that is\r\ncentered around an active memory component. It supports a fast integration and substitution of system components,\r\nvarious means of interaction patterns, and enables a system to reason about its own memory content. This framework\r\nwill be exemplified by means of a cognitive human-machine interface in an Augmented Reality scenario. The system is\r\nable to acquire new concepts from interaction and provides a context aware scene augmentation for the user.}}\n\n",
"@article{Hanheide2004,title = {An active memory as a model for information fusion},journal = {Proceedings of the Seventh International Conference on Information Fusion, FUSION 2004},year = {2004},volume = {1},pages = {198-205},author = {Wrede, S. and Hanheide, M. and Bauckhage, C. and Sagerer, G.}}",
"@article{Hanheide2021,title = {Preface},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {13054 LNAI},pages = {v},author = {Fox, C. and Gao, J. and Esfahani, A.G. and Saaj, M. and Hanheide, M. and Parsons, S.}}",
"@article{Hanheide2023,title = {A Neuro-Symbolic Approach for Enhanced Human Motion Prediction},journal = {Proceedings of the International Joint Conference on Neural Networks},year = {2023},volume = {2023-June},author = {Mghames, S. and Castri, L. and Hanheide, M. and Bellotto, N.}}",
"@article{Hanheide2005,title = {Combining environmental cues \\& head gestures to interact with wearable devices},journal = {Proceedings of the Seventh International Conference on Multimodal Interfaces, ICMI{'}05},year = {2005},pages = {25-31},author = {Hanheide, M. and Bauckhage, C. and Sagerer, G.}}",
"@article{Hanheide2014,title = {Hesitation signals in human-robot head-on encounters: A pilot study},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2014},pages = {154-155},author = {Dondrup, C. and Lichtenth{\\\"a}ler, C. and Hanheide, M.}}",
"@article{Hanheide2014,title = {Social distance augmented qualitative trajectory calculus for Human-Robot Spatial Interaction},journal = {IEEE RO-MAN 2014 - 23rd IEEE International Symposium on Robot and Human Interactive Communication: Human-Robot Co-Existence: Adaptive Interfaces and Systems for Daily Life, Therapy, Assistance and Socially Engaging Interactions},year = {2014},pages = {519-524},author = {Dondrup, C. and Bellotto, N. and Hanheide, M.}}",
"@article{Hanheide2020,title = {Are You Still With Me? Continuous Engagement Assessment From a Robot{'}s Point of View},journal = {Frontiers in Robotics and AI},year = {2020},volume = {7},author = {Del Duchetto, F. and Baxter, P. and Hanheide, M.}}",
"@article{Hanheide2016,title = {An integrated system for interactive continuous learning of categorical knowledge},journal = {Journal of Experimental and Theoretical Artificial Intelligence},year = {2016},volume = {28},number = {5},pages = {823-848},author = {Sko?aj, D. and Vre?ko, A. and Mahni?, M. and Jan{\\'i}?ek, M. and Kruijff, G.-J.M. and Hanheide, M. and Hawes, N. and Wyatt, J.L. and Keller, T. and Zhou, K. and Zillich, M. and Kristan, M.}}",
"@article{Hanheide2010,title = {Dynamic path planning adopting human navigation strategies for a domestic mobile robot},journal = {IEEE/RSJ 2010 International Conference on Intelligent Robots and Systems, IROS 2010 - Conference Proceedings},year = {2010},pages = {3275-3281},author = {Yuan, F. and Twardon, L. and Hanheide, M.}}",
"@article{Hanheide2017,title = {The STRANDS Project: Long-Term Autonomy in Everyday Environments},journal = {IEEE Robotics and Automation Magazine},year = {2017},volume = {24},number = {3},pages = {146-156},author = {Hawes, N. and Burbridge, C. and Jovan, F. and Kunze, L. and Lacerda, B. and Mudrov{\\'a}, L. and Young, J. and Wyatt, J. and Hebesberger, D. and K{\\\"o}rtner, T. and Ambrus, R. and Bore, N. and Folkesson, J. and Jensfelt, P. and Beyer, L. and Hermans, A. and Leibe, B. and Aldoma, A. and Fa{\\\"u}lhammer, T. and Zillich, M. and Vincze, M. and Chinellato, E. and Al-Omari, M. and Duckworth, P. and Gatsoulis, Y. and Hogg, D.C. and Cohn, A.G. and Dondrup, C. and Pulido Fentanes, J. and Krajn{\\'i}k, T. and Santos, J.M. and Duckett, T. and Hanheide, M.}}",
"@article{Hanheide2022,title = {An Agricultural Event Prediction Framework towards Anticipatory Scheduling of Robot Fleets: General Concepts and Case Studies},journal = {Agronomy},year = {2022},volume = {12},number = {6},author = {Pal, A. and Das, G. and Hanheide, M. and Leite, A.C. and From, P.J.}}",
"@article{Hanheide2005,title = {Vision systems with the human in the loop},journal = {Eurasip Journal on Applied Signal Processing},year = {2005},volume = {2005},number = {14},pages = {2375-2390},author = {Bauckhage, C. and Hanheide, M. and Wrede, S. and K{\\\"a}ster, T. and Pfeiffer, M. and Sagerer, G.}}",
"@article{Hanheide2011,title = {Online data-driven fault detection for robotic systems},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2011},pages = {3011-3016},author = {Golombek, R. and Wrede, S. and Hanheide, M. and Heckmann, M.}}",
"@inproceedings{lirolem6923, month= {September}, author= {Julia Peltason and Ingo L\\\"utkebohle and Britta Wrede and Marc Hanheide}, note= {In learning tasks, interaction is mostly about the exchange\r\nof knowledge. The interaction process shall be governed on the one hand by the knowledge the tutor wants to convey and on the other by the lacks of knowledge of the learner. In human-robot interaction (HRI), it is usually the human demonstrating or explicitly verbalizing her knowl-\r\nedge and the robot acquiring a respective representation. The ultimate goal in interactive robot learning is thus to enable inexperienced, un- trained users to tutor robots in a most natural and intuitive manner.\r\nThis goal is often impeded by a lack of knowledge of the human about the internal processing and expectations of the robot and by the inflexibility of the robot to understand open-ended, unconstrained tutoring or demonstration. Hence, we propose mixed-initiative strategies to allow both to mutually contribute to the interactive learning process as\r\na bi-directional negotiation about knowledge. Along this line this paper discusses two initially different case studies on object manipulation and learning of spatial environments. We present different styles of mixed-\r\ninitiative in these scenarios and discuss the merits in each case.}, booktitle= {Mixed Initiative Workshop on Improving Human-Robot Communication with Mixed-Initiative and Context-Awareness at the 18th IEEE International Symposium on Robot and Human Interactive Communication}, editor= {B. Gottfried and H. Aghajan}, title= {Mixed initiative in interactive robotic learning}, publisher= {IEEE}, year= {2009}, keywords= {ARRAY(0x7f43493c0df8)}, url= {http://eprints.lincoln.ac.uk/6923/}, abstract= {In learning tasks, interaction is mostly about the exchange\r\nof knowledge. The interaction process shall be governed on the one hand by the knowledge the tutor wants to convey and on the other by the lacks of knowledge of the learner. In human-robot interaction (HRI), it is usually the human demonstrating or explicitly verbalizing her knowl-\r\nedge and the robot acquiring a respective representation. The ultimate goal in interactive robot learning is thus to enable inexperienced, un- trained users to tutor robots in a most natural and intuitive manner.\r\nThis goal is often impeded by a lack of knowledge of the human about the internal processing and expectations of the robot and by the inflexibility of the robot to understand open-ended, unconstrained tutoring or demonstration. Hence, we propose mixed-initiative strategies to allow both to mutually contribute to the interactive learning process as\r\na bi-directional negotiation about knowledge. Along this line this paper discusses two initially different case studies on object manipulation and learning of spatial environments. We present different styles of mixed-\r\ninitiative in these scenarios and discuss the merits in each case.}}\n\n",
"@article{Hanheide2018,title = {3DOF Pedestrian Trajectory Prediction Learned from Long-Term Autonomous Mobile Robot Deployment Data},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2018},pages = {5942-5948},author = {Sun, L. and Yan, Z. and Mellado, S.M. and Hanheide, M. and Duckett, T.}}",
"@article{Hanheide2020,title = {Haptic-guided shared control grasping: Collision-free manipulation},journal = {IEEE International Conference on Automation Science and Engineering},year = {2020},volume = {2020-August},pages = {1552-1557},author = {Parsa, S. and Kamale, D. and Mghames, S. and Nazari, K. and Pardi, T. and Srinivasan, A.R. and Neumann, G. and Hanheide, M. and Amir, G.E.}}",
"@inproceedings{lirolem6918, month= {July}, author= {Christian Mertes and Angelika Dierker and Thomas Hermann and Marc Hanheide and Gerhard Sagerer}, note= {Humans naturally use an impressive variety of ways to com-\r\nmunicate. In this work, we investigate the possibilities of complementing these natural communication channels with articial ones. For this, augmented reality is used as a technique to add synthetic visual and auditory stimuli to people's perception. A system for the mutual display\r\nof the gaze direction of two interactants is presented and its acceptance is shown through a study. Finally, future possibilities of promoting this novel concept of articial communication channels are explored}, booktitle= {Proceedings of the 13th International Conference on Human-Computer Interaction}, editor= {B. Gottfried and H. Aghajan}, title= {Enhancing human cooperation with multimodal augmented reality}, publisher= {Springer}, year= {2009}, pages= {447--451}, keywords= {ARRAY(0x7f43493c0e88)}, url= {http://eprints.lincoln.ac.uk/6918/}, abstract= {Humans naturally use an impressive variety of ways to com-\r\nmunicate. In this work, we investigate the possibilities of complementing these natural communication channels with articial ones. For this, augmented reality is used as a technique to add synthetic visual and auditory stimuli to people's perception. A system for the mutual display\r\nof the gaze direction of two interactants is presented and its acceptance is shown through a study. Finally, future possibilities of promoting this novel concept of articial communication channels are explored}}\n\n",
"@article{Hanheide2018,title = {Introduction to the Special Issue on AI for Long-Term Autonomy},journal = {IEEE Robotics and Automation Letters},year = {2018},volume = {3},number = {4},pages = {4431-4434},author = {Kunze, L. and Hawes, N. and Duckett, T. and Hanheide, M.}}",
"@article{Hanheide2016,title = {STAM: A framework for spatio-temporal affordance maps},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2016},volume = {9991 LNCS},pages = {271-280},author = {Riccio, F. and Capobianco, R. and Hanheide, M. and Nardi, D.}}",
"@inproceedings{lirolem6945, month= {September}, author= {Sven Wachsmuth and Marc Hanheide and Sebastian Wrede and Christian Bauckhage}, note= {Systems that perform in real environments need to bind the internal state to externally\r\nperceived objects, events, or complete scenes. How to learn this correspondence has been a long\r\nstanding problem in computer vision as well as artificial intelligence. Augmented Reality provides\r\nan interesting perspective on this problem because a human user can directly relate displayed\r\nsystem results to real environments. In the following we present a system that is able to bootstrap\r\ninternal models from user-system interactions. Starting from pictorial representations it learns\r\nsymbolic object labels that provide the basis for storing observed episodes. In a second step, more\r\ncomplex relational information is extracted from stored episodes that enables the system to react\r\non specific scene contexts.}, booktitle= {KI 2005 Workshop on Mixed-reality as a Challenge to Image Understanding and Artificial Intelligence}, editor= {B. Gottfried and H. Aghajan}, title= {From images via symbols to contexts: using augmented reality for interactive model acquisition\r\n}, pages= {41--46}, year= {2005}, keywords= {ARRAY(0x7f43493c1428)}, url= {http://eprints.lincoln.ac.uk/6945/}, abstract= {Systems that perform in real environments need to bind the internal state to externally\r\nperceived objects, events, or complete scenes. How to learn this correspondence has been a long\r\nstanding problem in computer vision as well as artificial intelligence. Augmented Reality provides\r\nan interesting perspective on this problem because a human user can directly relate displayed\r\nsystem results to real environments. In the following we present a system that is able to bootstrap\r\ninternal models from user-system interactions. Starting from pictorial representations it learns\r\nsymbolic object labels that provide the basis for storing observed episodes. In a second step, more\r\ncomplex relational information is extracted from stored episodes that enables the system to react\r\non specific scene contexts.}}\n\n",
"@article{Hanheide2023,title = {Survey of maps of dynamics for mobile robots},journal = {International Journal of Robotics Research},year = {2023},volume = {42},number = {11},pages = {977-1006},author = {Kucner, T.P. and Magnusson, M. and Mghames, S. and Palmieri, L. and Verdoja, F. and Swaminathan, C.S. and Krajn{\\'i}k, T. and Schaffernicht, E. and Bellotto, N. and Hanheide, M. and Lilienthal, A.J.}}",
"@article{Hanheide2010,title = {Can I help you? A spatial attention system for a receptionist robot},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2010},volume = {6414 LNAI},pages = {325-334},author = {Holthaus, P. and L{\\\"u}tkebohle, I. and Hanheide, M. and Wachsmuth, S.}}",
"@article{Hanheide2021,title = {Benchmark of visual and 3D lidar SLAM systems in simulation environment for vineyards},journal = {arXiv},year = {2021},author = {Hroob, I. and Polvara, R. and Molina, S. and Cielniak, G. and Hanheide, M.}}",
"@inproceedings{lirolem8365, booktitle= {Proceedings of the 8th ACM/IEEE international conference on Human-robot interaction}, month= {March}, title= {Robot George: interactive continuous learning of visual concepts}, author= {Michael Zillich and Kai Zhou and Danijel Skocaj and Matej Kristan and Alen Vrecko and Marko Mahnic and Miroslav Janicek and Geert-Jan M. Kruijff and Thomas Keller and Marc Hanheide and Nick Hawes}, publisher= {IEEE Press}, year= {2013}, pages= {425}, keywords= {ARRAY(0x7f43493bf920)}, url= {http://eprints.lincoln.ac.uk/8365/}, abstract= {The video presents the robot George learning visual concepts in dialogue with a tutor}}\n\n",
"@article{Hanheide2020,title = {Context Dependant Iterative Parameter Optimisation for Robust Robot Navigation},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2020},pages = {3937-3943},author = {Binch, A. and Das, G.P. and Pulido Fentanes, J. and Hanheide, M.}}",
"@article{Hanheide2017,title = {The effectiveness of integrating educational robotic activities into higher education computer science curricula: A case study in a developing country},journal = {Advances in Intelligent Systems and Computing},year = {2017},volume = {560},pages = {73-87},author = {Gyebi, E.B.B. and Hanheide, M. and Cielniak, G.}}",
"@article{Hanheide2009,title = {Mixed-initiative in interactive robotic learning},journal = {CEUR Workshop Proceedings},year = {2009},volume = {693},author = {Peltason, J. and L{\\\"u}tkebohle, I. and Wrede, B. and Hanheide, M.}}",
"@inproceedings{lirolem6937, booktitle= {International Workshop on Cognition for Technical Systems}, editor= {B. Gottfried and H. Aghajan}, month= {December}, title= {Spatial context-aware person-following for a domestic robot}, author= {Fang Yuan and Marc Hanheide and Gerhard Sagerer}, year= {2008}, note= {Domestic robots are in the focus of research in\r\nterms of service providers in households and even as robotic\r\ncompanion that share the living space with humans. A major\r\ncapability of mobile domestic robots that is joint exploration\r\nof space. One challenge to deal with this task is how could we\r\nlet the robots move in space in reasonable, socially acceptable\r\nways so that it will support interaction and communication\r\nas a part of the joint exploration. As a step towards this\r\nchallenge, we have developed a context-aware following behav-\r\nior considering these social aspects and applied these together\r\nwith a multi-modal person-tracking method to switch between\r\nthree basic following approaches, namely direction-following,\r\npath-following and parallel-following. These are derived from\r\nthe observation of human-human following schemes and are\r\nactivated depending on the current spatial context (e.g. free\r\nspace) and the relative position of the interacting human.\r\nA combination of the elementary behaviors is performed in\r\nreal time with our mobile robot in different environments.\r\nFirst experimental results are provided to demonstrate the\r\npracticability of the proposed approach.}, keywords= {ARRAY(0x7f43493c0fd8)}, url= {http://eprints.lincoln.ac.uk/6937/}, abstract= {Domestic robots are in the focus of research in\r\nterms of service providers in households and even as robotic\r\ncompanion that share the living space with humans. A major\r\ncapability of mobile domestic robots that is joint exploration\r\nof space. One challenge to deal with this task is how could we\r\nlet the robots move in space in reasonable, socially acceptable\r\nways so that it will support interaction and communication\r\nas a part of the joint exploration. As a step towards this\r\nchallenge, we have developed a context-aware following behav-\r\nior considering these social aspects and applied these together\r\nwith a multi-modal person-tracking method to switch between\r\nthree basic following approaches, namely direction-following,\r\npath-following and parallel-following. These are derived from\r\nthe observation of human-human following schemes and are\r\nactivated depending on the current spatial context (e.g. free\r\nspace) and the relative position of the interacting human.\r\nA combination of the elementary behaviors is performed in\r\nreal time with our mobile robot in different environments.\r\nFirst experimental results are provided to demonstrate the\r\npracticability of the proposed approach.}}\n\n",
"@article{Hanheide2017,title = {The When, Where, and How: An Adaptive Robotic Info-Terminal for Care Home Residents},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2017},volume = {Part F127194},pages = {341-349},author = {Hanheide, M. and Hebesberger, D. and Krajn{\\'i}k, T.}}",
"@inproceedings{lirolem8314, month= {November}, author= {Ruth S. Aylett and Ginevra Castellano and Bogdan Raducanu and Ana Paiva and Marc Hanheide}, note= {Conference Code: 87685}, booktitle= {Conference of 2011 ACM International Conference on Multimodal Interaction, ICMI'11}, title= {Long-term socially perceptive and interactive robot companions: challenges and future perspective}, address= {Alicante}, publisher= {ACM}, year= {2011}, journal= {ICMI'11 - Proceedings of the 2011 ACM International Conference on Multimodal Interaction}, pages= {323--326}, keywords= {ARRAY(0x7f43493bfa10)}, url= {http://eprints.lincoln.ac.uk/8314/}, abstract= {This paper gives a brief overview of the challenges for multi-model perception and generation applied to robot companions located in human social environments. It reviews the current position in both perception and generation and the immediate technical challenges and goes on to consider the extra issues raised by embodiment and social context. Finally, it briefly discusses the impact of systems that must function continually over months rather than just for a few hours. \\^A\\\\copyright 2011 ACM.}}\n\n",
"@article{Hanheide2004,title = {Memory consistency validation in a cognitive vision system},journal = {Proceedings - International Conference on Pattern Recognition},year = {2004},volume = {2},pages = {459-462},author = {Hanheide, M. and Bauckhage, C. and Sagerer, G.}}",
"@article{Hanheide2008,title = {Fusion of perceptual processes for real-time object tracking},journal = {Proceedings of the 11th International Conference on Information Fusion, FUSION 2008},year = {2008},author = {J{\\\"u}ngling, K. and Arens, M. and Hanheide, M. and Sagerer, G.}}",
"@article{Hanheide2009,title = {Mediated attention with multimodal augmented reality},journal = {ICMI-MLMI{'}09 - Proceedings of the International Conference on Multimodal Interfaces and the Workshop on Machine Learning for Multimodal Interfaces},year = {2009},pages = {245-252},author = {Dierker, A. and Mertes, C. and Hermann, T. and Hanheide, M. and Sagerer, G.}}",
"@article{Hanheide2018,title = {A Lightweight Navigation System for Mobile Robots},journal = {Advances in Intelligent Systems and Computing},year = {2018},volume = {694},pages = {295-306},author = {L{\\'a}zaro, M.T. and Grisetti, G. and Iocchi, L. and Fentanes, J.P. and Hanheide, M.}}",
"@article{Hanheide2020,title = {Automatic assessment and learning of robot social abilities},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2020},pages = {561-563},author = {Del Duchetto, F. and Baxter, P. and Hanheide, M.}}",
"@incollection{lirolem6719, number= {3175}, month= {December}, author= {Nicholas Gorges and Marc Hanheide and William Christmas and Christian Bauckhage and Gerhard Sagerer and Joseph Kittler}, series= {Lecture Notes in Computer Science}, note= {lthough mosaics are well established as a compact and non-redundant representation of image sequences, their application still suffers from restrictions of the camera motion or has to deal with parallax errors. We present an approach that allows construction of mosaics from arbitrary motion of a head-mounted camera pair. As there are no parallax errors when creating mosaics from planar objects, our approach first decomposes the scene into planar sub-scenes from stereo vision and creates a mosaic for each plane individually. The power of the presented mosaicing technique is evaluated in an office scenario, including the analysis of the parallax error.}, booktitle= {Pattern recognition}, editor= {Carl Edward Rasmussen and Heinrich H. Buelthoff and Bernhard Schoelkopf and Martin Giese}, title= {Mosaics from arbitrary stereo video sequences}, publisher= {Springer}, year= {2004}, pages= {342--349}, keywords= {ARRAY(0x7f43493c1518)}, url= {http://eprints.lincoln.ac.uk/6719/}, abstract= {lthough mosaics are well established as a compact and non-redundant representation of image sequences, their application still suffers from restrictions of the camera motion or has to deal with parallax errors. We present an approach that allows construction of mosaics from arbitrary motion of a head-mounted camera pair. As there are no parallax errors when creating mosaics from planar objects, our approach first decomposes the scene into planar sub-scenes from stereo vision and creates a mosaic for each plane individually. The power of the presented mosaicing technique is evaluated in an office scenario, including the analysis of the parallax error.}}\n\n",
"@article{Hanheide2024,title = {LTS-NET: End-to-End Unsupervised Learning of~Long-Term 3D Stable Objects},journal = {Lecture Notes in Networks and Systems},year = {2024},volume = {794},pages = {17-29},author = {Hroob, I. and Molina, S. and Polvara, R. and Cielniak, G. and Hanheide, M.}}",
"@article{Hanheide2005,title = {A versatile model-based visibility measure for geometric primitives},journal = {Lecture Notes in Computer Science},year = {2005},volume = {3540},pages = {669-678},author = {Ellenrieder, M.M. and Kr{\\\"u}ger, L. and St{\\\"o}{\\ss}e, D. and Hanheide, M.}}",
"@article{Hanheide2012,title = {Facial Communicative Signals: Valence Recognition in Task-Oriented Human-Robot Interaction},journal = {International Journal of Social Robotics},year = {2012},volume = {4},number = {3},pages = {249-262},author = {Lang, C. and Wachsmuth, S. and Hanheide, M. and Wersing, H.}}",
"@article{Hanheide2022,title = {Premonition Net, A Multi-Timeline Transformer Network Architecture Towards Strawberry Tabletop Yield Forecasting},journal = {arXiv},year = {2022},author = {Onoufriou, G. and Hanheide, M. and Leontidis, G.}}",
"@article{Hanheide2014,title = {Long-term topological localisation for service robots in dynamic environments using spectral maps},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2014},pages = {4537-4542},author = {Krajnik, T. and Fentanes, J.P. and Mozos, O.M. and Duckett, T. and Ekekrantz, J. and Hanheide, M.}}",
" @article{Das_2024, title={A Unified Topological Representation for Robotic Fleets in Agricultural Applications}, ISSN={1556-4967}, url={http://dx.doi.org/10.1002/rob.22494}, DOI={10.1002/rob.22494}, journal={Journal of Field Robotics}, publisher={Wiley}, author={Das, Gautham and Cielniak, Grzegorz and Heselden, James and Pearson, Simon and Duchetto, Francesco Del and Zhu, Zuyuan and Dichtl, Johann and Hanheide, Marc and Fentanes, Jaime Pulido and Binch, Adam and Hutchinson, Michael and From, Pal}, year={2024}, month=dec }\n",
"@article{Hanheide2012,title = {Expectations, Intentions, and Actions in Human-Robot Interaction},journal = {International Journal of Social Robotics},year = {2012},volume = {4},number = {2},pages = {107-108},author = {Hanheide, M. and Lohse, M. and Zender, H.}}",
"@article{Hanheide2010,title = {CAST: Middleware for memory-based architectures},journal = {AAAI Workshop - Technical Report},year = {2010},volume = {WS-10-09},pages = {11-12},author = {Hawes, N. and Hanheide, M.}}",
"@article{Hanheide2008,title = {Active memory-based interaction strategies for learning-enabling behaviors},journal = {Proceedings of the 17th IEEE International Symposium on Robot and Human Interactive Communication, RO-MAN},year = {2008},pages = {101-106},author = {Hanheide, M. and Sagerer, G.}}",
"@article{Hanheide2008,title = {Evaluating extrovert and introvert behaviour of a domestic robot -a video study},journal = {Proceedings of the 17th IEEE International Symposium on Robot and Human Interactive Communication, RO-MAN},year = {2008},pages = {488-493},author = {Lohse, M. and Hanheide, M. and Wrede, B. and Walters, M.L. and Koay, K.L. and Syrdal, D.S. and Green, A. and H{\\\"u}ttenrauch, H. and Dautenhahn, K. and Sagerer, G. and Severinson-Eklundh, K.}}",
"@article{Hanheide2007,title = {Coordinating interactive vision behaviors for cognitive assistance},journal = {Computer Vision and Image Understanding},year = {2007},volume = {108},number = {1-2},pages = {135-149},author = {Wachsmuth, S. and Wrede, S. and Hanheide, M.}}",
"@article{Hanheide2017,title = {Robot task planning and explanation in open and uncertain worlds},journal = {Artificial Intelligence},year = {2017},volume = {247},pages = {119-150},author = {Hanheide, M. and G{\\\"o}belbecker, M. and Horn, G.S. and Pronobis, A. and Sj{\\\"o}{\\\"o}, K. and Aydemir, A. and Jensfelt, P. and Gretton, C. and Dearden, R. and Janicek, M. and Zender, H. and Kruijff, G.-J. and Hawes, N. and Wyatt, J.L.}}",
"@article{Hanheide2009,title = {Improving HRI design by applying Systemic Interaction Analysis (SInA)},journal = {Interaction Studies},year = {2009},volume = {10},number = {3},pages = {298-323},author = {Lohse, M. and Hanheide, M. and Pitsch, K. and Rohlfing, K.J. and Sagerer, G.}}",
"@article{Hanheide2020,title = {Planning Actions by Interactive Movement Primitives: pushing occluding pieces to pick a ripe fruit},journal = {arXiv},year = {2020},author = {Mghames, S. and Hanheide, M. and Amir Ghalamzan, E.}}",
"@article{Hanheide2018,title = {Studying Table-Top Manipulation Tasks: A Robust Framework for Object Tracking in Collaboration},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2018},pages = {177-178},author = {Lightbody, P. and Baxter, P. and Hanheide, M.}}",
"@article{Hanheide2017,title = {A versatile high-performance visual fiducial marker detection system with scalable identity encoding},journal = {Proceedings of the ACM Symposium on Applied Computing},year = {2017},volume = {Part F128005},pages = {276-282},author = {Lightbody, P. and Krajn{\\'i}k, T. and Hanheide, M.}}",
"@article{Hanheide2011,title = {Long-term socially perceptive and interactive robot companions: Challenges and future perspectives},journal = {ICMI{'}11 - Proceedings of the 2011 ACM International Conference on Multimodal Interaction},year = {2011},pages = {323-326},author = {Aylett, R.S. and Castellano, G. and Raducanu, B. and Paiva, A. and Hanheide, M.}}",
"@article{Hanheide2009,title = {Towards learning by interacting},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2009},volume = {5436},pages = {139-150},author = {Wrede, B. and Rohlfing, K.J. and Hanheide, M. and Sagerer, G.}}",
"@inproceedings{lirolem6925, month= {November}, author= {Thorsten P. Spexard and Marc Hanheide}, note= {Abstract With robotic systems entering our daily life, they have to become more flexible and subsuming a multitude of abilities in one single integrated system. Subsequently an increased extensibility of the robots? system architectures is needed. \r\nThe goal is to facilitate a long-time evolution of the integrated system in-line with the scientific progress on the algorithmic level. In this paper we present an approach developed for an event-driven robot architecture, focussing on the coordination and interplay of new abilities and components. Appropriate timing, sequencing strategies, execution guaranties, and process flow synchronization are taken into account to allow appropriate arbitration and interaction between components as well as between the integrated system and the user. The presented approach features dynamic reconfiguration and global coordination based on simple production rules. These are applied fist time in conjunction with flexible representations in global memory spaces and an event-driven architecture. As a result a highly adaptive robot control compared to alternative approaches is achieved, allowing system modification during runtime even within complex interactive human-robot scenarios}, booktitle= {Conference on Human Centered Robotic Systems}, editor= {B. Gottfried and H. Aghajan}, title= {System integration supporting evolutionary development and design}, publisher= {Springer}, year= {2009}, pages= {1--9}, keywords= {ARRAY(0x7f43493bfce0)}, url= {http://eprints.lincoln.ac.uk/6925/}, abstract= {Abstract With robotic systems entering our daily life, they have to become more flexible and subsuming a multitude of abilities in one single integrated system. Subsequently an increased extensibility of the robots? system architectures is needed. \r\nThe goal is to facilitate a long-time evolution of the integrated system in-line with the scientific progress on the algorithmic level. In this paper we present an approach developed for an event-driven robot architecture, focussing on the coordination and interplay of new abilities and components. Appropriate timing, sequencing strategies, execution guaranties, and process flow synchronization are taken into account to allow appropriate arbitration and interaction between components as well as between the integrated system and the user. The presented approach features dynamic reconfiguration and global coordination based on simple production rules. These are applied fist time in conjunction with flexible representations in global memory spaces and an event-driven architecture. As a result a highly adaptive robot control compared to alternative approaches is achieved, allowing system modification during runtime even within complex interactive human-robot scenarios}}\n\n",
"@article{Hanheide2009,title = {Laser-based navigation enhanced with 3D time-of-flight data},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2009},pages = {2844-2850},author = {Yuan, F. and Swadzba, A. and Philippsen, R. and Engin, O. and Hanheide, M. and Wachsmuth, S.}}",
"@article{Hanheide2015,title = {Now or later? Predicting and maximising success of navigation actions from long-term experience},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2015},volume = {2015-June},number = {June},pages = {1112-1117},author = {Fentanes, J.P. and Lacerda, B. and Krajnik, T. and Hawes, N. and Hanheide, M.}}",
"@article{Hanheide2024,title = {Experimental Evaluation of ROS-Causal in Real-World Human-Robot Spatial Interaction Scenarios},journal = {arXiv},year = {2024},author = {Castri, L. and Beraldo, G. and Mghames, S. and Hanheide, M. and Bellotto, N.}}",
"@article{Hanheide2023,title = {Qualitative Prediction of Multi-Agent Spatial Interactions},journal = {IEEE International Workshop on Robot and Human Communication, RO-MAN},year = {2023},pages = {1170-1175},author = {Mghames, S. and Castri, L. and Hanheide, M. and Bellotto, N.}}",
"@article{Hanheide2016,title = {Qualitative constraints for human-aware robot navigation using Velocity Costmaps},journal = {25th IEEE International Symposium on Robot and Human Interactive Communication, RO-MAN 2016},year = {2016},pages = {586-592},author = {Dondrup, C. and Hanheide, M.}}",
"@article{Hanheide2008,title = {Automatic initialization for facial analysis in interactive robotics},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2008},volume = {5008 LNCS},pages = {517-526},author = {Rabie, A. and Lang, C. and Hanheide, M. and Castrill{\\'o}n-Santana, M. and Sagerer, G.}}",
"@article{Hanheide2024,title = {Generalizable Stable Points Segmentation for 3D LiDAR Scan-to-Map Long-Term Localization},journal = {IEEE Robotics and Automation Letters},year = {2024},volume = {9},number = {4},pages = {3546-3553},author = {Hroob, I. and Mersch, B. and Stachniss, C. and Hanheide, M.}}",
"@article{Hanheide2010,title = {Self-understanding and self-extension: A systems and representational approach},journal = {IEEE Transactions on Autonomous Mental Development},year = {2010},volume = {2},number = {4},pages = {282-303},author = {Wyatt, J.L. and Aydemir, A. and Brenner, M. and Hanheide, M. and Hawes, N. and Jensfelt, P. and Kristan, M. and Kruijff, G.-J.M. and Lison, P. and Pronobis, A. and Sj{\\\"o}{\\\"o}, K. and Vrecko, A. and Zender, H. and Zillich, M. and Skocaj, D.}}",
"@article{Hanheide2010,title = {Dora the explorer: A mobile robot motivated by curiosity},journal = {4th International Conference on Cognitive Systems, CogSys 2010},year = {2010},author = {Aydemir, A. and Brenner, M. and G{\\\"o}belbecker, M. and Hanheide, M. and Hawes, N. and Jensfelt, P. and Kruijff, G.-J.M. and Kruijff-Korbayov{\\'a}, I. and Lison, P. and Sj{\\\"o}o, K. and Wyatt, J. and Zender, H. and Zillich, M.}}",
"@article{Hanheide2018,title = {Artificial Intelligence for Long-Term Robot Autonomy: A Survey},journal = {IEEE Robotics and Automation Letters},year = {2018},volume = {3},number = {4},pages = {4023-4030},author = {Kunze, L. and Hawes, N. and Duckett, T. and Hanheide, M. and Krajnik, T.}}",
"@article{Hanheide2021,title = {A Deep Learning Method for Vision Based Force Prediction of a Soft Fin Ray Gripper Using Simulation Data},journal = {Frontiers in Robotics and AI},year = {2021},volume = {8},author = {De Barrie, D. and Pandya, M. and Pandya, H. and Hanheide, M. and Elgeneidy, K.}}",
"@article{Hanheide2018,title = {Getting to Know Your Robot Customers: Automated Analysis of User Identity and Demographics for Robots in the Wild},journal = {IEEE Robotics and Automation Letters},year = {2018},volume = {3},number = {4},pages = {3733-3740},author = {Herrero, R.P. and Fentanes, J.P. and Hanheide, M.}}",
"@article{Hanheide2013,title = {Facial communicative signal interpretation in human-robot interaction by discriminative video subsequence selection},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2013},pages = {170-177},author = {Lang, C. and Wachsmuth, S. and Hanheide, M. and Wersing, H.}}",
"@article{lirolem6712, volume= {25}, number= {12}, month= {December}, author= {H. Siegl and Marc Hanheide and S. Wrede and A. Pinz}, note= {The European Cognitive Vision project VAMPIRE uses mobile AR-kits to interact with a visual active memory for teaching and retrieval purposes. This paper describes concept and technical realization of the used mobile AR-kits and discusses interactive learning and retrieval in office environments, and the active memory infrastructure. The focus is on 3D interaction for pointing in a scene coordinate system. This is achieved by 3D augmented pointing, which combines inside-out tracking for head pose recovery and 3D stereo human?computer interaction. Experimental evaluation shows that the accuracy of this 3D cursor is within a few centimeters, which is sufficient to point at an object in an office. Finally, an application of the cursor in VAMPIRE is presented, where in addition to the mobile system, at least one stationary active camera is used to obtain different views of an object. There are many potential applications, for example an improved view-based object recognition.}, title= {An augmented reality human?computer interface for object localization in a cognitive vision system}, publisher= {Elsevier}, year= {2007}, journal= {Image and Vision Computing}, pages= {1895--1903}, keywords= {ARRAY(0x7f43493c1218)}, url= {http://eprints.lincoln.ac.uk/6712/}, abstract= {The European Cognitive Vision project VAMPIRE uses mobile AR-kits to interact with a visual active memory for teaching and retrieval purposes. This paper describes concept and technical realization of the used mobile AR-kits and discusses interactive learning and retrieval in office environments, and the active memory infrastructure. The focus is on 3D interaction for pointing in a scene coordinate system. This is achieved by 3D augmented pointing, which combines inside-out tracking for head pose recovery and 3D stereo human?computer interaction. Experimental evaluation shows that the accuracy of this 3D cursor is within a few centimeters, which is sufficient to point at an object in an office. Finally, an application of the cursor in VAMPIRE is presented, where in addition to the mobile system, at least one stationary active camera is used to obtain different views of an object. There are many potential applications, for example an improved view-based object recognition.}}\n\n",
"@article{Hanheide2007,title = {An augmented reality human-computer interface for object localization in a cognitive vision system},journal = {Image and Vision Computing},year = {2007},volume = {25},number = {12},pages = {1895-1903},author = {Siegl, H. and Hanheide, M. and Wrede, S. and Pinz, A.}}",
"@article{Hanheide2024,title = {On Optimising Topology of Agricultural Fields for Efficient Robotic Fleet Deployment},journal = {Lecture Notes in Networks and Systems},year = {2024},volume = {794},pages = {285-301},author = {Zhu, Z. and Das, G.P. and Hanheide, M.}}",
"@article{Hanheide2018,title = {Safe Human-Robot Interaction in Agriculture},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2018},pages = {59-60},author = {Baxter, P. and Cielniak, G. and Hanheide, M. and From, P.}}",
"@inproceedings{lirolem6935, booktitle= {ICRA Workshop on Social Interaction with Intelligent Indoor Robots (2008)}, editor= {B. Gottfried and H. Aghajan}, month= {May}, title= {Oops, something is wrong - error detection and recovery for advanced human-robot-interaction}, author= {Thorsten P. Spexard and Marc Hanheide and Shuyin Li and Britta Wrede}, year= {2008}, note= {A matter of course for the researchers and developers of state-of-the-art technology for human-computer- or human-robot-interaction is to create not only systems that can precisely fulfill a certain task. They must provide a strong robustness against internal and external errors or user-dependent application errors. Especially when creating service robots for a variety of applications or robots for accompanying humans in everyday situations sufficient error robustness is crucial for acceptance by users. But experience unveils that operating such systems under real world conditions with unexperienced users is an extremely challenging task which still is not solved satisfactorily. In this paper we will present an approach for handling both internal errors and application errors within an integrated system capable of performing extended HRI on different robotic platforms and in unspecified surroundings like a real world apartment. Based on the gathered experience from user studies and evaluating integrated systems in the real world, we implemented several ways to generalize and handle unexpected situations. Adding such a kind of error awareness to HRI systems in cooperation with the interaction partner avoids to get stuck in an unexpected situation or state and handle mode confusion. Instead of shouldering the enormous effort to account for all possible problems, this paper proposes a more general solution and underpins this with findings from naive user studies. This enhancement is crucial for the development of a new generation of robots as despite diligent preparations might be made, no one can predict how an interaction with a robotic system will develop and which kind of environment it has to cope with.}, keywords= {ARRAY(0x7f43493c10f8)}, url= {http://eprints.lincoln.ac.uk/6935/}, abstract= {A matter of course for the researchers and developers of state-of-the-art technology for human-computer- or human-robot-interaction is to create not only systems that can precisely fulfill a certain task. They must provide a strong robustness against internal and external errors or user-dependent application errors. Especially when creating service robots for a variety of applications or robots for accompanying humans in everyday situations sufficient error robustness is crucial for acceptance by users. But experience unveils that operating such systems under real world conditions with unexperienced users is an extremely challenging task which still is not solved satisfactorily. In this paper we will present an approach for handling both internal errors and application errors within an integrated system capable of performing extended HRI on different robotic platforms and in unspecified surroundings like a real world apartment. Based on the gathered experience from user studies and evaluating integrated systems in the real world, we implemented several ways to generalize and handle unexpected situations. Adding such a kind of error awareness to HRI systems in cooperation with the interaction partner avoids to get stuck in an unexpected situation or state and handle mode confusion. Instead of shouldering the enormous effort to account for all possible problems, this paper proposes a more general solution and underpins this with findings from naive user studies. This enhancement is crucial for the development of a new generation of robots as despite diligent preparations might be made, no one can predict how an interaction with a robotic system will develop and which kind of environment it has to cope with.}}\n\n",
"@article{Hanheide2016,title = {Persistent localization and life-long mapping in changing environments using the frequency map enhancement},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2016},volume = {2016-November},pages = {4558-4563},author = {Krajn{\\'i}k, T. and Fentanes, J.P. and Hanheide, M. and Duckett, T.}}",
"@inproceedings{lirolem6933, booktitle= {Robotics: Science and Systems Workshop on Interactive Robot Learning}, editor= {B. Gottfried and H. Aghajan}, month= {June}, title= {Moving from augmented to interactive mapping}, author= {Olaf Booij and Ben Kr\\\"ose and Julia Peltason and Thorsten P. Spexard and Marc Hanheide}, year= {2008}, note= {Recently1 there has been a growing interest in human\r\naugmented mapping[1, 2]. That is: a mobile robot builds\r\na low level spatial representation of the environment based\r\non its sensor readings while a human provides labels for\r\nhuman concepts, such as rooms, which are then augmented\r\nor anchored to this representation or map [3]. Given such an\r\naugmented map the robot has the ability to communicate with\r\nthe human about spatial concepts using the labels that the\r\nhuman understand. For instance, the robot could report it is\r\nin the ?kitchen?, instead of a set Cartesian coordinates which\r\nare probably meaningless to the human.}, keywords= {ARRAY(0x7f43493c10c8)}, url= {http://eprints.lincoln.ac.uk/6933/}, abstract= {Recently1 there has been a growing interest in human\r\naugmented mapping[1, 2]. That is: a mobile robot builds\r\na low level spatial representation of the environment based\r\non its sensor readings while a human provides labels for\r\nhuman concepts, such as rooms, which are then augmented\r\nor anchored to this representation or map [3]. Given such an\r\naugmented map the robot has the ability to communicate with\r\nthe human about spatial concepts using the labels that the\r\nhuman understand. For instance, the robot could report it is\r\nin the ?kitchen?, instead of a set Cartesian coordinates which\r\nare probably meaningless to the human.}}\n\n",
"@article{Hanheide2004,title = {Feature and Viewpoint Selection for Industrial Car Assembly},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2004},volume = {3175},pages = {528-535},author = {St{\\\"o}{\\ss}el, D. and Hanheide, M. and Sagerer, G. and Kr{\\\"u}ger, L. and Ellenrieder, M.}}",
"@article{Hanheide2008,title = {The visual active memory perspective on integrated recognition systems},journal = {Image and Vision Computing},year = {2008},volume = {26},number = {1},pages = {5-14},author = {Bauckhage, C. and Wachsmuth, S. and Hanheide, M. and Wrede, S. and Sagerer, G. and Heidemann, G. and Ritter, H.}}",
"@article{Hanheide2023,title = {Implementation of a human-aware robot navigation module for cooperative soft-fruit harvesting operations},journal = {Journal of Field Robotics},year = {2023},author = {Guevara, L. and Hanheide, M. and Parsons, S.}}",
"@incollection{lirolem6714, month= {April}, author= {Annika Peters and Thorsten P. Spexard and Marc Hanheide and Petra Weiss}, note= {Mobile robots are already applied in factories and hospitals, merely to do a distinct task. It is envisioned that robots assist in households soon. Those service robots will have to cope with several situations and tasks and of course with sophisticated human-robot interactions (HRI). Therefore, a robot has not only to consider social rules with respect to proxemics, it must detect in which (interaction) situation it is in and act accordingly. With respect to spatial HRI, we concentrate on the use of non-verbal communication. This chapter stresses the meaning of both, machine movements as signals towards a human and human body language. Considering these aspects will make interaction simpler and smoother. An observational study is presented to acquire a concept of spatial prompting by a robot and by a human. When a person and robot meet in a narrow hallway in order to pass by, they have to make room for each other. But how can a robot make sure that both really want to pass by instead of starting interaction? This especially concerns narrow, non-artificial surroundings. Which social signals are expected by the user and on the other side, can be generated or processed by a robot? The results will show what an appropriate passing behaviour is and how to distinguish between passage situations and others. The results shed light upon the readability of signals in spatial HRI.}, booktitle= {Behaviour Monitoring and Interpretation - BMI Well-being}, editor= {B. Gottfried and H. Aghajan}, title= {Hey robot, get out of my way: survey on a spatial and situational movement concept in HRI}, publisher= {IOS Press}, year= {2011}, keywords= {ARRAY(0x7f43493bfb00)}, url= {http://eprints.lincoln.ac.uk/6714/}, abstract= {Mobile robots are already applied in factories and hospitals, merely to do a distinct task. It is envisioned that robots assist in households soon. Those service robots will have to cope with several situations and tasks and of course with sophisticated human-robot interactions (HRI). Therefore, a robot has not only to consider social rules with respect to proxemics, it must detect in which (interaction) situation it is in and act accordingly. With respect to spatial HRI, we concentrate on the use of non-verbal communication. This chapter stresses the meaning of both, machine movements as signals towards a human and human body language. Considering these aspects will make interaction simpler and smoother. An observational study is presented to acquire a concept of spatial prompting by a robot and by a human. When a person and robot meet in a narrow hallway in order to pass by, they have to make room for each other. But how can a robot make sure that both really want to pass by instead of starting interaction? This especially concerns narrow, non-artificial surroundings. Which social signals are expected by the user and on the other side, can be generated or processed by a robot? The results will show what an appropriate passing behaviour is and how to distinguish between passage situations and others. The results shed light upon the readability of signals in spatial HRI.}}\n\n",
"@article{Hanheide2013,title = {Robot George - Interactive continuous learning of visual concepts},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2013},pages = {425},author = {Zillich, M. and Zhou, K. and Sko?aj, D. and Kristan, M. and Vre?ko, A. and Mahni?, M. and Jan{\\'i}?ek, M. and Kruijff, G.-J.M. and Keller, T. and Hanheide, M. and Hawes, N.}}",
"@article{Hanheide2014,title = {Simulation and HRI recent perspectives with the MORSE simulator},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2014},volume = {8810},pages = {13-24},author = {Lemaignan, S. and Hanheide, M. and Karg, M. and Khambhaita, H. and Kunze, L. and Lier, F. and L{\\\"u}tkebohle, I. and Milliez, G.}}",
"@article{Hanheide2023,title = {Smart Parking System Using Heuristic Optimization for~Autonomous Transportation Robots in~Agriculture},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2023},volume = {14136 LNAI},pages = {38-50},author = {Ravikanna, R. and Heselden, J. and Khan, M.A. and Perrett, A. and Zhu, Z. and Das, G. and Hanheide, M.}}",
"@incollection{lirolem11964, number= {6}, month= {November}, author= {Thorsten P. Spexard and Marc Hanheide}, series= {Cognitive Systems Monographs}, booktitle= {Human centered robot systems: cognition, interaction, technology }, title= {System integration supporting evolutionary development and design}, publisher= {Springer Berlin Heidelberg}, year= {2009}, pages= {1--9}, keywords= {ARRAY(0x7f43493c0d38)}, url= {http://eprints.lincoln.ac.uk/11964/}, abstract= {With robotic systems entering our daily life, they have to become more flexible and subsuming a multitude of abilities in one single integrated system. Sub- sequently an increased extensibility of the robots? system architectures is needed. The goal is to facilitate a long-time evolution of the integrated system in-line with the scientific progress on the algorithmic level. In this paper we present an approach developed for an event-driven robot architecture, focussing on the coordination and interplay of new abilities and components. Appropriate timing, sequencing strategies, execution guaranties, and process flow synchronisation are taken into account to allow appropriate arbitration and interaction between components as well as between the integrated system and the user. The presented approach features dynamic reconfiguration and global coordination based on simple production rules. These are applied first time in conjunction with flexible representations in global memory spaces and an event-driven architecture. As a result a highly adaptive robot control compared to alternative approaches is achieved, allowing system modification during runtime even within complex interactive human-robot scenarios. }}\n\n",
"@article{Hanheide2021,title = {Tactile Dynamic Behaviour Prediction Based on Robot Action},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {13054 LNAI},pages = {284-293},author = {Nazari, K. and Mandill, W. and Hanheide, M. and Esfahani, A.G.}}",
"@article{Hanheide2020,title = {Engaging Learners in Dialogue Interactivity Development for Mobile Robots},journal = {Advances in Intelligent Systems and Computing},year = {2020},volume = {946 AISC},pages = {147-160},author = {Baxter, P. and Del Duchetto, F. and Hanheide, M.}}",
"@article{Hanheide2009,title = {Evaluation and discussion of multi-modal emotion recognition},journal = {2009 International Conference on Computer and Electrical Engineering, ICCEE 2009},year = {2009},volume = {1},pages = {598-602},author = {Rabie, A. and Wrede, B. and Vogt, T. and Hanheide, M.}}",
"@article{Hanheide2012,title = {Analysis of human-robot spatial behaviour applying a qualitative trajectory calculus},journal = {Proceedings - IEEE International Workshop on Robot and Human Interactive Communication},year = {2012},pages = {689-694},author = {Hanheide, M. and Peters, A. and Bellotto, N.}}",
"@inproceedings{lirolem14893, booktitle= {International IEEE/EPSRC Workshop on Autonomous Cognitive Robotics}, month= {March}, title= {Spatio-temporal representation for cognitive control in long-term scenarios}, author= {Tom Duckett and Marc Hanheide and Tomas Krajnik and Jaime Pulido Fentanes and Christian Dondrup}, year= {2013}, keywords= {ARRAY(0x7f43493bf038)}, url= {http://eprints.lincoln.ac.uk/14893/}, abstract= {The FP-7 Integrated Project STRANDS [1] is aimed at producing intelligent mobile robots that are able to operate robustly for months in dynamic human environments. To achieve long-term autonomy, the robots would need to understand the environment and how it changes over time. For that, we will have to develop novel approaches to extract 3D shapes, objects, people, and models of activity from sensor data gathered during months of autonomous operation.\r\nSo far, the environment models used in mobile robotics have been tailored to capture static scenes and environment variations are largely treated as noise. Therefore, utilization of the static models in ever-changing, real world environments is difficult. We propose to represent the environment?s spatio-temporal dynamics by its frequency spectrum.}}\n\n",
"@article{Hanheide2018,title = {RASberry: Robotic and autonomous systems: For berry production},journal = {Mechanical Engineering},year = {2018},volume = {140},number = {6},pages = {14-18},author = {From, P.J. and Grimstad, L. and Hanheide, M. and Pearson, S. and Cielniak, G.}}",
"@article{Hanheide2008,title = {Who am I talking with? A face memory for social robots},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2008},pages = {3660-3665},author = {Hanheide, M. and Wrede, S. and Lang, C. and Sagerer, G.}}",
"@article{Hanheide2020,title = {Interactive movement primitives: Planning to push occluding pieces for fruit picking},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2020},pages = {2616-2623},author = {Mghames, S. and Hanheide, M. and Ghalamzan E., A.}}",
"@article{Hanheide2009,title = {Feedback interpretation based on facial expressions in human - Robot interaction},journal = {Proceedings - IEEE International Workshop on Robot and Human Interactive Communication},year = {2009},pages = {189-194},author = {Lang, C. and Hanheide, M. and Lohse, M. and Wersing, H. and Sagerer, G.}}",
"@article{Hanheide2021,title = {Navigate-and-seek: A robotics framework for people localization in agricultural environments},journal = {arXiv},year = {2021},author = {Polvara, R. and Del Duchetto, F. and Neumann, G. and Hanheide, M.}}",
" @article{Zahidi_2024, title={Optimising robotic operation speed with edge computing via 5G network: Insights from selective harvesting robots}, volume={41}, ISSN={1556-4967}, url={http://dx.doi.org/10.1002/rob.22384}, DOI={10.1002/rob.22384}, number={8}, journal={Journal of Field Robotics}, publisher={Wiley}, author={Zahidi, Usman A. and Khan, Arshad and Zhivkov, Tsvetan and Dichtl, Johann and Li, Dom and Parsa, Soran and Hanheide, Marc and Cielniak, Grzegorz and Sklar, Elizabeth I. and Pearson, Simon and Ghalamzan\u2010E., Amir}, year={2024}, month=jul, pages={2771\u20132789} }\n",
"@article{Hanheide2009,title = {Mixed-initiative in human augmented mapping},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2009},pages = {2146-2153},author = {Peltason, J. and Siepmann, F.H.K. and Spexard, T.P. and Wrede, B. and Hanheide, M. and Topp, E.A.}}",
"@article{Hanheide2019,title = {Lindsey the Tour Guide Robot - Usage Patterns in a Museum Long-Term Deployment},journal = {2019 28th IEEE International Conference on Robot and Human Interactive Communication, RO-MAN 2019},year = {2019},author = {Duchetto, F.D. and Baxter, P. and Hanheide, M.}}",
" @article{Poozhiyil_2025, title={A Framework for Real-Time Autonomous Robotic Sorting and Segregation of Nuclear Waste: Modelling, Identification, and Control of Dexter Robot}, url={http://dx.doi.org/10.20944/preprints202501.1606.v1}, DOI={10.20944/preprints202501.1606.v1}, publisher={MDPI AG}, author={Poozhiyil, Mithun and Argin, Omer F and Rai, Mini and Esfahani, Amir G and Hanheide, Marc and King, Ryan and Saunderson, Phil and Moulin-Ramsden, Mike and Yang, Wen and Garc\u00eda, Laura Palacio and Mackay, Iain and Mishra, Abhishek and Okamoto, Sho and Yeung, Kelvin}, year={2025}, month=jan }\n",
"@inproceedings{lirolem6921, booktitle= {Workshop on Behavior Monitoring and Interpretation - Well Being}, editor= {B. Gottfried and H. Aghajan}, month= {September}, title= {Make room for me: a spatial and situational movement concept in HRI}, author= {Annika Peters and Thorsten P. Spexard and Petra Wei\\ss and Marc Hanheide}, year= {2009}, note= {Mobile robots are already applied in factories and hospitals, merely to do a distinct task. It is envisioned that robots assist in households, soon. Those service robots will have to cope with several situations and tasks and of course with sophisticated Human-Robot Interaction (HRI)}, keywords= {ARRAY(0x7f43493c0e28)}, url= {http://eprints.lincoln.ac.uk/6921/}, abstract= {Mobile robots are already applied in factories and hospitals, merely to do a distinct task. It is envisioned that robots assist in households, soon. Those service robots will have to cope with several situations and tasks and of course with sophisticated Human-Robot Interaction (HRI)}}\n\n",
"@article{Hanheide2007,title = {Interaction awareness for joint environment exploration},journal = {Proceedings - IEEE International Workshop on Robot and Human Interactive Communication},year = {2007},pages = {546-551},author = {Spexard, T. and Li, S. and Wrede, B. and Hanheide, M. and Topp, E.A. and H{\\\"u}ttenrauch, H.}}",
"@article{Hanheide2006,title = {Building modular vision systems with a graphical plugin environment},journal = {Proceedings of the Fourth IEEE International Conference on Computer Vision Systems, ICVS{'}06},year = {2006},volume = {2006},pages = {2},author = {L{\\\"o}mker, F. and Wrede, S. and Hanheide, M. and Fritsch, J.}}",
"@article{Hanheide2022,title = {The Impact of Motion Scaling and Haptic Guidance on Operators{'} Workload and Performance in Teleoperation},journal = {Conference on Human Factors in Computing Systems - Proceedings},year = {2022},author = {Parsa, S. and Maior, H.A. and Thumwood, A.R.E. and Wilson, M.L. and Hanheide, M. and Esfahani, A.G.}}",
"@article{Hanheide2015,title = {Show me your moves! Conveying navigation intention of a mobile robot to humans},journal = {2015 European Conference on Mobile Robots, ECMR 2015 - Proceedings},year = {2015},author = {May, A.D. and Dondrup, C. and Hanheide, M.}}",
"@article{Hanheide2020,title = {Taxonomy of trust-relevant failures and mitigation strategies},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2020},pages = {3-12},author = {Tolmeijer, S. and Weiss, A. and Hanheide, M. and Lindner, F. and Powers, T.M. and Dixon, C. and Tielman, M.L.}}",
"@article{Hanheide2020,title = {Abstract visual programming of social robots for novice users},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2020},pages = {154-156},author = {Brown, O. and Roberts-Elliott, L. and Del Duchetto, F. and Hanheide, M. and Baxter, P.}}",
"@article{Hanheide2015,title = {Evaluating the Robot Personality and Verbal Behavior of Domestic Robots Using Video-Based Studies},journal = {Household Service Robotics},year = {2015},pages = {467-486},author = {Walters, M.L. and Lohse, M. and Hanheide, M. and Wrede, B. and Syrdal, D.S. and Koay, K.L. and Green, A. and H{\\\"u}ttenrauch, H. and Dautenhahn, K. and Sagerer, G. and Severinson-Eklundh, K.}}",
"@article{Hanheide2013,title = {Qualitative design and implementation of human-robot spatial interactions},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2013},volume = {8239 LNAI},pages = {331-340},author = {Bellotto, N. and Hanheide, M. and Van De Weghe, N.}}",
"@article{Hanheide2021,title = {Guest Editorial: Introduction to the Special Issue on Long-Term Human Motion Prediction},journal = {IEEE Robotics and Automation Letters},year = {2021},volume = {6},number = {3},pages = {5613-5617},author = {Palmieri, L. and Andrey, R. and Mainprice, J. and Hanheide, M. and Alahi, A. and Lilienthal, A. and Arras, K.O.}}",
"@article{Hanheide2022,title = {Collection and Evaluation of a Long-Term 4D Agri-Robotic Dataset},journal = {arXiv},year = {2022},author = {Polvara, R. and Mellado, S.M. and Hroob, I. and Cielniak, G. and Hanheide, M.}}",
"@article{Hanheide2023,title = {LTS-NET: End-to-end Unsupervised Learning of Long-Term 3D Stable objects},journal = {arXiv},year = {2023},author = {Hroob, I. and Molina, S. and Polvara, R. and Cielniak, G. and Hanheide, M.}}",
"@phdthesis{lirolem6743, month= {October}, title= {A cognitive ego-vision system for interactive assistance}, school= {Universitat Bielefeld}, author= {Marc Hanheide}, year= {2006}, note= {With increasing computational power and decreasing size, computers nowadays are already wearable and mobile. They become attendant of peoples' everyday life. Personal digital assistants and mobile phones equipped with adequate software gain a lot of interest in public, although the functionality they provide in terms of assistance is little more than a mobile databases for appointments, addresses, to-do lists and photos. Compared to the assistance a human can provide, such systems are hardly to call real assistants. The motivation to construct more human-like assistance systems that develop a certain level of cognitive capabilities leads to the exploration of two central paradigms in this work. The first paradigm is termed cognitive vision systems. Such systems take human cognition as a design principle of underlying concepts and develop learning and adaptation capabilities to be more flexible in their application. They are embodied, active, and situated. Second, the ego-vision paradigm is introduced as a very tight interaction scheme between a user and a computer system that especially eases close collaboration and assistance between these two. Ego-vision systems (EVS) take a user's (visual) perspective and integrate the human in the system's processing loop by means of a shared perception and augmented reality. EVSs adopt techniques of cognitive vision to identify objects, interpret actions, and understand the user's visual perception. And they articulate their knowledge and interpretation by means of augmentations of the user's own view. These two paradigms are studied as rather general concepts, but always with the goal in mind to realize more flexible assistance systems that closely collaborate with its users. This work provides three major contributions. First, a definition and explanation of ego-vision as a novel paradigm is given. Benefits and challenges of this paradigm are discussed as well. Second, a configuration of different approaches that permit an ego-vision system to perceive its environment and its user is presented in terms of object and action recognition, head gesture recognition, and mosaicing. These account for the specific challenges identified for ego-vision systems, whose perception capabilities are based on wearable sensors only. Finally, a visual active memory (VAM) is introduced as a flexible conceptual architecture for cognitive vision systems in general, and for assistance systems in particular. It adopts principles of human cognition to develop a representation for information stored in this memory. So-called memory processes continuously analyze, modify, and extend the content of this VAM. The functionality of the integrated system emerges from their coordinated interplay of these memory processes. An integrated assistance system applying the approaches and concepts outlined before is implemented on the basis of the visual active memory. The system architecture is discussed and some exemplary processing paths in this system are presented and discussed. It assists users in object manipulation tasks and has reached a maturity level that allows to conduct user studies. Quantitative results of different integrated memory processes are as well presented as an assessment of the interactive system by means of these user studies.}, keywords= {ARRAY(0x7f43493c1308)}, url= {http://eprints.lincoln.ac.uk/6743/}, abstract= {With increasing computational power and decreasing size, computers nowadays are already wearable and mobile. They become attendant of peoples' everyday life. Personal digital assistants and mobile phones equipped with adequate software gain a lot of interest in public, although the functionality they provide in terms of assistance is little more than a mobile databases for appointments, addresses, to-do lists and photos. Compared to the assistance a human can provide, such systems are hardly to call real assistants. The motivation to construct more human-like assistance systems that develop a certain level of cognitive capabilities leads to the exploration of two central paradigms in this work. The first paradigm is termed cognitive vision systems. Such systems take human cognition as a design principle of underlying concepts and develop learning and adaptation capabilities to be more flexible in their application. They are embodied, active, and situated. Second, the ego-vision paradigm is introduced as a very tight interaction scheme between a user and a computer system that especially eases close collaboration and assistance between these two. Ego-vision systems (EVS) take a user's (visual) perspective and integrate the human in the system's processing loop by means of a shared perception and augmented reality. EVSs adopt techniques of cognitive vision to identify objects, interpret actions, and understand the user's visual perception. And they articulate their knowledge and interpretation by means of augmentations of the user's own view. These two paradigms are studied as rather general concepts, but always with the goal in mind to realize more flexible assistance systems that closely collaborate with its users. This work provides three major contributions. First, a definition and explanation of ego-vision as a novel paradigm is given. Benefits and challenges of this paradigm are discussed as well. Second, a configuration of different approaches that permit an ego-vision system to perceive its environment and its user is presented in terms of object and action recognition, head gesture recognition, and mosaicing. These account for the specific challenges identified for ego-vision systems, whose perception capabilities are based on wearable sensors only. Finally, a visual active memory (VAM) is introduced as a flexible conceptual architecture for cognitive vision systems in general, and for assistance systems in particular. It adopts principles of human cognition to develop a representation for information stored in this memory. So-called memory processes continuously analyze, modify, and extend the content of this VAM. The functionality of the integrated system emerges from their coordinated interplay of these memory processes. An integrated assistance system applying the approaches and concepts outlined before is implemented on the basis of the visual active memory. The system architecture is discussed and some exemplary processing paths in this system are presented and discussed. It assists users in object manipulation tasks and has reached a maturity level that allows to conduct user studies. Quantitative results of different integrated memory processes are as well presented as an assessment of the interactive system by means of these user studies.}}\n\n",
"@article{Hanheide2023,title = {Enhancing Causal Discovery from Robot Sensor Data in Dynamic Scenarios},journal = {Proceedings of Machine Learning Research},year = {2023},volume = {213},pages = {243-258},author = {Castri, L. and Mghames, S. and Hanheide, M. and Bellotto, N.}}",
"@inproceedings{Onoufriou_2020,\n\tdoi = {10.31256/qm1fu7l},\n\turl = {https://doi.org/10.31256%2Fqm1fu7l},\n\tyear = 2020,\n\tmonth = {may},\n\tpublisher = {{EPSRC} {UK}-{RAS} Network},\n\tauthor = {George Onoufriou and and Marc Hanheide and Georgios Leontidis and},\n\ttitle = {The Augmented Agronomist Pipeline and Time Series Forecasting},\n\tbooktitle = {{UKRAS}20 Conference: {\\textquotedblleft}Robots into the real world{\\textquotedblright} Proceedings}\n}",
"@article{Hanheide2011,title = {Exploiting probabilistic knowledge under uncertain sensing for efficient robot behaviour},journal = {IJCAI International Joint Conference on Artificial Intelligence},year = {2011},pages = {2442-2449},author = {Hanheide, M. and Gretton, C. and Dearden, R. and Hawes, N. and Wyatt, J. and Pronobis, A. and Aydemir, A. and G{\\\"o}belbecker, M. and Zender, H.}}",
"@article{Hanheide2019,title = {Grasping Unknown Objects Based on Gripper Workspace Spheres},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2019},pages = {1541-1547},author = {Sorour, M. and Elgeneidy, K. and Srinivasan, A. and Hanheide, M. and Neumann, G.}}",
"@article{Hanheide2011,title = {A system for interactive learning in dialogue with a tutor},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2011},pages = {3387-3394},author = {Sko?aj, D. and Kristan, M. and Vre?ko, A. and Mahni?, M. and Jan{\\'i}?ek, M. and Kruijff, G.-J.M. and Hanheide, M. and Hawes, N. and Keller, T. and Zillich, M. and Zhou, K.}}",
"@article{Hanheide2007,title = {Human-oriented interaction with an anthropomorphic robot},journal = {IEEE Transactions on Robotics},year = {2007},volume = {23},number = {5},pages = {852-862},author = {Spexard, T.P. and Hanheide, M. and Sagerer, G.}}",
"@article{Hanheide2021,title = {Responsible development of autonomous robotics in agriculture},journal = {Nature Food},year = {2021},volume = {2},number = {5},pages = {306-309},author = {Rose, D.C. and Lyon, J. and de Boon, A. and Hanheide, M. and Pearson, S.}}",
"@article{Hanheide2018,title = {Robots Providing Cognitive Assistance in Shared Workspaces},journal = {ACM/IEEE International Conference on Human-Robot Interaction},year = {2018},pages = {57-58},author = {Baxter, P. and Lightbody, P. and Hanheide, M.}}",
"@article{Hanheide2023,title = {Visual teach and generalise (VTAG)?Exploiting perceptual aliasing for scalable autonomous robotic navigation in horticultural environments},journal = {Computers and Electronics in Agriculture},year = {2023},volume = {212},author = {Cox, J. and Tsagkopoulos, N. and Rozsyp{\\'a}lek, Z. and Krajn{\\'i}k, T. and Sklar, E. and Hanheide, M.}}",
"@article{Hanheide2023,title = {Bacchus Long-Term (BLT) data set: Acquisition of the agricultural multimodal BLT data set with automated robot deployment},journal = {Journal of Field Robotics},year = {2023},author = {Polvara, R. and Molina, S. and Hroob, I. and Papadimitriou, A. and Tsiolis, K. and Giakoumis, D. and Likothanassis, S. and Tzovaras, D. and Cielniak, G. and Hanheide, M.}}",
"@article{Hanheide2009,title = {Make room for me a study outline on a spatial and situational concept in HRI},journal = {Workshop Proceedings - 32nd Annual Conference on Artificial Intelligence, KI 2009 - Workshop on Planning, Scheduling, Design, and Configuration, PuK 2009},year = {2009},pages = {10},author = {Peters, A. and Spexard, T.P. and Wei{\\ss}, P. and Hanheide, M.}}",
"@article{Hanheide2020,title = {Action-Conditional Recurrent Kalman Networks For Forward and Inverse Dynamics Learning},journal = {Proceedings of Machine Learning Research},year = {2020},volume = {155},pages = {765-781},author = {Shaj, V. and Becker, P. and B{\\\"u}chler, D. and Pandya, H. and van Duijkeren, N. and Taylor, C.J. and Hanheide, M. and Neumann, G.}}",
"@article{Hanheide2022,title = {Causal Discovery of Dynamic Models for Predicting Human Spatial Interactions},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2022},volume = {13817 LNAI},pages = {154-164},author = {Castri, L. and Mghames, S. and Hanheide, M. and Bellotto, N.}}"
]
},
"tduckett": {
"sys_id": "94e90db9-b0da-44bd-93bd-cd7649f35ae8",
"personId": "94e90db9-b0da-44bd-93bd-cd7649f35ae8",
"prefixHonorific": "Prof",
"familiarName": "Tom",
"firstName": "Thomas",
"middleName": "Dollings",
"surname": "Duckett",
"orcid": "",
"telephone": "",
"staffEmailAddress": "tduckett@lincoln.ac.uk",
"samAccount": "tduckett",
"jobTitle": "Visiting Professor",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": []
},
"esklar": {
"sys_id": "5a55374c-44b0-4a2a-946d-7350a68138aa",
"personId": "5a55374c-44b0-4a2a-946d-7350a68138aa",
"prefixHonorific": "Prof",
"familiarName": "Elizabeth",
"firstName": "Elizabeth",
"middleName": "Ida",
"surname": "Sklar",
"orcid": "0000-0002-6383-9407",
"telephone": "",
"staffEmailAddress": "ESklar@lincoln.ac.uk",
"samAccount": "esklar",
"jobTitle": "Director of LIAT/ Professor in Agri-Robotics",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Agri-Food Technology & Manufacturing",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{schneider2020application,title={The Application of Market-based Multi-Robot Task Allocation to Ambulance Dispatch},author={Schneider, Eric and Poulton, Marcus and Drake, Archie and Smith, Leanne and Roussos, George and Parsons, Simon and Sklar, Elizabeth I},journal={arXiv preprint arXiv:2003.05550},year={2020}}\n",
"@article{sklar2010knowledge,title={The knowledge engineering},author={SKLAR, ELIZABETH and RICHARDS, DEBBIE and MARISCAL, GONZALO and MARB{\\'A}N, {\\'O}SCAR and FERN{\\'A}NDEZ, COVADONGA and KUMAR, SANDEEP and MISHRA, RAVI BHUSHAN and HUNTER, ANTHONY and LIU, WEIRU},year={2010},publisher={Cambridge Univ Press}}\n",
"@article{lakemeyerautonomous,title={Autonomous Planned Color Learning on a Legged Robot},author={Lakemeyer, In Gerhard and Sklar, Elizabeth and Sorenti, Domenico and Takahashi, Tomoichi}}\n",
"@inproceedings{zhivkov2019establishing,title={Establishing continuous communication through dynamic team behaviour switching},author={Zhivkov, Tsvetan and Schneider, Eric and Sklar, Elizabeth and others},year={2019},organization={UK-RAS19 Conference}}\n",
"@inproceedings{parsons2011argumentation,title={Argumentation-based reasoning in agents with varying degrees of trust},author={Parsons, Simon and Tang, Yuqing and Sklar, Elizabeth and McBurney, Peter and Cai, Kai},booktitle={The 10th International Conference on Autonomous Agents and Multiagent Systems-Volume 2},pages={879--886},year={2011}}\n",
"@inproceedings{raphael2015goods,title={From goods to traffic: first steps toward an auction-based traffic signal controller},author={Raphael, Jeffery and Maskell, Simon and Sklar, Elizabeth},booktitle={Advances in Practical Applications of Agents, Multi-Agent Systems, and Sustainability: The PAAMS Collection: 13th International Conference, PAAMS 2015, Salamanca, Spain, June 3-4, 2015, Proceedings 13},pages={187--198},year={2015},organization={Springer International Publishing}}\n",
"@inproceedings{harman2021practical,title={A practical application of market-based mechanisms for allocating harvesting tasks},author={Harman, Helen and Sklar, Elizabeth I},booktitle={Advances in Practical Applications of Agents, Multi-Agent Systems, and Social Good. The PAAMS Collection: 19th International Conference, PAAMS 2021, Salamanca, Spain, October 6--8, 2021, Proceedings 19},pages={114--126},year={2021},organization={Springer International Publishing}}\n",
"@inproceedings{jansen2021predicting,title={Predicting Artist Drawing Activity via Multi-camera Inputs for Co-creative Drawing},author={Jansen, Chipp and Sklar, Elizabeth},booktitle={Annual Conference Towards Autonomous Robotic Systems},pages={217--227},year={2021},organization={Springer International Publishing Cham}}\n",
"@inproceedings{sklar2004learning,title={Learning while teaching robotics},author={Sklar, Elizabeth and Eguchi, Amy and others},booktitle={AAAI spring symposium 2004 on accessible hands-on artificial intelligence and Robotics education},year={2004}}\n",
"@article{tang2012using,title={Using argumentation to reason about trust and belief},author={Tang, Yuqing and Cai, Kai and McBurney, Peter and Sklar, Elizabeth and Parsons, Simon},journal={Journal of Logic and Computation},volume={22},number={5},pages={979--1018},year={2012},publisher={OUP}}\n",
"@article{sklar2000framework,title={A framework for enabling an internet learning community},author={Sklar, Elizabeth and Pollack, Jordan},journal={Journal of Educational Technology \\& Society},volume={3},number={3},pages={393--408},year={2000},publisher={International Forum of Educational Technology \\& Society}}\n",
"@article{zhangmapping,title={Mapping the impact of faults in a multi-robot team},author={Zhang, Dingdian and Sklar, Elizabeth I}}\n",
"@inproceedings{sklar2010developing,title={Developing a Framework for Team-Based Robotics Research.},author={Sklar, Elizabeth and Parsons, Simon and Epstein, Susan L and Ozgelen, Arif Tuna and Rabanca, George and Anzaroot, Sam and Gonzalez, Joel and Lopez, Jesse and Lustig, Mitch and Ma, Linda and others},booktitle={Enabling Intelligence through Middleware},year={2010}}\n",
"@inproceedings{sklar2006educational,title={Educational Robotics in Brooklyn.},author={Sklar, Elizabeth and Parsons, Simon and Azhar, MQ and Andrewlevich, Valerie and others},booktitle={AAAI},pages={1978--1979},year={2006}}\n",
"@inproceedings{chapman2022using,title={Using microservices to design patient-facing research software},author={Chapman, Martin and Abigail, G and Sassoon, Isabel and K{\\\"o}kciyan, Nadin and Sklar, Elizabeth I and Curcin, Vasa and others},booktitle={2022 IEEE 18th International Conference on e-Science (e-Science)},pages={44--54},year={2022},organization={IEEE}}\n",
"@inproceedings{sklar2007robotics,title={Robotics Across the Curriculum.},author={Sklar, Elizabeth and Parsons, Simon and Azhar, MQ},booktitle={AAAI spring symposium: semantic scientific knowledge integration},pages={142--147},year={2007}}\n",
"@inproceedings{parsons2013argtrust,title={Argtrust: decision making with information from sources of varying trustworthiness},author={Parsons, Simon and Sklar, Elizabeth and Salvit, Jordan and Wall, Holly and Li, Zimi},booktitle={Proceedings of the 2013 international conference on Autonomous agents and multi-agent systems},pages={1395--1396},year={2013}}\n",
"@inproceedings{huang2020experiment,title={An experiment on human-robot interaction in a simulated agricultural task},author={Huang, Zhuoling and Miyauchi, Genki and Gomez, Adrian Salazar and Bird, Richie and Kalsi, Amar Singh and Jansen, Chipp and Liu, Zeyang and Parsons, Simon and Sklar, Elizabeth},booktitle={Towards Autonomous Robotic Systems: 21st Annual Conference, TAROS 2020, Nottingham, UK, September 16, 2020, Proceedings 21},pages={221--233},year={2020},organization={Springer International Publishing}}\n",
"@inproceedings{sklar2004robocup,title={Robocup in higher education: A preliminary report},author={Sklar, Elizabeth and Parsons, Simon and Stone, Peter},booktitle={RoboCup 2003: Robot Soccer World Cup VII 7},pages={296--307},year={2004},organization={Springer Berlin Heidelberg}}\n",
"@article{harman2022multi,title={Multi-agent task allocation for harvest management},author={Harman, Helen and Sklar, Elizabeth I},journal={Frontiers in Robotics and AI},volume={9},pages={864745},year={2022},publisher={Frontiers}}\n",
"@inproceedings{sklar2004long,title={A long-term approach to improving human-robot interaction: RoboCupJunior Rescue},author={Sklar, Elizabeth},booktitle={IEEE International Conference on Robotics and Automation, 2004. Proceedings. ICRA'04. 2004},volume={3},pages={2321--2326},year={2004},organization={IEEE}}\n",
"@inproceedings{sklar2007agent,title={An agent-based methodology for analyzing and visualizing educational assessment data},author={Sklar, Elizabeth and Salvit, Jordan and Camacho, Christopher and Liu, William},booktitle={Proceedings of the 6th international joint conference on Autonomous agents and multiagent systems},pages={1--3},year={2007}}\n",
"@inproceedings{sklar2006exploring,title={Exploring Coordination Properties within Populations of Distributed Agents.},author={Sklar, Elizabeth and Shut, Martijn and Diwold, Konrad and Parsons, Simon},booktitle={AAAI Spring Symposium: Distributed Plan and Schedule Management},pages={121--127},year={2006}}\n",
"@inproceedings{sklar2002robocupjunior,title={RoboCupJunior: a vehicle for enhancing technical literacy.},author={Sklar, Elizabeth and Parsons, Simon},booktitle={AAAI Mobile Robot Competition},pages={108--118},year={2002}}\n",
"@inproceedings{zhang2019cross,title={A cross-landscape evaluation of multi-robot team performance in static task-allocation domains},author={Zhang, Dingdian and Schneider, Eric and Sklar, Elizabeth},booktitle={Towards Autonomous Robotic Systems: 20th Annual Conference, TAROS 2019, London, UK, July 3--5, 2019, Proceedings, Part II 20},pages={261--272},year={2019},organization={Springer International Publishing}}\n",
"@article{applebaum2016firewall,title={Firewall configuration: An application of multiagent metalevel argumentation},author={Applebaum, Andy and Li, Zimi and Levitt, Karl and Parsons, Simon and Rowe, Jeff and Sklar, Elizabeth I},journal={Argument \\& Computation},volume={7},number={2-3},pages={201--221},year={2016},publisher={IOS Press}}\n",
"@inbook{b6b7f9abeff94014b65c4bc77a39ac10,\n title = \"From Goods to Traffic: First Steps Toward an Auction-based Traffic Signal Controller\",\n author = \"Jeffery Raphael and Simon Maskell and Sklar, {Elizabeth Ida}\",\n year = \"2015\",\n month = \"5\",\n series = \"Lecture Notes in Computer Science\",\n publisher = \"Springer\",\n booktitle = \"13th Conference on Practical Applications of Agents and Multi-Agent Systems (PAAMS)\",\n}",
"@inproceedings{raphael2014learning,title={Learning a policy for collision avoidance by mining interactive multi-robot games},author={Raphael, Jeffery and Schneider, Eric and Parsons, Simon and Sklar, Elizabeth},booktitle={Workshop on Autonomous Robots and Multirobot Systems (ARMS) at Autonomous Agents and MultiAgent Systems (AAMAS), Paris, France},year={2014}}\n",
"@inproceedings{essers2018assessing,title={Assessing the posture prototype: A late-breaking report on patient views},author={Essers, Kai and Rogers, Rebecca and Sturt, Jackie and Sklar, Elizabeth I and Black, Elizabeth},booktitle={Proceedings of the 6th International Conference on Human-Agent Interaction},pages={344--346},year={2018}}\n",
"@inproceedings{essers2018consult,title={The CONSULT system},author={Essers, Kai and Chapman, Martin and Kokciyan, Nadin and Sassoon, Isabel and Porat, Talya and Balatsoukas, Panagiotis and Young, Peter and Ashworth, Mark and Curcin, Vasa and Modgil, Sanjay and others},booktitle={Proceedings of the 6th International Conference on Human-Agent Interaction},pages={385--386},year={2018}}\n",
"@article{sklar2000evolutionary,title={An evolutionary approach to guiding students in an educational game},author={Sklar, Elizabeth and Pollack, Jordan},year={2000}}\n",
"@article{sklarbridges,title={Bridges to Computing: Final Project Report},author={Sklar, Elizabeth}}\n",
"@article{sklar2013case,title={A case for argumentation to enable human-robot collaboration},author={Sklar, Elizabeth I and Azhar, Mohammad Q and Parsons, Simon and Flyr, Todd},journal={Proceedings of Autonomous Agents and Multiagent Systems (AAMAS), St Paul, MN, USA},year={2013}}\n",
"@inproceedings{sklar2011framework,title={A framework in which robots and humans help each other},author={Sklar, Elizabeth and Epstein, Susan L and Parsons, Simon and Ozgelen, Arif T and Munoz, Juan Pablo and Gonzalez, Joel},booktitle={2011 AAAI Spring Symposium Series},year={2011}}\n",
"@article{icke2009tr,title={TR-2009005: Visual Analytics: A Multi-Faceted Overview},author={Icke, Ilknur and Sklar, Elizabeth},year={2009}}\n",
"@article{sklar2012demonstration,title={Demonstration: Investigating Human/Multi-Robot Team Interaction},author={Sklar, E and Parsons, S and Epstein, SL and {\\\"O}zgelen, AT and Munoz, JP and Schneider, E and Costantino, M and Abbasi, F and Aragon, K and Green, A and others},journal={AAAI Robotics and Multimedia Fair, Toronto, Canada (July 2012)},year={2012}}\n",
"@inproceedings{harman2022multi,title={Multi-agent task allocation techniques for harvest team formation},author={Harman, Helen and Sklar, Elizabeth I},booktitle={International Conference on Practical Applications of Agents and Multi-Agent Systems},pages={217--228},year={2022},organization={Springer International Publishing Cham}}\n",
"@inproceedings{gomez2021need,title={The need for speed: How 5G communication can support AI in the field},author={Gomez, Adrian Salazar and Zhivkov, Tsvetan and Gao, Junfeng and Sklar, Elizabeth I and Parsons, Simon},booktitle={UKRAS21 Conference \u201cRobotics at Home},year={2021}}\n",
"@article{lujak2020multi,title={On Multi-Agent Coordination of Agri-Robot Fleets},author={Lujak, Marin and Sklar, Elizabeth and Semet, Frederic},year={2020}}\n",
"@article{zhang2017longitudinal,title={Longitudinal analysis of discussion topics in an online breast cancer community using convolutional neural networks},author={Zhang, Shaodian and Grave, Edouard and Sklar, Elizabeth and Elhadad, No{\\'e}mie},journal={Journal of biomedical informatics},volume={69},pages={1--9},year={2017},publisher={Academic Press}}\n",
"@inproceedings{sklar2005multiagent,title={Multiagent simulation of learning environments},author={Sklar, Elizabeth and Davies, Mathew},booktitle={Proceedings of the fourth international joint conference on Autonomous agents and multiagent systems},pages={953--959},year={2005}}\n",
"@inproceedings{chu2005roboxap,title={Roboxap: an agent-based educational robotics simulator},author={Chu, Kar-Hai and Goldman, Rachel and Sklar, Elizabeth},booktitle={Agent-based Systems for Human Learning Workshop at AAMAS-2005},year={2005}}\n",
"@article{darbyshire2022localising,title={Localising weeds using a prototype weed sprayer},author={Darbyshire, Madeleine and Salazar-Gomez, Adrian and Lennox, Callum and Gao, Junfeng and Sklar, Elizabeth and Parsons, Simon and others},year={2022},publisher={UK-RAS Network}}\n",
"@article{pearson2022robotics,title={Robotics and autonomous systems for net zero agriculture},author={Pearson, Simon and Camacho-Villa, Tania Carolina and Valluru, Ravi and Gaju, Oorbessy and Rai, Mini C and Gould, Iain and Brewer, Steve and Sklar, Elizabeth},journal={Current Robotics Reports},volume={3},number={2},pages={57--64},year={2022},publisher={Springer International Publishing Cham}}\n",
"@article{parsons2012argument,title={Argument Schemes for Reasoning about Trust.},author={Parsons, Simon and Atkinson, Katie and Haigh, Karen Zita and Levitt, Karl N and McBurney, Peter and Rowe, Jeff and Singh, Munindar P and Sklar, Elizabeth},journal={COMMA},volume={245},pages={430},year={2012}}\n",
"@article{epsteinking,title={King\u2019s Research Portal},author={Epstein, SL and Aroor, A and Evanusa, M and Sklar, EI and Parsons, S}}\n",
"@inproceedings{phelps2002co,title={Co-evolution of auction mechanisms and trading strategies: Towards a novel approach to microeconomic design},author={Phelps, Steve and Parsons, Simon and McBurney, Peter and Sklar, Elizabeth},booktitle={GECCO-02 Workshop on Evolutionary Computation in Multi-Agent Systems},pages={65--72},year={2002}}\n",
"@inproceedings{salvit2012modulating,title={Modulating agent behavior using human personality type},author={Salvit, Jordan and Sklar, Elizabeth},booktitle={Proceedings of the Workshop on Human-Agent Interaction Design and Models (HAIDM) at Autonomous Agents and MultiAgent Systems (AAMAS)},pages={145--160},year={2012},organization={sn}}\n",
"@inproceedings{chapman2019computational,title={Computational argumentation-based clinical decision support},author={Chapman, Martin and Balatsoukas, Panagiotis and Ashworth, Mark and Curcin, Vasa and K{\\\"o}kciyan, Nadin and Essers, Kai and Sassoon, Isabel and Modgil, Sanjay and Parsons, Simon and Sklar, Elizabeth I},booktitle={Proceedings of the 18th International Conference on Autonomous Agents and MultiAgent Systems},pages={2345--2347},year={2019}}\n",
"@inproceedings{sklar2002takes,title={It takes a virtual village: Towards an automated interactive agency},author={Sklar, Elizabeth},booktitle={Proc. AAAI Fall Symposium on Personalized Agents},year={2002},organization={Citeseer}}\n",
"@inproceedings{balatsoukas2019user,title={User involvement in the design of a data-driven self-management decision support tool for stroke survivors},author={Balatsoukas, Panos and Porat, Talya and Sassoon, Isabel and Essers, Kai and Kokciyan, Nadin and Chapman, Martin and Drake, Archie and Modgil, Sanjay and Ashworth, Mark and Sklar, Elizabeth and others},booktitle={IEEE EUROCON 2019-18th International Conference on Smart Technologies},pages={1--6},year={2019},organization={IEEE}}\n",
"@article{raphael2017intersection,title={An intersection-centric auction-based traffic signal control framework},author={Raphael, Jeffery and Sklar, Elizabeth I and Maskell, Simon},journal={Agent-Based Modeling of Sustainable Behaviors},pages={121--142},year={2017},publisher={Springer International Publishing}}\n",
"@article{parsons2014argument,title={Argument schemes for reasoning about trust},author={Parsons, Simon and Atkinson, Katie and Li, Zimi and McBurney, Peter and Sklar, Elizabeth and Singh, Munindar and Haigh, Karen and Levitt, Karl and Rowe, Jeff},journal={Argument \\& Computation},volume={5},number={2-3},pages={160--190},year={2014},publisher={Taylor \\& Francis}}\n",
"@inproceedings{sklar2013towards,title={Towards an argumentation-based model of social interaction},author={Sklar, Elizabeth and Parsons, Simon and Singh, Munindar P},booktitle={Proceedings of the Workshop on Argumentation in Multiagent Systems (ArgMAS) at the 12th International Conference on Autonomous Agents and Multiagent Systems (AAMAS)},year={2013}}\n",
"@incollection{asada2004robocup,title={RoboCup: Yesterday, Today, and Tomorrow Workshop of the Executive Committee in Blaubeuren},author={ASADA, M and BONARINI, ANDREA and JACOFF, A and NARDI, D and RIEDMILLER, M and SAMMUT, C and SKLAR, E and VELOSO, M and others},booktitle={RoboCup 2003: Robot Soccer World Cup VII},pages={15--34},year={2004},publisher={Springer-Verlag}}\n",
"@article{prakken2020implementing,title={Implementing argument and explanation schemes in dialogue},author={Prakken, H and others},journal={Computational Models of Argument: Proceedings of COMMA 2020},volume={326},pages={471},year={2020},publisher={IOS Press}}\n",
"@article{parsons2013argtrust,title={ArgTrust: Decision making with information from sources of varying trustworthiness (Demonstration)},author={Parsons, Simon and Sklar, Elizabeth I and Salvit, Jordan and Wall, Holly and Li, Zimi},journal={Proceedings of Autonomous Agents and Multiagent Systems (AAMAS), St Paul, MN, USA},year={2013}}\n",
"@inproceedings{raphael2014behaviour,title={Behaviour mining for collision avoidance in multi-robot systems.},author={Raphael, Jeffery and Schneider, Eric and Parsons, Simon and Sklar, Elizabeth I and others},booktitle={AAMAS},pages={1445--1446},year={2014}}\n",
"@inproceedings{niu2008behavior,title={On the behavior of competing markets populated by automated traders},author={Niu, Jinzhong and Cai, Kai and Parsons, Simon and Sklar, Elizabeth},booktitle={Agent-Mediated Electronic Commerce and Trading Agent Design and Analysis: AAMAS 2007 Workshop, AMEC 2007, Honolulu, Hawaii, May 14, 2007, and AAAI 2007 Workshop, TADA 2007, Vancouver, Canada, July 23, 2007, Selected and Revised Papers},pages={200--216},year={2008},organization={Springer Berlin Heidelberg}}\n",
"@article{pagello2004robocup,title={RoboCup-2003: New scientific and technical advances},author={Pagello, Enrico and Menegatti, Emanuele and Bredenfel, Ansgar and Costa, Paulo and Christaller, Thomas and Jacoff, Adam and Polani, Daniel and Riedmiller, Martin and Saffiotti, Alessandro and Sklar, Elizabeth and others},journal={AI magazine},volume={25},number={2},pages={81--81},year={2004}}\n",
"@article{frias2003metrobots,title={The metrobots four-legged league team at robocup 2003},author={Frias-Martinez, V and Marcinkiewicz, M and Parsons, S and Sklar, E},journal={Proceedings of RoboCup},year={2003}}\n",
"@article{sassoon2020implementing,title={Implementing Argument and Explanation},author={SASSOON, Isabel and KOKCIYAN, Nadin and CHAPMAN, Martin and SKLAR, Elizabeth and CURCIN, Vasa and MODGIL, Sanjay and PARSONS, Simon},year={2020}}\n",
"@inproceedings{parsons2011reasoning,title={Reasoning about trust using argumentation: A position paper},author={Parsons, Simon and McBurney, Peter and Sklar, Elizabeth},booktitle={Argumentation in Multi-Agent Systems: 7th International Workshop, ArgMAS 2010 Toronto, ON, Canada, May 10, 2010 Revised, Selected and Invited Papers 7},pages={159--170},year={2011},organization={Springer Berlin Heidelberg}}\n",
"@article{drake2022relationship,title={The relationship of socio-demographic factors and patient attitudes to connected health technologies: a survey of stroke survivors},author={Drake, Archie and Sassoon, Isabel and Balatsoukas, Panos and Porat, Talya and Ashworth, Mark and Wright, Ellen and Curcin, Vasa and Chapman, Martin and Kokciyan, Nadin and Modgil, Sanjay and others},journal={Health Informatics Journal},volume={28},number={2},pages={14604582221102373},year={2022},publisher={SAGE Publications Sage UK: London, England}}\n",
"@misc{sklar2000children,title={Children Learning from Team Robotics: Robocup Junior 2000: Educational Research Report},author={Sklar, Elizabeth I and Johnson, Jeffrey H and Lund, Henrik Hautop},year={2000},publisher={Open University, Faculty of Technology}}\n",
"@article{sklar2015argumentation,title={Argumentation-based dialogue games for shared control in human-robot systems},author={Sklar, Elizabeth I and Azhar, Mohammad Q and others},journal={Journal of Human-Robot Interaction},volume={4},number={3},pages={120--148},year={2015},publisher={Journal of Human-Robot Interaction Steering Committee}}\n",
"@article{zhivkov20225g,title={5G on the Farm: Evaluating Wireless Network Capabilities for Agricultural Robotics},author={Zhivkov, Tsvetan and Sklar, Elizabeth I},journal={arXiv preprint arXiv:2301.01600},year={2022}}\n",
"@article{cox2023visual,title={Visual teach and generalise (VTAG)\u2014Exploiting perceptual aliasing for scalable autonomous robotic navigation in horticultural environments},author={Cox, Jonathan and Tsagkopoulos, Nikolaos and Rozsyp{\\'a}lek, Zden{\\v{e}}k and Krajn{\\'\\i}k, Tom{\\'a}{\\v{s}} and Sklar, Elizabeth and Hanheide, Marc},journal={Computers and Electronics in Agriculture},volume={212},pages={108054},year={2023},publisher={Elsevier}}\n",
"@inproceedings{munoz2011learning,title={Learning from demonstration in spatial exploration},author={Munoz, J and Ozgelen, Arif and Sklar, Elizabeth},booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},volume={25},number={1},pages={1878--1879},year={2011}}\n",
"@inproceedings{schneider2015auction,title={Auction-based task allocation for multi-robot teams in dynamic environments},author={Schneider, Eric and Sklar, Elizabeth I and Parsons, Simon and {\\\"O}zgelen, A Tuna},booktitle={Towards Autonomous Robotic Systems: 16th Annual Conference, TAROS 2015, Liverpool, UK, September 8-10, 2015, Proceedings 16},pages={246--257},year={2015},organization={Springer International Publishing}}\n",
"@inproceedings{balatsoukas2020wild,title={In the wild pilot usability assessment of a connected health system for stroke self management},author={Balatsoukas, Panagiotis and Sassoon, Isabel and Chapman, Martin and Kokciyan, Nadin and Drake, Archie and Modgil, Sanjay and Ashworth, Mark and Curcin, Vasa and Sklar, Elizabeth and Parsons, Simon},booktitle={2020 IEEE International Conference on Healthcare Informatics (ICHI)},pages={1--3},year={2020},organization={IEEE}}\n",
" @article{Hardy_2024, title={A Comparative Dataset of Annotated Broccoli Heads Recorded with Depth Cameras from a Moving Vehicle}, volume={14}, ISSN={2073-4395}, url={http://dx.doi.org/10.3390/agronomy14050964}, DOI={10.3390/agronomy14050964}, number={5}, journal={Agronomy}, publisher={MDPI AG}, author={Hardy, Oliver and Seemakurthy, Karthik and Sklar, Elizabeth I.}, year={2024}, month=may, pages={964} }\n",
"@inproceedings{parsons2004teaching,title={Teaching AI using LEGO mindstorms},author={Parsons, Simon and Sklar, Elizabeth},booktitle={AAAI Spring Symposium},year={2004}}\n",
"@article{zhivkov2020modelling,title={Modelling variable communication signal strength for experiments with multi-robot teams},author={Zhivkov, Tsvetan and Sklar, Elizabeth and others},year={2020},publisher={UK-RAS}}\n",
"@inproceedings{ozgelen2013first,title={A first step toward testing multiagent coordination mechanisms on multi-robot teams},author={{\\\"O}zgelen, AT and Schneider, Eric and Sklar, Elizabeth I and Costantino, Michael and Epstein, Susan L and Parsons, Simon},booktitle={Proceedings of the Workshop on Autonomous Robots and Multirobot Systems (ARMS) at Autonomous Agents and MultiAgent Systems (AAMAS)},year={2013}}\n",
"@inproceedings{jansen2019co,title={Co-creative physical drawing systems},author={Jansen, Chipp and Sklar, Elizabeth},booktitle={ICRA-X Robots Art Program at IEEE International Conference on Robotics and Automation (ICRA), Montreal, QC, Canada},pages={2},year={2019}}\n",
"@inproceedings{broecker2015social,title={Social Insect-Inspired Multi-Robot Coverage.},author={Broecker, Bastian and Caliskanelli, Ipek and Tuyls, Karl and Sklar, Elizabeth and Hennes, Daniel and others},booktitle={AAMAS},pages={1775--1776},year={2015}}\n",
"@inproceedings{tang2007agent,title={An agent-based model that relates investment in education to economic prosperity},author={Tang, Yuqing and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the 6th international joint conference on Autonomous agents and multiagent systems},pages={1--3},year={2007}}\n",
"@inproceedings{sklar2016toward,title={Toward a model for handling noise in human-robot communication},author={Sklar, Elizabeth I and Black, Elizabeth},booktitle={Proceedings of the 5th International Workshop on Human-Agent Interaction Design and Models},year={2016}}\n",
"@inproceedings{sassoon2019explainable,title={Explainable argumentation for wellness consultation},author={Sassoon, Isabel and K{\\\"o}kciyan, Nadin and Sklar, Elizabeth and Parsons, Simon},booktitle={Explainable, Transparent Autonomous Agents and Multi-Agent Systems: First International Workshop, EXTRAAMAS 2019, Montreal, QC, Canada, May 13--14, 2019, Revised Selected Papers 1},pages={186--202},year={2019},organization={Springer International Publishing}}\n",
"@article{faratinagent,title={Agent-Mediated Electronic Commerce and Trading Agent Design and Analysis},author={Faratin, John Collins Peyman and Rodriguez-Aguilar, Simon Parsons Juan A and Shehory, Norman M Sadeh Onn and Sklar, Elizabeth}}\n",
"@article{sklarcel,title={CEL: A Framework for a Community of Evolving Learners},author={Sklar, Elizabeth and Pollack, Jordan}}\n",
"@article{ickea2009technical,title={TECHNICAL REPORT Visual Analytics: A Multi-faceted Overview},author={Ickea, Ilknur and Sklara, Elizabeth},year={2009}}\n",
"@inproceedings{sklar2003agents,title={Agents for education: when too much intelligence is a bad thing},author={Sklar, Elizabeth},booktitle={Proceedings of the second international joint conference on Autonomous agents and multiagent systems},pages={1118--1119},year={2003}}\n",
"@inproceedings{sklar2003robocupjunior,title={RoboCupJunior 2002: The state of the league},author={Sklar, Elizabeth},booktitle={RoboCup 2002: Robot Soccer World Cup VI 6},pages={489--495},year={2003},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{phelps2005auctions,title={Auctions, evolution, and multi-agent learning},author={Phelps, Steve and Cai, Kai and McBurney, Peter and Niu, Jinzhong and Parsons, Simon and Sklar, Elizabeth},booktitle={European Symposium on Adaptive Agents and Multi-Agent Systems},pages={188--210},year={2005},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@inproceedings{epstein2015learning,title={Learning spatial models for navigation},author={Epstein, Susan L and Aroor, Anoop and Evanusa, Matthew and Sklar, Elizabeth I and Parsons, Simon},booktitle={Spatial Information Theory: 12th International Conference, COSIT 2015, Santa Fe, NM, USA, October 12-16, 2015, Proceedings 12},pages={403--425},year={2015},organization={Springer International Publishing}}\n",
"@inproceedings{sklar2004simed,title={SimEd: Simulating education as a multi agent system},author={Sklar, Elizabeth and Davies, Mathew and Co, Min San Tan and others},booktitle={International Conference on Autonomous Agents: Proceedings of the Third International Joint Conference on Autonomous Agents and Multiagent Systems-},volume={3},pages={998--1005},year={2004}}\n",
"@article{ead06a16e01b4d5eac5872a30d2c88ec,\n title = \"Firewall configuration: An application of multiagent metalevel argumentation\",\n keywords = \"firewall, Metalevel argumentation, network security\",\n author = \"Andy Applebaum and Zimi Li and Karl Levitt and Simon Parsons and Jeff Rowe and Sklar, {Elizabeth I.}\",\n year = \"2016\",\n month = \"11\",\n doi = \"10.3233/AAC-160008\",\n volume = \"7\",\n pages = \"201--221\",\n journal = \"Argument & Computation\",\n issn = \"1946-2166\",\n publisher = \"Taylor and Francis Ltd.\",\n number = \"2-3\",\n}",
"@inproceedings{imai2018hai,title={HAI 2018 Chairs\u2019 Welcome},author={Imai, Michita and Sklar, Elizabeth I and Norman, Timothy J and Komatsu, Takanori},booktitle={HAI 2018-Proceedings of the 6th International Conference on Human-Agent Interaction},pages={III},year={2018}}\n",
"@article{darbyshire2023towards,title={Towards practical object detection for weed spraying in precision agriculture},author={Darbyshire, Madeleine and Salazar-Gomez, Adrian and Gao, Junfeng and Sklar, Elizabeth I and Parsons, Simon},journal={Frontiers in Plant Science},volume={14},year={2023},publisher={Frontiers Media SA}}\n",
"@inproceedings{frias2004using,title={Using multiagent coordination techniques in the robocup four-legged league},author={Frias-Martinez, Vanessa and Marcinkiewicz, Marek and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the AAAI spring symposium on bridging the multi-agent and multi-robotic research gap},year={2004}}\n",
"@inproceedings{ozgelen2013task,title={A task complexity assessment tool for single-operator multi-robot control scenarios},author={Ozgelen, Arif Tuna and Sklar, Elizabeth},booktitle={Proceedings of the 2013 international conference on Autonomous agents and multi-agent systems},pages={1393--1394},year={2013}}\n",
"@article{cohen2018characterization,title={A characterization of types of support between structured arguments and their relationship with support in abstract argumentation},author={Cohen, Andrea and Parsons, Simon and Sklar, Elizabeth I and McBurney, Peter},journal={International Journal of Approximate Reasoning},volume={94},pages={76--104},year={2018},publisher={Elsevier}}\n",
"@inproceedings{ozgelen2014modeling,title={Modeling and analysis of task complexity in single-operator multi-robot teams},author={{\\\"O}zgelen, Arif Tuna and Sklar, Elizabeth I},booktitle={Proceedings of the 2014 ACM/IEEE international conference on Human-robot interaction},pages={262--263},year={2014}}\n",
"@inproceedings{miyauchi2020study,title={A study assessing the impact of task duration on performance metrics for multi-robot teams},author={Miyauchi, Genki and Sklar, Elizabeth I},booktitle={Towards Autonomous Robotic Systems: 21st Annual Conference, TAROS 2020, Nottingham, UK, September 16, 2020, Proceedings 21},pages={138--143},year={2020},organization={Springer International Publishing}}\n",
"@inproceedings{sklar2014toward,title={Toward human/multi-robot systems to support emergency services agencies},author={Sklar, Elizabeth and Schneider, Eric and Ozgelen, A Tuna and Azhar, MQ},booktitle={2014 AAAI Fall Symposium Series},year={2014}}\n",
"@inproceedings{blair1999co,title={Co-evolution, determinism and robustness},author={Blair, Alan D and Sklar, Elizabeth and Funes, Pablo},booktitle={Simulated Evolution and Learning: Second Asia-Pacific Conference on Simulated Evolution and Learning, SEAL\u201998 Canberra, Australia, November 24--27, 1998 Selected Papers 2},pages={389--396},year={1999},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{rowe2012argumentation,title={Argumentation logic to assist in security administration},author={Rowe, Jeff and Levitt, Karl and Parsons, Simon and Sklar, Elizabeth and Applebaum, Andrew and Jalal, Sharmin},booktitle={Proceedings of the 2012 New Security Paradigms Workshop},pages={43--52},year={2012}}\n",
"@inproceedings{sklar2018explanation,title={Explanation through argumentation},author={Sklar, Elizabeth I and Azhar, Mohammad Q},booktitle={Proceedings of the 6th International Conference on Human-Agent Interaction},pages={277--285},year={2018}}\n",
"@inproceedings{marcinkiewicz2007towards,title={Towards a methodology for stabilizing the gaze of a quadrupedal robot},author={Marcinkiewicz, Marek and Kunin, Mikhail and Parsons, Simon and Sklar, Elizabeth and Raphan, Theodore},booktitle={RoboCup 2006: Robot Soccer World Cup X 10},pages={540--547},year={2007},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{schneider2015towards,title={Towards a methodology for describing the relationship between simulation and reality.},author={Schneider, Eric and Sklar, Elizabeth I and Azhar, MQ and Parsons, Simon and Tuyls, Karl},booktitle={ECAL},pages={562--569},year={2015}}\n",
"@inproceedings{sklar1998toward,title={Toward a community of evolving learners},author={Sklar, Elizabeth and Pollack, Jordan B},booktitle={Proceedings of the Third International Conference on the Learning Sciences (ICLS-98)},pages={354--356},year={1998},organization={AACE Charlottesville, VA}}\n",
"@article{djukicapplying,title={Applying the FORR Cognitive Architecture To Robot Navigation},author={Djukic, Slavisa and Epstein, Susan L and Clark, Dayton and Parsons, Simon and Sklar, Elizabeth}}\n",
"@article{sklarextending,title={Extending Contextualized Computing in Multiple Institutions Using Threads: Final Project Report},author={Sklar, Elizabeth}}\n",
"@article{broeckerking,title={King\u2019s Research Portal},author={Broecker, B and Caliskanelli, I and Tuyls, K and Sklar, EI and Hennes, D}}\n",
"@inproceedings{sklar2003robocupjunior,title={RoboCupJunior: learning with educational robotics},author={Sklar, Elizabeth and Eguchi, Amy and Johnson, Jeffrey},booktitle={RoboCup 2002: Robot Soccer World Cup VI 6},pages={238--253},year={2003},organization={Springer Berlin Heidelberg}}\n",
"@article{harman2021auction,title={Auction-based task allocation mechanisms for managing fruit harvesting tasks},author={Harman, Helen and Sklar, Elizabeth and others},year={2021}}\n",
"@inproceedings{jalal2012model,title={A Model for Augmenting Trust Management using Argumentation},author={Jalal, Sharmin and Levitt, Karl N and Rowe, Jeff and Sklar, Elizabeth and Parsons, Simon},booktitle={Workshop on Trust in Agent Societies (TRUST) at Autonomous Agents and MultiAgent Systems (AAMAS)},year={2012}}\n",
"@inproceedings{anderson2004toward,title={Toward an undergraduate league for robocup},author={Anderson, John and Baltes, Jacky and Livingston, David and Sklar, Elizabeth and Tower, Jonah},booktitle={RoboCup 2003: Robot Soccer World Cup VII 7},pages={670--677},year={2004},organization={Springer Berlin Heidelberg}}\n",
"@article{sassoon2018argumentation,title={Argumentation-based Decision Support for Patient Self-Management},author={Sassoon, Isabel and Kokciyan, Nadin and Young, Anthony P and Parsons, Simon and Modgil, Sanjay and Sklar, Elizabeth},journal={ArgSoc, COMMA},year={2018}}\n",
"@inproceedings{kokciyan2018towards,title={Towards an argumentation system for supporting patients in self-managing their chronic conditions},author={Kokciyan, Nadin and Sassoon, Isabel and Young, Anthony P and Chapman, Martin and Porat, Talya and Ashworth, Mark and Curcin, Vasa and Modgil, Sanjay and Parsons, Simon and Sklar, Elizabeth},booktitle={Workshops at the Thirty-Second AAAI Conference on Artificial Intelligence},year={2018}}\n",
"@inproceedings{cummins2008using,title={Using surveyor SRV-1 robots to motivate CS1 students},author={Cummins, John and Azhar, MQ and Sklar, Elizabeth},booktitle={Proceedings of the AAAI 2008 Artificial Intelligence Education Colloquium},year={2008}}\n",
"@article{castagna2022providing,title={Providing explanations via the EQR argument scheme},author={Castagna, Federico and Parsons, Simon and Sassoon, Isabel and Sklar, Elizabeth and others},year={2022},publisher={IOS Press}}\n",
"@article{pagellorobocup,title={RoboCup 2003: New Scientific and Technical Advancements},author={Pagello, Enrico and Menegatti, Emanuele and Bredenfel, Ansgar and Costa, Paulo and Christaller, Thomas and Jacoff, Adam and Polani, Daniel and Riedmiller, Martin and Saffiotti, Alessandro and Sklar, Elizabeth and others}}\n",
"@inproceedings{frias2004team,title={A team-based co-evolutionary approach to multi agent learning},author={Frias-Martinez, Vanessa and Sklar, Elizabeth},booktitle={Proceedings of the 2004 AAMAS Workshop on Learning and Evolution in Agent Based Systems},year={2004}}\n",
"@inproceedings{icke2008using,title={Using simulation to evaluate data-driven agent-based learning partners},author={Icke, Ilknur and Sklar, Elizabeth},booktitle={Ninth International Workshop on Multi-agent-based Simulation (MABS\u201908) at AAMAS 2008},year={2008}}\n",
"@article{howard2023training,title={Training the UK agri-food sector to employ robotics and autonomous systems},author={Howard, Matthew and Wane, S and Mihaylova, L and Rose, D and Ray, P and Manning, L and Sklar, E},journal={UK RAS Network},year={2023},publisher={UK-RAS}}\n",
"@inproceedings{spoelstra2007using,title={Using simulation to model and understand group learning},author={Spoelstra, Maartje and Sklar, Elizabeth},booktitle={Proc. AAMAS},volume={7},year={2007}}\n",
"@article{jansen2021exploring,title={Exploring co-creative drawing workflows},author={Jansen, Chipp and Sklar, Elizabeth},journal={Frontiers in Robotics and AI},volume={8},pages={577770},year={2021},publisher={Frontiers Media SA}}\n",
"@inproceedings{phelps2003applying,title={Applying genetic programming to economic mechanism design: evolving a pricing rule for a continuous double auction},author={Phelps, Steve and McBurney, Peter and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the second international joint conference on Autonomous agents and multiagent systems},pages={1096--1097},year={2003}}\n",
"@article{schmeiserking,title={King\u2019s Research Portal},author={Schmeiser, HH and Nortier, JL and Singh, R and da Costa, GG and Sennesael, J and Cassuto-Viguier, E and Arlt, VM}}\n",
"@inproceedings{harman2022challenges,title={Challenges for Multi-Agent Based Agricultural Workforce Management},author={Harman, Helen and Sklar, Elizabeth I},booktitle={International Workshop on Multi-Agent Systems and Agent-Based Simulation},pages={121--133},year={2022},organization={Springer International Publishing Cham}}\n",
"@article{sklar2000design,title={The design of the cel system},author={Sklar, Elizabeth and Pollack, JB},journal={Computer science technical report, Brandeis University,(in progress)},year={2000}}\n",
"@inproceedings{sklar2002educational,title={The Educational Value of Children's Team Robotics YYYY No org found YYY: A Case Study of RoboCup Junior},author={Sklar, E and Johnson, JH and Lund, HH},booktitle={Proceedings of Seventh International Symposium On Artificial Life and Robotics (AROB'02), Oita},year={2002}}\n",
"@inproceedings{icke2008visualization,title={A visualization tool for student assessments data},author={Icke, Ilknur and Sklar, Elizabeth},booktitle={From Theory to Practice: Design, Vision and Visualization Workshop},year={2008}}\n",
"@article{lujak2021agriculture,title={Agriculture fleet vehicle routing: A decentralised and dynamic problem},author={Lujak, Marin and Sklar, Elizabeth and Semet, Frederic},journal={AI Communications},volume={34},number={1},pages={55--71},year={2021},publisher={IOS Press}}\n",
"@article{owen2022towards,title={Towards Autonomous Task Allocation Using a Robot Team in a Food Factory},author={Owen, Amie and Harman, Helen and Sklar, Elizabeth and others},year={2022},publisher={UK-RAS}}\n",
"@inproceedings{ozgelen2015approach,title={An approach to supervisory control of multi-robot teams in dynamic domains},author={{\\\"O}zgelen, A Tuna and Sklar, Elizabeth I},booktitle={Towards Autonomous Robotic Systems: 16th Annual Conference, TAROS 2015, Liverpool, UK, September 8-10, 2015, Proceedings 16},pages={198--203},year={2015},organization={Springer International Publishing}}\n",
"@inproceedings{tang2006modeling,title={Modeling human education data: From equation-based modeling to agent-based modeling},author={Tang, Yuqing and Parsons, Simon and Sklar, Elizabeth},booktitle={International Workshop on Multi-Agent Systems and Agent-Based Simulation},pages={41--56},year={2006},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@misc{drake2019pp31,title={PP31 Data awareness for sending help (DASH): policy opportunities \\& challenges},author={Drake, Archie and Pollitt, Alex and Smith, Leanne and Sklar, Elizabeth},year={2019},publisher={BMJ Publishing Group Ltd and the British Association for Accident~\u2026}}\n",
"@article{gomez2021towards,title={Towards practical object detection for weed spraying in precision agriculture},author={Gomez, Adrian Salazar and Darbyshire, Madeleine and Gao, Junfeng and Sklar, Elizabeth I and Parsons, Simon},journal={CoRR},year={2021}}\n",
"@inproceedings{zhivkov2017measuring,title={Measuring the effects of communication quality on multi-robot team performance},author={Zhivkov, Tsvetan and Schneider, Eric and Sklar, Elizabeth I},booktitle={Towards Autonomous Robotic Systems: 18th Annual Conference, TAROS 2017, Guildford, UK, July 19--21, 2017, Proceedings 18},pages={408--420},year={2017},organization={Springer International Publishing}}\n",
"@inproceedings{schneider2016evaluating,title={Evaluating multi-robot teamwork in parameterised environments},author={Schneider, Eric and Sklar, Elizabeth I and Parsons, Simon},booktitle={Towards Autonomous Robotic Systems: 17th Annual Conference, TAROS 2016, Sheffield, UK, June 26--July 1, 2016, Proceedings 17},pages={301--313},year={2016},organization={Springer International Publishing}}\n",
"@article{sklar2000children,title={Children learning from team robotics: Robocup junior 2000},author={Sklar, Elizabeth and Johnson, Jeffrey H and Lund, Henrik Hautop},journal={RoboCup Jr-Educational Report},year={2000}}\n",
"@article{sklar2010agent,title={Agent-based systems for human learners},author={Sklar, Elizabeth and Richards, Debbie},journal={The Knowledge Engineering Review},volume={25},number={2},pages={111--135},year={2010},publisher={Cambridge University Press}}\n",
"@inproceedings{sklar2005okay,title={When is it okay to lie? A simple model of contradiction in agent-based dialogues},author={Sklar, Elizabeth and Parsons, Simon and Davies, Mathew},booktitle={Argumentation in Multi-Agent Systems: First International Workshop, ArgMAS 2004, New York, NY, USA, July 19, 2004, Revised Selected and Invited Papers 1},pages={251--261},year={2005},organization={Springer Berlin Heidelberg}}\n",
"@phdthesis{sklar1999agents,title={Agents for Education},author={Sklar, Elizabeth Ida},year={1999},school={Brandeis University}}\n",
"@inproceedings{raphael2016empirical,title={An Empirical Investigation of Adaptive Traffic Control Parameters.},author={Raphael, Jeffery and Sklar, Elizabeth I and Maskell, Simon and others},booktitle={ATT@ IJCAI},year={2016}}\n",
"@inproceedings{sassoon2018towards,title={Towards the use of Commitments in Multi-agent decision support systems},author={Sassoon, Isabel and K{\\\"o}kciyan, Nadin and Parsons, Simon and Sklar, Elizabeth I},booktitle={Workshop on Dialogue, Explanation and Argumentation at Human Agent Interaction (HAI)},year={2018}}\n",
"@inproceedings{parsons2005agents,title={How agents alter their beliefs after an argumentation-based dialogue},author={Parsons, Simon and Sklar, Elizabeth},booktitle={International Workshop on Argumentation in Multi-Agent Systems},pages={297--312},year={2005},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@inproceedings{tang2006agent,title={Agent-based modeling of human education data},author={Tang, Yuqing and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the fifth international joint conference on Autonomous agents and multiagent systems},pages={129--131},year={2006}}\n",
"@article{phelps2002applying,title={Applying multi-objective evolutionary computing to auction mechanism design},author={Phelps, S and Parsons, S and Sklar, E and McBurney, P},journal={Department of Computer Science, University of Liverpool, Liverpool, UK, Tech. Rep. ULCS-02-031},year={2002}}\n",
"@inproceedings{burkhard2004robocup,title={RoboCup: Yesterday, today, and tomorrow workshop of the executive committee in Blaubeuren, october 2003},author={Burkhard, Hans-Dieter and Asada, Minoru and Bonarini, Andrea and Jacoff, Adam and Nardi, Daniele and Riedmiller, Martin and Sammut, Claude and Sklar, Elizabeth and Veloso, Manuela},booktitle={RoboCup 2003: Robot Soccer World Cup VII 7},pages={15--34},year={2004},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{azhar2013argumentation,title={An argumentation-based dialogue system for human-robot collaboration},author={Azhar, Mohammad Q and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the 2013 international conference on Autonomous agents and multi-agent systems},pages={1353--1354},year={2013}}\n",
"@article{darbyshire2023hierarchical,title={Hierarchical Mask2Former: Panoptic Segmentation of Crops, Weeds and Leaves},author={Darbyshire, Madeleine and Sklar, Elizabeth and Parsons, Simon},journal={arXiv preprint arXiv:2310.06582},year={2023}}\n",
"@inproceedings{sklar2013hrteam,title={HRTeam: a framework to support research on human/multi-robot interaction.},author={Sklar, Elizabeth and Parsons, Simon and Ozgelen, Arif Tuna and Schneider, Eric and Costantino, Michael and Epstein, Susan L},booktitle={AAMAS},pages={1409--1410},year={2013}}\n",
"@article{dai2021small,title={Small datasets for fruit detection with transfer learning},author={Dai, Dan and Gao, Junfeng and Parsons, Simon and Sklar, Elizabeth and others},year={2021},publisher={UK-RAS}}\n",
"@inproceedings{kokciyan2020argumentation,title={An argumentation-based approach to generate domain-specific explanations},author={K{\\\"o}kciyan, Nadin and Parsons, Simon and Sassoon, Isabel and Sklar, Elizabeth and Modgil, Sanjay},booktitle={Multi-Agent Systems and Agreement Technologies: 17th European Conference, EUMAS 2020, and 7th International Conference, AT 2020, Thessaloniki, Greece, September 14-15, 2020, Revised Selected Papers 17},pages={319--337},year={2020},organization={Springer International Publishing}}\n",
"@misc{collins2008agent,title={Agent-Mediated Electronic Commerce and Trading Agent Design and Analysis: AAMAS 2007 Workshop, AMEC 2007, Honolulu, Hawaii, May 14, 2007, and AAAI 2007 Workshop, TADA 2007, Vancouver, Canada, July 23, 2007, Selected and Revised Papers},author={Collins, John and Faratin, Peyman and Parsons, Simon D and Rodriguez-Aguilar, Juan A and Sadeh, Norman M and Shehory, Onn and Sklar, Elizabeth},year={2008},publisher={Springer Science \\& Business Media}}\n",
"@article{drake2018data,title={Data for Ambulance Dispatch: New \\& emerging forms of data to support the London Ambulance Service},author={Drake, Archibald Morgan Howard and Pollitt, Alexandra Rowan and Sklar, Elizabeth Ida and Smith, Leanne and Parsons, Simon Dominic and Schneider, Eric},year={2018}}\n",
"@article{sklar2007netlogo,title={NetLogo, a multi-agent simulation environment},author={Sklar, Elizabeth},journal={Artificial life},volume={13},number={3},pages={303--311},year={2007},publisher={MIT Press}}\n",
"@article{huangusing,title={Using a Video Game to Collect Harvesting Data for Learning from Demonstration},author={Huang, Zhuoling and Sklar, Elizabeth I and Parsons, Simon}}\n",
"@misc{lakemeyer2007robocup,title={RoboCup 2006: Robot Soccer World Cup X},author={Lakemeyer, Gerhard and Sklar, Elizabeth and Sorrenti, Domenico G and Takahashi, Tomoichi},year={2007},publisher={Springer}}\n",
"@inproceedings{ozgelen2011approaches,title={Approaches to multi-robot exploration and localization},author={Ozgelen, Arif and Costantino, Michael and Ishak, Adiba and Kingston, Moses and Moore, Diquan and Sanchez, Samuel and Munoz, J and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},volume={25},number={1},pages={1880--1881},year={2011}}\n",
"@inproceedings{reich2006toward,title={Toward automatic reconfiguration of robot-sensor networks for urban search and rescue},author={Reich, Joshua and Sklar, Elizabeth},booktitle={Proceedings of the 1st International Workshop on Agent Technology for Disaster Management},pages={18--23},year={2006},organization={Citeseer}}\n",
"@inproceedings{parsons2013argumentation,title={An argumentation-based approach to handling trust in distributed decision making},author={Parsons, Simon and Sklar, Elizabeth and Singh, Munindar and Levitt, Karl and Rowe, Jeff},booktitle={2013 AAAI Spring Symposium Series},year={2013}}\n",
"@article{asada2003overview,title={An overview of robocup-2002 fukuoka/busan},author={Asada, Minoru and Obst, Oliver and Polani, Daniel and Browning, Brett and Bonarini, Andrea and Fujita, Masahiro and Christaller, Thomas and Takahashi, Tomoichi and Tadokoro, Satoshi and Sklar, Elizabeth and others},journal={AI magazine},volume={24},number={2},pages={21--21},year={2003}}\n",
"@article{castagna2023eqrbot,title={EQRbot: A chatbot delivering EQR argument-based explanations},author={Castagna, Federico and Garton, Alexandra and McBurney, Peter and Parsons, Simon and Sassoon, Isabel and Sklar, Elizabeth I},journal={Frontiers in Artificial Intelligence},volume={6},pages={1045614},year={2023},publisher={Frontiers}}\n",
"@inproceedings{sklar2002robocupjunior,title={RoboCupJunior 2002: League Description},author={Sklar, Elizabeth},booktitle={Proceedings of RoboCup-2002: Robot Soccer World Cup VI},year={2002}}\n",
"@inproceedings{azhar2006agent,title={An agent-oriented behavior-based interface framework for educationa robotics},author={Azhar, MQ and Goldman, Rachel and Sklar, Elizabeth},booktitle={Agent-Based Systems for Human Learning (ABSHL) Workshop at Autonomous Agents and MultiAgent Systems (AAMAS-2006)},year={2006}}\n",
"@inproceedings{phelps2002co,title={Co-evolutionary auction mechanism design: A preliminary report},author={Phelps, Steve and McBurney, Peter and Parsons, Simon and Sklar, Elizabeth},booktitle={Agent-Mediated Electronic Commerce IV. Designing Mechanisms and Systems: AAMAS 2002 Workshop on Agent-Mediated Electronic Commerce Bologna, Italy, July 16, 2002 Revised Papers 4},pages={123--142},year={2002},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{broecker2015hybrid,title={Hybrid insect-inspired multi-robot coverage in complex environments},author={Broecker, Bastian and Caliskanelli, Ipek and Tuyls, Karl and Sklar, Elizabeth I and Hennes, Daniel},booktitle={Towards Autonomous Robotic Systems: 16th Annual Conference, TAROS 2015, Liverpool, UK, September 8-10, 2015, Proceedings 16},pages={56--68},year={2015},organization={Springer International Publishing}}\n",
"@inproceedings{sklar2012designing,title={Designing the HRTeam Framework: Lessons learned from a rough-and-ready human/multi-robot team},author={Sklar, Elizabeth and Ozgelen, A Tuna and Munoz, J Pablo and Gonzalez, Joel and Manashirov, Mark and Epstein, Susan L and Parsons, Simon},booktitle={Advanced Agent Technology: AAMAS 2011 Workshops, AMPLE, AOSE, ARMS, DOCM 3 AS, ITMAS, Taipei, Taiwan, May 2-6, 2011. Revised Selected Papers 10},pages={232--251},year={2012},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{parsons2007relevance,title={On the relevance of utterances in formal inter-agent dialogues},author={Parsons, Simon and McBurney, Peter and Sklar, Elizabeth and Wooldridge, Michael},booktitle={Proceedings of the 6th international joint conference on Autonomous agents and multiagent systems},pages={1--8},year={2007}}\n",
"@article{elizabeth2002examining,title={Examining Team Robotics through Robo Cup Junior},author={Elizabeth, SKLAR and Emi, EGUCHI and Jeffrey, JOHNSON},journal={\u65e5\u672c\u6559\u80b2\u5de5\u5b66\u4f1a\u5927\u4f1a\u8b1b\u6f14\u8ad6\u6587\u96c6},volume={18},pages={869--870},year={2002}}\n",
"@article{clementaaai,title={aaai-11--san francisco},author={Clement, Bradley J and Sklar, Elizabeth}}\n",
"@inproceedings{ozgelen2014toward,title={Toward a human-centric task complexity model for interaction with multi-robot teams},author={Ozgelen, A Tuna and Sklar, Elizabeth I},booktitle={Workshop on Human-Agent Interaction Design and Models (HAIDM) at AAMAS-2014},year={2014}}\n",
"@article{lakemeyerselective,title={Selective Visual Attention for Object Detection on a Legged Robot},author={Lakemeyer, In Gerhard and Sklar, Elizabeth and Sorenti, Domenico and Takahashi, Tomoichi and others}}\n",
"@inproceedings{applebaum2015cyber,title={Cyber reasoning with argumentation: Abstracting from incomplete and contradictory evidence},author={Applebaum, Andy and Levitt, Karl and Li, Zimi and Parsons, Simon and Rowe, Jeff and Sklar, Elizabeth},booktitle={MILCOM 2015-2015 IEEE Military Communications Conference},pages={623--628},year={2015},organization={IEEE}}\n",
"@inproceedings{ozgelen2007automatic,title={Automatic acquisition of robot motion and sensor models},author={Ozgelen, A Tuna and Sklar, Elizabeth and Parsons, Simon},booktitle={RoboCup 2006: Robot Soccer World Cup X 10},pages={548--555},year={2007},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{sklar2013practical,title={A Practical Approach to Human/Multi-Robot Teams},author={Sklar, Elizabeth and Parsons, Simon and Ozgelen, A Tuna and Azhar, MQ and Flyr, Todd and Schneider, Eric and Raphael, Jeffery},booktitle={11th European Workshop on Multi-Agent Systems (EUMAS)},year={2013}}\n",
"@inproceedings{epstein2012applying,title={Applying FORR to human/multi-robot teams},author={Epstein, Susan L and Schneider, Eric and Ozgelen, A Tuna and Munoz, J Pablo and Costantino, Michael and Sklar, Elizabeth I and Parsons, Simon},booktitle={Workshop on Human-Agent-Robot Teams (HART) at the Int\u2019l Conf on Human-Robot Interaction (HRI)},year={2012}}\n",
"@inproceedings{parsons2011simple,title={A simple logical approach to reasoning with and about trust},author={Parsons, Simon and Sklar, Elizabeth and McBurney, Peter},booktitle={2011 AAAI Spring Symposium Series},year={2011}}\n",
"@inproceedings{raphael2013exploring,title={Exploring the challenge of learning well from a sparse training set},author={Raphael, Jeffery and Sklar, EI},booktitle={Proceedings of the Workshop on Human-Agent Interaction Design and Models (HAIDM) at Autonomous Agents and MultiAgent Systems (AAMAS), St Paul, MN, USA (May 2013)}}\n",
"@article{sklarvisualizing,title={Visualizing Academic Assessment Data},author={SKLAR, Elizabeth and ICKE, Ilknur and CAMACHO, Christopher and LIU, William and SALVIT, Jordan and ANDREWLEVICH, Valerie}}\n",
"@inproceedings{sklar1998co,title={Co-evolutionary learning: Machines and humans schooling together},author={Sklar, Elizabeth and Blair, Alan D and Pollack, Jordan B},booktitle={Workshop on Current Trends and Applications of Artificial Intelligence in Education: 4th World Congress on Expert Systems},year={1998},organization={Citeseer}}\n",
"@article{scarlatos2008building,title={Building bridges: the 2006 summer institute},author={Scarlatos, Lori and Lowes, Susan and Sklar, Elizabeth and Chopra, Samir and Parson, S and Rudowsky, Ira and Holder, Heidi},journal={J. Comput. Small Coll},volume={23},number={3},pages={23--30},year={2008}}\n",
"@inproceedings{sklar2011toward,title={Toward the application of argumentation to interactive learning systems},author={Sklar, Elizabeth and Azhar, Mohammad Q},booktitle={International Workshop on Argumentation in Multi-Agent Systems},pages={213--230},year={2011},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@article{salvit2010toward,title={Toward a myers-briggs type indicator model of agent behavior},author={Salvit, Jordan and Sklar, Elizabeth},journal={Multi-Agent-Based Simulation},year={2010}}\n",
"@inproceedings{salvit2014employing,title={Employing argumentation to support human decision making: A user study},author={Salvit, Jordan and Li, Zimi and Perumal, Senni and Wall, Holly and Mangels, Jennifer and Parsons, Simon and Sklar, Elizabeth I},booktitle={AAMAS Workshop on Argumentation in Multiagent Systems},year={2014}}\n",
"@article{sklar2016evaluation,title={Evaluation of a trust-modulated argumentation-based interactive decision-making tool},author={Sklar, Elizabeth I and Parsons, Simon and Li, Zimi and Salvit, Jordan and Perumal, Senni and Wall, Holly and Mangels, Jennifer},journal={Autonomous Agents and Multi-Agent Systems},volume={30},pages={136--173},year={2016},publisher={Springer US}}\n",
"@article{kokciyan2021applying,title={Applying metalevel argumentation frameworks to support medical decision making},author={K{\\\"o}kciyan, Nadin and Sassoon, Isabel and Sklar, Elizabeth and Modgil, Sanjay and Parsons, Simon},journal={IEEE Intelligent Systems},volume={36},number={2},pages={64--71},year={2021},publisher={IEEE}}\n",
"@phdthesis{sklar2000cel,title={CEL: A Framework for Enabling an Internet Learning Community},author={Sklar, Elizabeth Ida},year={2000},school={Brandeis University}}\n",
"@incollection{kokciyan2019collaborative,title={A collaborative decision support tool for managing chronic conditions},author={K{\\\"o}kciyan, Nadin and Chapman, Martin and Balatsoukas, Panagiotis and Sassoon, Isabel and Essers, Kai and Ashworth, Mark and Curcin, Vasa and Modgil, Sanjay and Parsons, Simon and Sklar, Elizabeth I},booktitle={MEDINFO 2019: Health and Wellbeing e-Networks for All},pages={644--648},year={2019},publisher={IOS Press}}\n",
"@inproceedings{spoelstra2007agent,title={Agent-based simulation of group learning},author={Spoelstra, Maartje and Sklar, Elizabeth},booktitle={International Workshop on Multi-Agent Systems and Agent-Based Simulation},pages={69--83},year={2007},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@inproceedings{goldman2007robolab,title={From roboLab to aibo: A behavior-based interface for educational robotics},author={Goldman, Rachel and Azhar, MQ and Sklar, Elizabeth},booktitle={RoboCup 2006: Robot Soccer World Cup X 10},pages={122--133},year={2007},organization={Springer Berlin Heidelberg}}\n",
"@article{kraetzschmar2006robocupjunior,title={RoboCupJunior. A temptation kids cannot resist},author={Kraetzschmar, Gerhard and Sklar, E and Johnson, J},year={2006}}\n",
"@article{parsons1998intuition,title={Intuition and the abstract},author={Parsons, Charles},journal={Philosophie in synthetischer Absicht. Synthesis in Mind},pages={155--187},year={1998}}\n",
"@inproceedings{azhar2016analysis,title={Analysis of empirical results on argumentation-based dialogue to support shared decision making in a human-robot team},author={Azhar, Mohammad Q and Sklar, Elizabeth I},booktitle={2016 25th IEEE international symposium on robot and human interactive communication (RO-MAN)},pages={861--866},year={2016},organization={IEEE}}\n",
"@article{funes1997internet,title={The Internet as a virtual ecology: coevolutionary arms races between human and artificial populations},author={Funes, Pablo and Sklar, Elizabeth and Juill{\\'e}, Hugues and Pollack, Jordan B},journal={Computer Science Technical Report CS-97-197, Brandeis University},volume={15},year={1997}}\n",
"@inproceedings{epstein2015navigation,title={Navigation with Learned Spatial Affordances.},author={Epstein, Susan L and Aroor, Anoop and Evanusa, Matthew and Sklar, Elizabeth and Parsons, Simon},booktitle={CogSci},year={2015}}\n",
"@inproceedings{imberman2007extra,title={Extra-Curricular Robotics: Entry-Level Soccer for Undergraduates.},author={Imberman, Susan P and Barkan, Aleksandr and Sklar, Elizabeth},booktitle={AAAI Spring Symposium: Semantic Scientific Knowledge Integration},pages={59--64},year={2007}}\n",
"@article{jacoff2003robocup,title={RoboCup: Yesterday, Today, and Tomorrow Workshop of the Executive Committee in Blaubeuren, October 2003},author={Jacoff, Adam and Nardi, Daniele and Riedmiller, Martin and Sammut, Claude and Sklar, Elizabeth and Veloso10, Manuela},journal={RoboCup 2003: Robot Soccer World Cup VII},pages={15},year={2003},publisher={Springer Verlag}}\n",
"@inproceedings{parsons2012using,title={Using argumentation to reason with and about trust},author={Parsons, Simon and Sklar, Elizabeth and McBurney, Peter},booktitle={Argumentation in Multi-Agent Systems: 8th International Workshop, ArgMAS 2011, Taipei, Taiwan, May 3, 2011, Revised Selected Papers 8},pages={194--212},year={2012},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{tang2012argumentation,title={An argumentation engine: Argtrust},author={Tang, Yuqing and Sklar, Elizabeth and Parsons, Simon},booktitle={Ninth International Workshop on Argumentation in Multiagent Systems},year={2012}}\n",
"@article{friasmetrobots,title={The MetroBots Four-legged League Team at RoboCup},author={Frias-Martinez, Vanessa and Marcinkiewicz, Marek and Parsons, Simon and Sklar, Elizabeth},publisher={Citeseer}}\n",
"@inproceedings{huang2020design,title={Design of automatic strawberry harvest robot suitable in complex environments},author={Huang, Zhuoling and Sklar, Elizabeth and Parsons, Simon},booktitle={Companion of the 2020 ACM/IEEE international conference on human-robot interaction},pages={567--569},year={2020}}\n",
"@inproceedings{huang2020toward,title={Toward Robot Co-Labourers for Intelligent Farming},author={Huang, Zhuoling and Miyauchi, Genki and Salazar Gomez, Adrian and Bird, Richie and Kalsi, Amar Singh and Jansen, Chipp and Liu, Zeyang and Parsons, Simon and Sklar, Elizabeth},booktitle={Companion of the 2020 ACM/IEEE International Conference on Human-Robot Interaction},pages={263--265},year={2020}}\n",
"@inproceedings{raphael2018towards,title={Towards dynamic coalition formation for intelligent traffic management},author={Raphael, Jeffery and Sklar, Elizabeth I},booktitle={Multi-Agent Systems and Agreement Technologies: 15th European Conference, EUMAS 2017, and 5th International Conference, AT 2017, Evry, France, December 14-15, 2017, Revised Selected Papers 15},pages={400--414},year={2018},organization={Springer International Publishing}}\n",
"@article{azhar2017study,title={A study measuring the impact of shared decision making in a human-robot team},author={Azhar, Mohammad Q and Sklar, Elizabeth I},journal={The International Journal of Robotics Research},volume={36},number={5-7},pages={461--482},year={2017},publisher={SAGE Publications Sage UK: London, England}}\n",
"@inproceedings{zhivkov2019mrcomm,title={MRComm: Multi-robot communication testbed},author={Zhivkov, Tsvetan and Schneider, Eric and Sklar, Elizabeth},booktitle={Towards Autonomous Robotic Systems: 20th Annual Conference, TAROS 2019, London, UK, July 3--5, 2019, Proceedings, Part II 20},pages={346--357},year={2019},organization={Springer International Publishing}}\n",
"@inproceedings{schneider2017mechanism,title={Mechanism selection for multi-robot task allocation},author={Schneider, Eric and Sklar, Elizabeth I and Parsons, Simon},booktitle={Towards Autonomous Robotic Systems: 18th Annual Conference, TAROS 2017, Guildford, UK, July 19--21, 2017, Proceedings 18},pages={421--435},year={2017},organization={Springer International Publishing}}\n",
"@inproceedings{sklar2012learning,title={Learning to avoid collisions},author={Sklar, Elizabeth and Parsons, Simon and Epstein, Susan L and Ozgelen, Arif Tuna and Munoz, Juan Pablo and Abbasi, Farah and Schneider, Eric and Costantino, Michael},booktitle={2012 AAAI Fall Symposium Series},year={2012}}\n",
"@inproceedings{niu2006reducing,title={Reducing price fluctuation in continuous double auctions through pricing policy and shout improvement},author={Niu, Jinzhong and Cai, Kai and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the fifth international joint conference on Autonomous agents and multiagent systems},pages={1143--1150},year={2006}}\n",
"@inproceedings{sklar2008using,title={Using simulation to evaluate data-driven agents},author={Sklar, Elizabeth and Icke, Ilknur},booktitle={International Workshop on Multi-Agent Systems and Agent-Based Simulation},pages={71--84},year={2008},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@article{harman2022multi,title={Multi-agent task allocation for fruit picker team formation},author={Harman, Helen and Sklar, Elizabeth and others},year={2022},publisher={International Foundation for Autonomous Agents and Multiagent Systems}}\n",
"@inproceedings{sklar2012transfer,title={On transfer from multiagent to multi-robot systems},author={Sklar, EI and Ozgelen, A Tuna and Schneider, Eric and Costantino, Michael and Munoz, J Pablo and Epstein, Susan L and Parsons, Simon},booktitle={Proceedings of the Workshop on Autonomous Robots and Multirobot Systems},year={2012}}\n",
"@article{baltes2004teaching,title={Teaching with robocup},author={Baltes, Jacky and Sklar, Elizabeth and Anderson, John},journal={Accessible Hands-on Artificial Intelligence and Robotics Education},pages={131--135},year={2004}}\n",
"@inproceedings{reich2006robot,title={Robot-sensor networks for search and rescue},author={Reich, Joshua and Sklar, Elizabeth},booktitle={IEEE International Workshop on Safety, Security and Rescue Robotics},volume={22},year={2006}}\n",
"@article{sklarking,title={King\u2019s Research Portal},author={Sklar, E and Parsons, S and Li, Z and Salvit, J and Perumal, S and Wall, H and Mangels, J}}\n",
"@inproceedings{tang2010system,title={A system of argumentation for reasoning about trust},author={Tang, Yuqing and Cai, Kai and Sklar, Elizabeth and McBurney, Peter and Parsons, Simon},booktitle={Proceedings of the 8th European Workshop on Multi-Agent Systems, Paris, France},year={2010}}\n",
"@inproceedings{sklar2005robocupjunior,title={RoboCupJunior\u2014four years later},author={Sklar, Elizabeth and Eguchi, Amy},booktitle={RoboCup 2004: Robot Soccer World Cup VIII 8},pages={172--183},year={2005},organization={Springer Berlin Heidelberg}}\n",
"@article{funes1998animal,title={Animal-animat coevolution: Using the animal population as fitness function},author={Funes, Pablo and Sklar, Elizabeth and Juill{\\'e}, Hugues and Pollack, Jordan},journal={From animals to animats},volume={5},pages={525--533},year={1998}}\n",
"@article{salazar2021towards,title={Towards practical object detection for weed spraying in precision agriculture},author={Salazar-Gomez, Adrian and Darbyshire, Madeleine and Gao, Junfeng and Sklar, Elizabeth I and Parsons, Simon},journal={arXiv preprint arXiv:2109.11048},year={2021}}\n",
"@article{sklartoward,title={Toward a Unified Theory of Human-Agent Modeling: A Position Paper},author={Sklar, Elizabeth}}\n",
"@inproceedings{salazar2022beyond,title={Beyond mAP: Towards practical object detection for weed spraying in precision agriculture},author={Salazar-Gomez, Adrian and Darbyshire, Madeleine and Gao, Junfeng and Sklar, Elizabeth I and Parsons, Simon},booktitle={2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},pages={9232--9238},year={2022},organization={IEEE}}\n",
"@phdthesis{zhivkov2020multi,title={A Multi-robot Communication Framework for the Analysis and Mitigation of Network Perturbations},author={Zhivkov, Tsvetan and Sklar, Elizabeth and Miles, Simon},year={2020},school={King's College London}}\n",
"@inproceedings{sklar2006use,title={The use of agents in human learning systems},author={Sklar, Elizabeth and Richards, Debbie},booktitle={Proceedings of the fifth international joint conference on Autonomous agents and multiagent systems},pages={767--774},year={2006}}\n",
"@article{jansentowards,title={Towards co-creative drawing with a robot},author={Jansen, Chipp and Sklar, Elizabeth I}}\n",
"@inproceedings{jansen2021visually,title={Visually-based Prediction of Artist\u2019s Drawing},author={Jansen, Chipp and Sklar, Elizabeth I},booktitle={Proceedings of the 4th UK-RAS Conference: Robotics at Home (\\# UKRAS21)},year={2021}}\n",
" @article{Zhivkov_2023, title={5G on the Farm: Evaluating Wireless Network Capabilities and Needs for Agricultural Robotics}, volume={11}, ISSN={2075-1702}, url={http://dx.doi.org/10.3390/machines11121064}, DOI={10.3390/machines11121064}, number={12}, journal={Machines}, publisher={MDPI AG}, author={Zhivkov, Tsvetan and Sklar, Elizabeth I. and Botting, Duncan and Pearson, Simon}, year={2023}, month=nov, pages={1064} }\n",
"@inproceedings{black2016computational,title={Computational argumentation to support multi-party human-robot interaction: challenges and advantages},author={Black, Elizabeth and Sklar, Elizabeth I},booktitle={Proceedings of the Groups in Human-Robot Interaction Workshop: A workshop at the IEEE International Symposium on Robot and Human Interactive Communication},year={2016}}\n",
"@article{foxaaai,title={AAAI 2012 Conference Committees},author={Fox, Dieter and Hoffmann, J{\\\"o}rg and Selman, Bart and Fromherz, Markus and Munoz-Avila, Hector and Kauchak, David and Vrandecic, Denny and Welty, Chris and Scheutz, Matthias and Allen, James and others}}\n",
"@incollection{goldman2012using,title={Using educational robotics to engage inner-city students with technology},author={Goldman, Rachel and Eguchi, Amy and Sklar, Elizabeth},booktitle={Embracing Diversity in the Learning Sciences},pages={214--221},year={2012},publisher={Routledge}}\n",
"@article{daviesmodeling,title={Modeling Learning as a Cooperative Multi Agent Interaction},author={Davies, Mathew and Sklar, Elizabeth}}\n",
"@inproceedings{parsons2011some,title={Some Thoughts on Using Argumentation to Handle Trust: (Invited Talk)},author={Parsons, Simon and Tang, Yuqing and Cai, Kai and Sklar, Elizabeth and McBurney, Peter},booktitle={Computational Logic in Multi-Agent Systems: 12th International Workshop, CLIMA XII, Barcelona, Spain, July 17-18, 2011. Proceedings 12},pages={1--12},year={2011},organization={Springer Berlin Heidelberg}}\n",
"@article{ndekou2023agent,title={An Agent-Based Model for Collaborative Learning to Combat Antimicrobial Resistance: Proof of Concept Based on Broiler Production in Senegal},author={Ndekou, Paul Python and Drake, Archie and Lomax, Jake and Dione, Michel and Faye, Ardiouma and Nsangou, Mohamed Daly Njiemessa and Korir, Lilian and Sklar, Elizabeth},journal={Science in One Health},pages={100051},year={2023},publisher={Elsevier}}\n",
"@inproceedings{phelps2003using,title={Using genetic programming to optimise pricing rules for a double auction market},author={Phelps, Steve and Parsons, Simon and Sklar, Elizabeth and McBurney, Peter},booktitle={Proceedings of the workshop on Agents for Electronic Commerce},year={2003},organization={Citeseer}}\n",
"@inproceedings{porat2018stakeholders,title={Stakeholders' views on a collaborative decision support system to promote multimorbidity self-management: barriers, facilitators and design implications},author={Porat, Talya and Kokciyan, Nadin and Sassoon, Isabel and Young, Anthony P and Chapman, Martin and Ashworth, Mark and Modgil, Sanjay and Parsons, Simon and Sklar, Elizabeth and Curcin, Vasa},booktitle={AMIA 2018 Annual Symposium},year={2018}}\n",
"@inproceedings{chowdhury2015investigating,title={Investigating the Impact of Communication Quality on Evolving Populations of Artificial Life Agents.},author={Chowdhury, Sadat and Sklar, Elizabeth I},booktitle={ECAL},pages={546--553},year={2015}}\n",
"@techreport{drake2018data,title={Data for Ambulance Dispatch},author={Drake, Archie and Sklar, E and Smith, L and Parsons, S and Schneider, E},year={2018},institution={tech. rep., Policy Institute at King\u2019s College London}}\n",
"@inproceedings{salvit2010toward,title={Toward a myers-briggs type indicator model of agent behavior in multiagent teams},author={Salvit, Jordan and Sklar, Elizabeth},booktitle={International Workshop on Multi-Agent Systems and Agent-Based Simulation},pages={28--43},year={2010},organization={Springer Berlin Heidelberg Berlin, Heidelberg}}\n",
"@inproceedings{blair1999exploring,title={Exploring evolutionary learning in a simulated hockey environment},author={Blair, Alan D and Sklar, Elizabeth},booktitle={Proceedings of the 1999 Congress on Evolutionary Computation-CEC99 (Cat. No. 99TH8406)},volume={1},pages={197--203},year={1999},organization={IEEE}}\n",
"@article{icke2009visual,title={Visual analytics: A multifaceted overview},author={Icke, Ilknur and Sklar, Elizabeth},journal={City University of New York},year={2009}}\n",
"@inproceedings{chowdhury2014exploring,title={Exploring interaction, diversity and efficiency of biologically inspired evolutionary multiagent systems},author={Chowdhury, Sadat and Sklar, Elizabeth I},booktitle={Proceedings of the 8th International Conference on Bioinspired Information and Communications Technologies},pages={63--66},year={2014}}\n",
"@inproceedings{henning2019combining,title={Combining Classification-centered and Relation-based Argument Mining Methods.},author={Henning, Andrew and Young, Anthony P and Sklar, Elizabeth and Miles, Simon and Black, Elizabeth},booktitle={AI$^3$@ AI* IA},pages={135--139},year={2019}}\n",
"@inproceedings{sklar2008using,title={Using Artificial Intelligence to Help Bridge Students from High School to College.},author={Sklar, Elizabeth and Parsons, Simon and Tejada, Sheila and Lowes, Susan and Azhar, MQ and Chopra, Samir and Jansen, Richard and Rudowsky, Ira},booktitle={AAAI Spring Symposium: Using AI to Motivate Greater Participation in Computer Science},pages={80--85},year={2008}}\n",
"@article{epstein2015spatial,title={Spatial abstraction for autonomous robot navigation},author={Epstein, Susan L and Aroor, Anoop and Evanusa, Matthew and Sklar, Elizabeth I and Parsons, Simon},journal={Cognitive processing},volume={16},pages={215--219},year={2015},publisher={Springer Berlin Heidelberg}}\n",
"@inproceedings{sklar2004towards,title={Towards the application of argumentation-based dialogues for education},author={Sklar, Elizabeth and Parsons, Simon},booktitle={Autonomous Agents and Multiagent Systems, International Joint Conference on},volume={4},pages={1420--1421},year={2004},organization={IEEE Computer Society}}\n",
"@article{sklar2016non,title={A non-linear model for predicting tip position of a pliable robot arm segment using bending sensor data},author={Sklar, Elizabeth and Sareh, Sina and Secco, Emanuele and Faragasso, Angela and Althoefer, Kaspar},journal={Sensors \\& Transducers},volume={199},number={4},pages={52--61},year={2016},publisher={IFSA Publishing}}\n",
"@inproceedings{blair1998evolution,title={The evolution of subtle manoeuvres in simulated hockey},author={Blair, Alan D and Sklar, Elizabeth},booktitle={Proceedings of the Fifth International Conference of the Society for Adaptive Behavior, page},year={1998}}\n",
"@inproceedings{frias2005exploring,title={Exploring auction mechanisms for role assignment in teams of autonomous robots},author={Frias-Martinez, Vanessa and Sklar, Elizabeth and Parsons, Simon},booktitle={RoboCup 2004: Robot Soccer World Cup VIII 8},pages={532--539},year={2005},organization={Springer Berlin Heidelberg}}\n",
"@article{sklar2001training,title={Training Intelligent Agents Using},author={Sklar, Elizabeth and Blair, Alan D and Pollack, Jordan B},journal={Agent engineering},volume={43},pages={201},year={2001},publisher={World Scientific}}\n",
"@article{bentonintegrating,title={Integrating a Community of Evolving Learners.},author={Benton, Jonah and Sklar, Elizabeth}}\n",
"@article{frias20042004,title={The 2004 MetroBots Four-legged League Team},author={Frias-Martinez, Vanessa and Marcinkiewicz, Marek and Parsons, Simon and Sklar, Elizabeth},year={2004}}\n",
"@inproceedings{huang2020understanding,title={Understanding human responses to errors in a collaborative human-robot selective harvesting task},author={Huang, Zhuoling and Gomez, A and Bird, Richie and Kalsi, A and Jansen, Chipp and Liu, Zeyang and Miyauchi, Genki and Parsons, Simon and Sklar, E},booktitle={Proceedings of the UKRAS20 Conference:\u201cRobots into the Real World\u201d Proceedings, Lincoln, England},volume={17},pages={89--91},year={2020}}\n",
"@article{moraru2023mixed,title={A Mixed-Autonomy approach for an Automated Weeding Platform},author={Moraru, Ionut and Zhivkov, Tsvetan and Coutts, Shaun and Li, Dom and Sklar, Elizabeth I},year={2023}}\n",
"@inproceedings{niu2007some,title={Some preliminary results on competition between markets for automated traders},author={Niu, Jinzhong and Cai, Kai and Parsons, Simon and Sklar, Elizabeth},booktitle={Workshop on Trading Agent Design and Analysis},year={2007}}\n",
"@inproceedings{johnson2005empathic,title={Empathic Agent Technology (EAT)},author={Johnson, L and van den Broek, Egon and Richards, D and Sklar, E and Wilensky, U},booktitle={4th International Joint Conference on Autonomous Agents and Multiagent Systems, AAMAS 2005},year={2005}}\n",
"@inproceedings{davies2003modeling,title={Modeling human learning as a cooperative multi agent interaction},author={Davies, Mathew and Sklar, Elizabeth},booktitle={AAMAS Workshop on Humans and Multi-Agent Systems, at the Second International Joint Conference on Autonomous Agents and Multi-Agent Systems (AAMAS-2003)},year={2003}}\n",
"@article{sklarinvestigating,title={INVESTIGATING HUMAN/MULTI-ROBOT TEAM INTERACTION},author={Sklar, Elizabeth and Parsons, Simon and Epstein, Susan L and Ozgelen, A Tuna and Munoz, J Pablo and Schneider, Eric and Costantino, Michael and Abbasi, Farah}}\n",
"@article{korir2021current,title={Current and emergent economic impacts of Covid-19 and Brexit on UK fresh produce and horticultural businesses},author={Korir, Lilian and Drake, Archie and Collison, Martin and Camacho-Villa, Tania Carolina and Sklar, Elizabeth and Pearson, Simon},journal={arXiv preprint arXiv:2101.11551},year={2021}}\n",
"@inproceedings{sklar2012toward,title={Toward a methodology for agent-based data mining and visualization},author={Sklar, Elizabeth and Jansen, Chipp and Chan, Jonathan and Byrd, Michael},booktitle={Agents and Data Mining Interaction: 7th International Workshop on Agents and Data Mining Interation, ADMI 2011, Taipei, Taiwan, May 2-6, 2011, Revised Selected Papers 7},pages={4--15},year={2012},organization={Springer Berlin Heidelberg}}\n",
"@inproceedings{schneider2014empirical,title={An empirical evaluation of auction-based task allocation in multi-robot teams},author={Schneider, Eric and Balas, Ofear and Ozgelen, A Tuna and Sklar, Elizabeth I and Parsons, Simon},booktitle={Proceedings of the 2014 international conference on Autonomous agents and multi-agent systems},pages={1443--1444},year={2014}}\n",
"@article{chapman2019semi,title={A semi-autonomous approach to connecting proprietary EHR standards to FHIR},author={Chapman, Martin and Curcin, Vasa and Sklar, Elizabeth I},journal={arXiv preprint arXiv:1911.12254},year={2019}}\n",
"@article{moraru2023variable,title={A Variable Autonomy approach for an Automated Weeding Platform},author={Moraru, Ionut and Zhivkov, Tsvetan and Coutts, Shaun and Li, Dom and Sklar, Elizabeth I},journal={arXiv preprint arXiv:2303.05461},year={2023}}\n",
"@inproceedings{frias2004framework,title={A framework for exploring role assignment in realtime, multiagent teams},author={Frias-Martinez, Vanessa and Sklar, Elizabeth I},booktitle={The second European Workshop on Multi-Agent Systems (EUMAS)},year={2004}}\n",
"@article{sklar2004using,title={Using RoboCup in university-level computer science education},author={Sklar, Elizabeth and Parsons, Simon and Stone, Peter},journal={Journal on Educational Resources in Computing (JERIC)},volume={4},number={2},pages={4--es},year={2004},publisher={ACM New York, NY, USA}}\n",
"@article{canal2020building,title={Building trust in human-machine partnerships},author={Canal, Gerard and Borgo, Rita and Coles, Andrew and Drake, Archie and Huynh, Dong and Keller, Perry and Krivi{\\'c}, Senka and Luff, Paul and Mahesar, Quratul-ain and Moreau, Luc and others},journal={Computer Law \\& Security Review},volume={39},pages={105489},year={2020},publisher={Elsevier Advanced Technology}}\n",
"@inproceedings{sklar2013enabling,title={Enabling human-robot collaboration via argumentation},author={Sklar, Elizabeth and Azhar, Mohammad Q and Flyr, Todd and Parsons, Simon},booktitle={Proceedings of the 2013 international conference on Autonomous agents and multi-agent systems},pages={1251--1252},year={2013}}\n",
"@inproceedings{niu2007some,title={Some preliminary results on the dynamic behavior of traders in multiple markets},author={Niu, Jinzhong and Cai, Kai and Parsons, Simon and Sklar, Elizabeth},booktitle={Proceedings of the Workshop on Trading Agent Design and Analysis},year={2007}}\n",
"@inproceedings{schneider2014evaluating,title={Evaluating auction-based task allocation in multi-robot teams},author={Schneider, Eric and Balas, Ofear and Ozgelen, A Tuna and Sklar, Elizabeth I and Parsons, Simon},booktitle={Workshop on Autonomous Robots and Multirobot Systems (ARMS) at Autonomous Agents and MultiAgent Systems (AAMAS), Paris, France},year={2014}}\n",
"@inproceedings{owen2022towards,title={Towards the Application of Multi-Agent Task Allocation to Hygiene Tasks in the Food Production Industry},author={Owen, Amie and Harman, Helen and Sklar, Elizabeth I},booktitle={International Conference on Practical Applications of Agents and Multi-Agent Systems},pages={5--16},year={2022},organization={Springer International Publishing Cham}}\n",
"@inproceedings{tang2011prototype,title={A prototype system for argumentation-based reasoning about trust},author={Tang, Yuqing and Cai, Kai and Sklar, Elizabeth and Parsons, Simon},booktitle={Proceedings of the 9th European Workshop on Multiagent Systems, Maastricht, Netherlands},year={2011}}\n",
"@inproceedings{noh2014continuum,title={A continuum body force sensor designed for flexible surgical robotics devices},author={Noh, Yohan and Secco, Emanuele Lindo and Sareh, Sina and W{\\\"u}rdemann, Helge and Faragasso, Angela and Back, Junghwan and Liu, Hongbin and Sklar, Elizabeth and Althoefer, Kaspar},booktitle={2014 36th Annual International Conference of the IEEE Engineering in Medicine and Biology Society},pages={3711--3714},year={2014},organization={IEEE}}\n"
]
},
"mrai": {
"sys_id": "26bc3d5d-a0b2-4a5f-a14b-0314092cfcf9",
"personId": "26bc3d5d-a0b2-4a5f-a14b-0314092cfcf9",
"prefixHonorific": "Prof",
"familiarName": "Mini",
"firstName": "Mini",
"middleName": "Chakravarthini",
"surname": "Rai",
"orcid": "",
"telephone": "",
"staffEmailAddress": "MRai@lincoln.ac.uk",
"samAccount": "mrai",
"jobTitle": "Honorary Professor",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "College of Health and Science Executive Office",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": []
},
"pbosilj": {
"sys_id": "de6e2d62-190c-425a-9066-f8e2c963abb6",
"personId": "de6e2d62-190c-425a-9066-f8e2c963abb6",
"prefixHonorific": "Dr",
"familiarName": "Petra",
"firstName": "Petra",
"middleName": "",
"surname": "Bosilj",
"orcid": "0000-0001-9640-9828",
"telephone": "01522835378",
"staffEmailAddress": "PBosilj@lincoln.ac.uk",
"samAccount": "pbosilj",
"jobTitle": "Senior Lecturer in Computer Science (Imaging/Vision)",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Bosilj2017,title = {Attribute profiles from partitioning trees},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2017},volume = {10225 LNCS},pages = {381-392},author = {Bosilj, P. and Damodaran, B.B. and Aptoula, E. and Dalla Mura, M. and Lef{\\`e}vre, S.}}",
" @article{Perrett_2023, title={DeepVerge: Classification of roadside verge biodiversity and conservation potential}, volume={102}, ISSN={0198-9715}, url={http://dx.doi.org/10.1016/j.compenvurbsys.2023.101968}, DOI={10.1016/j.compenvurbsys.2023.101968}, journal={Computers, Environment and Urban Systems}, publisher={Elsevier BV}, author={Perrett, Andrew and Pollard, Harry and Barnes, Charlie and Schofield, Mark and Qie, Lan and Bosilj, Petra and Brown, James M.}, year={2023}, month=jun, pages={101968} }\n",
"@article{Bosilj_2018,\n\tdoi = {10.1109/lra.2018.2848305},\n\turl = {https://doi.org/10.1109%2Flra.2018.2848305},\n\tyear = 2018,\n\tmonth = {oct},\n\tpublisher = {Institute of Electrical and Electronics Engineers ({IEEE})},\n\tvolume = {3},\n\tnumber = {4},\n\tpages = {2950--2956},\n\tauthor = {Petra Bosilj and Tom Duckett and Grzegorz Cielniak},\n\ttitle = {Analysis of Morphology-Based Features for Classification of Crop and Weeds in Precision Agriculture},\n\tjournal = {{IEEE} Robotics and Automation Letters}\n}",
"@article{Bosilj2011,title = {Detecting and recognizing centerlines as parabolic sections of the steerable filter response},journal = {MIPRO 2011 - 34th International Convention on Information and Communication Technology, Electronics and Microelectronics - Proceedings},year = {2011},pages = {903-908},author = {Palasek, P. and Bosilj, P. and ?egvi?, S.}}",
"@article{Bosilj_2018,doi = {10.1016/j.compind.2018.02.003},url = {https://doi.org/10.1016%2Fj.compind.2018.02.003},year = 2018,month = {jun},publisher = {Elsevier {BV}},volume = {98},pages = {226--240},author = {Petra Bosilj and Tom Duckett and Grzegorz Cielniak},title = {Connected attribute morphology for unified vegetation segmentation and classification in precision agriculture},journal = {Computers in Industry}}",
" @article{Bosilj_2018, title={Partition and Inclusion Hierarchies of Images: A Comprehensive Survey}, volume={4}, ISSN={2313-433X}, url={http://dx.doi.org/10.3390/jimaging4020033}, DOI={10.3390/jimaging4020033}, number={2}, journal={Journal of Imaging}, publisher={MDPI AG}, author={Bosilj, Petra and Kijak, Ewa and Lef\u00e8vre, S\u00e9bastien}, year={2018}, month=feb, pages={33} }\n",
" @inbook{Bosilj_2019, title={Pattern Spectra from Different Component Trees for Estimating Soil Size Distribution}, ISBN={9783030208677}, ISSN={1611-3349}, url={http://dx.doi.org/10.1007/978-3-030-20867-7_32}, DOI={10.1007/978-3-030-20867-7_32}, booktitle={Mathematical Morphology and Its Applications to Signal and Image Processing}, publisher={Springer International Publishing}, author={Bosilj, Petra and Gould, Iain and Duckett, Tom and Cielniak, Grzegorz}, year={2019}, pages={415\u2013427} }\n",
"@article{Salazar_Gomez_2021,\n\tdoi = {10.1109/lra.2021.3062586},\n\turl = {https://doi.org/10.1109%2Flra.2021.3062586},\n\tyear = 2021,\n\tpublisher = {Institute of Electrical and Electronics Engineers ({IEEE})},\n\tpages = {1--1},\n\tauthor = {Adrian Salazar-Gomez and Simon Parsons and Erchan Aptoula and Petra Bosilj},\n\ttitle = {Deep Regression versus Detection for Counting in Robotic Phenotyping},\n\tjournal = {{IEEE} Robotics and Automation Letters}\n}",
"@article{Bosilj2015,title = {Local 2d pattern spectra as connected region descriptors},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2015},volume = {9082},pages = {182-193},author = {Bosilj, P. and Wilkinson, M.H.F. and Kijak, E. and Lef{\\`e}vre, S.}}",
"@article{Bosilj2015,title = {Short local descriptors from 2D connected pattern spectra},journal = {Proceedings - International Conference on Image Processing, ICIP},year = {2015},volume = {2015-December},pages = {1548-1552},author = {Bosilj, P. and Kijak, E. and Wilkinson, M.H.F. and Lefevre, S.}}",
"@inproceedings{bosilj2015local, title= {Local 2D pattern spectra as connected region descriptors}, author= {Bosilj, Petra and Wilkinson, Michael HF and Kijak, Ewa and Lef{\\`e}vre, S{\\'e}bastien}, booktitle= {International Symposium on Mathematical Morphology and Its Applications to Signal and Image Processing}, pages= {182--193}, year= {2015}, organization= {Springer}}\n\n",
" @article{Bosilj_2016, title={Retrieval of Remote Sensing Images with Pattern Spectra Descriptors}, volume={5}, ISSN={2220-9964}, url={http://dx.doi.org/10.3390/ijgi5120228}, DOI={10.3390/ijgi5120228}, number={12}, journal={ISPRS International Journal of Geo-Information}, publisher={MDPI AG}, author={Bosilj, Petra and Aptoula, Erchan and Lef\u00e8vre, S\u00e9bastien and Kijak, Ewa}, year={2016}, month=dec, pages={228} }\n",
" @article{Bosilj_2020, title={Estimating soil aggregate size distribution from images using pattern spectra}, volume={198}, ISSN={1537-5110}, url={http://dx.doi.org/10.1016/j.biosystemseng.2020.07.012}, DOI={10.1016/j.biosystemseng.2020.07.012}, journal={Biosystems Engineering}, publisher={Elsevier BV}, author={Bosilj, Petra and Gould, Iain and Duckett, Tom and Cielniak, Grzegorz}, year={2020}, month=oct, pages={63\u201377} }\n",
" @article{Bosilj_2019, title={Transfer learning between crop types for semantic segmentation of crops versus weeds in precision agriculture}, volume={37}, ISSN={1556-4967}, url={http://dx.doi.org/10.1002/rob.21869}, DOI={10.1002/rob.21869}, number={1}, journal={Journal of Field Robotics}, publisher={Wiley}, author={Bosilj, Petra and Aptoula, Erchan and Duckett, Tom and Cielniak, Grzegorz}, year={2019}, month=mar, pages={7\u201319} }\n",
" @inproceedings{Seemakurthy_2023, title={Domain Generalised Fully Convolutional One Stage Detection}, url={http://dx.doi.org/10.1109/icra48891.2023.10160937}, DOI={10.1109/icra48891.2023.10160937}, booktitle={2023 IEEE International Conference on Robotics and Automation (ICRA)}, publisher={IEEE}, author={Seemakurthy, Karthik and Bosilj, Petra and Aptoula, Erchan and Fox, Charles}, year={2023}, month=may, pages={7002\u20137009} }\n",
" @article{Seemakurthy_2023, title={Domain Generalised Faster R-CNN}, volume={37}, ISSN={2159-5399}, url={http://dx.doi.org/10.1609/aaai.v37i2.25312}, DOI={10.1609/aaai.v37i2.25312}, number={2}, journal={Proceedings of the AAAI Conference on Artificial Intelligence}, publisher={Association for the Advancement of Artificial Intelligence (AAAI)}, author={Seemakurthy, Karthik and Fox, Charles and Aptoula, Erchan and Bosilj, Petra}, year={2023}, month=jun, pages={2180\u20132190} }\n",
" @inbook{Hurst_2023, title={An Assessment of\u00a0Self-supervised Learning for\u00a0Data Efficient Potato Instance Segmentation}, ISBN={9783031433603}, ISSN={1611-3349}, url={http://dx.doi.org/10.1007/978-3-031-43360-3_22}, DOI={10.1007/978-3-031-43360-3_22}, booktitle={Towards Autonomous Robotic Systems}, publisher={Springer Nature Switzerland}, author={Hurst, Bradley and Bellotto, Nicola and Bosilj, Petra}, year={2023}, pages={267\u2013278} }\n",
"@inproceedings{BMVC2015_169,\n\ttitle={Beyond MSER: Maximally Stable Regions using Tree of Shapes},\n\tauthor={Petra Bosilj and Ewa Kijak and S\u00e9bastien Lef\u00e8vre},\n\tyear={2015},\n\tmonth={September},\n\tpages={169.1-169.13},\n\tarticleno={169},\n\tnumpages={13},\n\tbooktitle={Proceedings of the British Machine Vision Conference (BMVC)},\n\tpublisher={BMVA Press},\n\teditor={Xianghua Xie, Mark W. Jones, and Gary K. L. Tam},\n\tdoi={10.5244/C.29.169},\n\tisbn={1-901725-53-7},\n\turl={https://dx.doi.org/10.5244/C.29.169}\n}",
"@article{Bosilj2013,title = {Hierarchical image representation simplification driven by region complexity},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2013},volume = {8156 LNCS},number = {PART 1},pages = {562-571},author = {Bosilj, P. and Lef{\\`e}vre, S. and Kijak, E.}}"
]
},
"gdas": {
"sys_id": "66512f78-e480-4ec8-9980-7ce1145ae018",
"personId": "66512f78-e480-4ec8-9980-7ce1145ae018",
"prefixHonorific": "Dr",
"familiarName": "Gautham",
"firstName": "Gautham",
"middleName": "Panamoottil",
"surname": "Das",
"orcid": "0000-0001-5351-9533",
"telephone": "",
"staffEmailAddress": "GDas@lincoln.ac.uk",
"samAccount": "gdas",
"jobTitle": "Senior Lecturer in Agri-Robotics",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Agri-Food Technology & Manufacturing",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Das2019,title = {Biological Goal Seeking},journal = {Proceedings of the 2018 IEEE Symposium Series on Computational Intelligence, SSCI 2018},year = {2019},pages = {1602-1607},author = {Kerr, E.P. and Vance, P. and Kerr, D. and Coleman, S.A. and Das, G.P. and McGinnity, T.M. and Moeys, D.P. and Delbr{\\\"u}ck, T.}}",
"@article{Das2020,title = {Agri-Cost-Maps - Integration of Environmental Constraints into Navigation Systems for Agricultural Robots},journal = {2020 6th International Conference on Control, Automation and Robotics, ICCAR 2020},year = {2020},pages = {214-220},author = {Ponnambalam, V.R. and Fentanes, J.P. and Das, G. and Cielniak, G. and Gjevestad, J.G.O. and From, P.J.}}",
"@article{Das2022,title = {Applications of robotic and solar energy in precision agriculture and smart farming},journal = {Solar Energy Advancements in Agriculture and Food Production Systems},year = {2022},pages = {351-390},author = {Ghalazman E., A. and Das, G.P. and Gould, I. and Zarafshan, P. and Rajendran S., V. and Heselden, J. and Badiee, A. and Wright, I. and Pearson, S.}}",
"@article{Das2019,title = {Improving Local Trajectory Optimisation using Probabilistic Movement Primitives},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2019},pages = {2666-2671},author = {Shyam, R.B.A. and Lightbody, P. and Das, G. and Liu, P. and Gomez-Gonzalez, S. and Neumann, G.}}",
"@article{Das2018,title = {Mechanical Design and Analysis of Hybrid Mobile Robot with Aerial and Terrain Locomotion Capability},journal = {MATEC Web of Conferences},year = {2018},volume = {172},author = {Koshy, M. and Sreevishnu, S. and Krishnan, A. and Das, G.P.}}",
"@article{Das2018,title = {PRED18: Dataset and further experiments with DAVIS event camera in predator-prey robot chasing},journal = {arXiv},year = {2018},author = {Moeys, D.P. and Neil, D. and Corradi, F. and Kerr, E. and Vance, P. and Das, G. and Coleman, S.A. and McGinnity, T.M. and Kerr, D. and Delbruck, T.}}",
"@article{Das2021,title = {Maximising Availability of Transportation Robots Through Intelligent Allocation of~Parking Spaces},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {13054 LNAI},pages = {337-348},author = {Ravikanna, R. and Hanheide, M. and Das, G. and Zhu, Z.}}",
"@article{Das2021,title = {CRH*: A Deadlock Free Framework for~Scalable Prioritised Path Planning in~Multi-robot Systems},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {13054 LNAI},pages = {66-75},author = {Heselden, J.R. and Das, G.P.}}",
"@article{Das2022,title = {An Agricultural Event Prediction Framework towards Anticipatory Scheduling of Robot Fleets: General Concepts and Case Studies},journal = {Agronomy},year = {2022},volume = {12},number = {6},author = {Pal, A. and Das, G. and Hanheide, M. and Leite, A.C. and From, P.J.}}",
"@article{Das2015,title = {Modelling of a retinal ganglion cell with simple spiking models},journal = {Proceedings of the International Joint Conference on Neural Networks},year = {2015},volume = {2015-September},author = {Vance, P. and Coleman, S.A. and Kerr, D. and Das, G.P. and McGinnity, T.M.}}",
"@article{Das2015,title = {A Distributed Task Allocation Algorithm for a Multi-Robot System in Healthcare Facilities},journal = {Journal of Intelligent and Robotic Systems: Theory and Applications},year = {2015},volume = {80},number = {1},pages = {33-58},author = {Das, G.P. and McGinnity, T.M. and Coleman, S.A. and Behera, L.}}",
"@article{Das2018,title = {Kinematic Design, Analysis and Simulation of a Hybrid Robot with Terrain and Aerial Locomotion Capability},journal = {MATEC Web of Conferences},year = {2018},volume = {172},author = {Sreevishnu, S. and Koshy, M. and Krishnan, A. and Das, G.P.}}",
"@misc{heselden2024unifiedmaphandlingrobotic,title={Unified Map Handling for Robotic Systems: Enhancing Interoperability and Efficiency Across Diverse Environments},author={James R. Heselden and Gautham P. Das},year={2024},eprint={2404.13499},archivePrefix={arXiv},primaryClass={cs.RO},url={https://arxiv.org/abs/2404.13499}}\n",
"@article{Das2023,title = {Autonomous Topological Optimisation for Multi-robot Systems in Logistics},journal = {Proceedings of the ACM Symposium on Applied Computing},year = {2023},pages = {791-799},author = {Zhu, Z. and Das, G. and Hanheide, M.}}",
"@article{Das2018,title = {Investigation into Sub-Receptive Fields of Retinal Ganglion Cells with Natural Images},journal = {Proceedings of the International Joint Conference on Neural Networks},year = {2018},volume = {2018-July},author = {Philip Vance, J. and Gautham Das, P. and Sonya Coleman, A. and Kerr, D. and Emmett Kerr, P. and Thomas McGinnity, M.}}",
" @article{Das_2023, title={A Unified Topological Representation for Robotic Fleets in Agricultural Applications}, url={http://dx.doi.org/10.22541/au.169357512.24867804/v1}, DOI={10.22541/au.169357512.24867804/v1}, publisher={Authorea, Inc.}, author={Das, Gautham and Cielniak, Grzegorz and Heselden, James and Pearson, Simon and Duchetto, Francesco Del and Zhu, Zuyuan and Dichtl, Johann and Hanheide, Marc and Fentanes, Jaime Pulido and Binch, Adam and Hutchinson, Michael and From, Pal}, year={2023}, month=sep }\n",
"@article{Das2022,title = {Learning Cooperative Behaviours in Adversarial Multi-agent Systems},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2022},volume = {13546 LNAI},pages = {179-189},author = {Wang, N. and Das, G.P. and Millard, A.G.}}",
"@article{Das2008,title = {Hydro thermal scheduling using particle swarm optimization},journal = {Transmission and Distribution Exposition Conference: 2008 IEEE PES Powering Toward the Future, PIMS 2008},year = {2008},author = {Samudi, C. and Das, G.P. and Ojha, P.C. and Sreeni, T.S. and Cherian, S.}}",
"@article{Das2022,title = {Agent-Based Simulation of~Multi-robot Soil Compaction Mapping},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2022},volume = {13546 LNAI},pages = {251-265},author = {Roberts-Elliott, L. and Das, G.P. and Millard, A.G.}}",
"@article{Das2018,title = {Bioinspired approach to modeling retinal ganglion cells using system identification techniques},journal = {IEEE Transactions on Neural Networks and Learning Systems},year = {2018},volume = {29},number = {5},pages = {1796-1808},author = {Vance, P.J. and Das, G.P. and Kerr, D. and Coleman, S.A. and McGinnity, T.M. and Gollisch, T. and Liu, J.K.}}",
"@article{Das2014,title = {Simultaneous allocations of multiple tightly-coupled multi-robot tasks to coalitions of heterogeneous robots},journal = {2014 IEEE International Conference on Robotics and Biomimetics, IEEE ROBIO 2014},year = {2014},pages = {1198-1204},author = {Das, G.P. and McGinnity, T.M. and Coleman, S.A.}}",
"@article{Das2016,title = {Combined frame- and event-based detection and tracking},journal = {Proceedings - IEEE International Symposium on Circuits and Systems},year = {2016},volume = {2016-July},pages = {2511-2514},author = {Liu, H. and Moeys, D.P. and Das, G. and Neil, D. and Liu, S.-C. and Delbruck, T.}}",
"@article{Das2016,title = {Steering a predator robot using a mixed frame/event-driven convolutional neural network},journal = {2016 2nd International Conference on Event-Based Control, Communication, and Signal Processing, EBCCSP 2016 - Proceedings},year = {2016},author = {Moeys, D.P. and Corradi, F. and Kerr, E. and Vance, P. and Das, G. and Neil, D. and Kerr, D. and Delbruck, T.}}",
"@article{Das2019,title = {Computational modelling of salamander retinal ganglion cells using machine learning approaches},journal = {Neurocomputing},year = {2019},volume = {325},pages = {101-112},author = {Das, G.P. and Vance, P.J. and Kerr, D. and Coleman, S.A. and McGinnity, T.M. and Liu, J.K.}}",
"@article{Das2014,title = {Novelty detection in user behavioural models within ambient assisted living applications: An experimental evaluation},journal = {2014 IEEE International Conference on Robotics and Biomimetics, IEEE ROBIO 2014},year = {2014},pages = {1868-1873},author = {Vance, P.J. and Das, G.P. and McGinnity, T.M. and Coleman, S.A. and Maguire, L.P.}}",
"@article{Das2017,title = {Vision system for coconut farm cable robot},journal = {2017 IEEE International Conference on Smart Technologies and Management for Computing, Communication, Controls, Energy and Materials, ICSTM 2017 - Proceedings},year = {2017},pages = {443-450},author = {Titus, A.B. and Narayanan, T. and Das, G.P.}}",
"@article{Das2020,title = {Incorporating spatial constraints into a bayesian tracking framework for improved localisation in agricultural environments},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2020},pages = {2440-2445},author = {Khan, M.W. and Das, G.P. and Hanheide, M. and Cielniak, G.}}",
"@article{Das2020,title = {Context Dependant Iterative Parameter Optimisation for Robust Robot Navigation},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2020},pages = {3937-3943},author = {Binch, A. and Das, G.P. and Pulido Fentanes, J. and Hanheide, M.}}",
"@article{Das2011,title = {A fast distributed auction and consensus process using parallel task allocation and execution},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2011},pages = {4716-4721},author = {Das, G.P. and McGinnity, T.M. and Coleman, S.A. and Behera, L.}}",
" @article{Heselden_2023, title={Heuristics and Rescheduling in Prioritised Multi-Robot Path Planning: A Literature Review}, volume={11}, ISSN={2075-1702}, url={http://dx.doi.org/10.3390/machines11111033}, DOI={10.3390/machines11111033}, number={11}, journal={Machines}, publisher={MDPI AG}, author={Heselden, James and Das, Gautham}, year={2023}, month=nov, pages={1033} }\n"
]
},
"lguevara": {
"sys_id": "a304664e-6445-4f1e-b8ad-74fa88abc715",
"personId": "a304664e-6445-4f1e-b8ad-74fa88abc715",
"prefixHonorific": "Dr",
"familiarName": "Leonardo",
"firstName": "C\u00c3\u00a9sar",
"middleName": "Leonardo",
"surname": "Guevara",
"orcid": "0000-0002-1581-8943",
"telephone": "",
"staffEmailAddress": "LGuevara@lincoln.ac.uk",
"samAccount": "lguevara",
"jobTitle": "Senior Lecturer in Agri-Robotics/ Programme Leader",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Agri-Food Technology & Manufacturing",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": []
},
"smaleki": {
"sys_id": "9634ee84-d602-47a5-830b-d0e673ffd788",
"personId": "9634ee84-d602-47a5-830b-d0e673ffd788",
"prefixHonorific": "Dr",
"familiarName": "Sepehr",
"firstName": "Sepehr",
"middleName": "",
"surname": "Maleki",
"orcid": "0000-0001-6897-7385",
"telephone": "01522837907",
"staffEmailAddress": "SMaleki@lincoln.ac.uk",
"samAccount": "smaleki",
"jobTitle": "Senior Lecturer",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@inproceedings{zhang2015operational, title= {Operational pattern analysis for predictive maintenance scheduling of industrial systems}, author= {Zhang, Yu and Bingham, Chris and Gallimore, Michael and Maleki, Sepehr}, booktitle= {IEEE International Conference on Computational Intelligence and Virtual Environments for Measurement Systems and Applications}, year= {2015}}\n\n",
"@inproceedings{maleki2017one, title= {A one-class Clustering technique for Novelty Detection and Isolation in sensor networks}, author= {Maleki, Sepehr and Bingham, Chris}, booktitle= {2017 IEEE International Conference on Computational Intelligence and Virtual Environments for Measurement Systems and Applications (CIVEMSA)}, pages= {1--6}, year= {2017}, organization= {IEEE}}\n\n",
"@article{maleki2016development, title= {Development and Realisation of Changepoint Analysis for the Detection of Emerging Faults on Industrial Systems}, author= {Maleki, Sepehr and Bingham, Chris and Zhang, Yu}, journal= {IEEE Transactions on Industrial Informatics}, volume= {12}, number= {3}, pages= {1180--1187}, year= {2016}, publisher= {IEEE}}\n\n",
"@article{maleki2014geometric, title= {A geometric approach to fault identification in linear repetitive processes}, author= {Maleki, Sepehr and Shang, Zijian and Rapisarda, Paolo}, year= {2014}}\n\n",
"@inproceedings{cruz2017performance, title= {Performance analysis of a twin shaft Industrial Gas Turbine at fouling conditions}, author= {Cruz-Manzo, Samuel and Maleki, Sepehr and Zhang, Yu and Panov, Vili and Latimer, Anthony}, booktitle= {2017 IEEE International Conference on Prognostics and Health Management (ICPHM)}, pages= {234--238}, year= {2017}, organization= {IEEE}}\n\n",
"@article{maleki2016online, title= {An online changepoint detection algorithm for highly correlated data}, author= {Maleki, Sepehr and Bingham, Chris and Zhang, Yu}, journal= {International Journal of Advances in Computer Science \\& Its Applications}, volume= {6}, number= {1}, pages= {188--192}, year= {2016}}\n\n",
"@article{cruz2018performance, title= {Performance analysis of a twin-shaft gas turbine with fault in the variable stator guide vane system of the axial compressor}, author= {Cruz-Manzo, Samuel and Maleki, Sepehr and Panov, Vili and Agbonzikilo, Festus and Zhang, Yu and Latimer, Anthony and others}, year= {2018}}\n\n",
"@article{maleki2018performance, title= {Performance analysis and prediction of compressor fouling condition for a twin-shaft engine}, author= {Maleki, Sepehr and Cruz-Manzo, Samuel and Bingham, Chris and Panov, Vili and others}, year= {2018}, publisher= {Global Power and Propulsion Society}}\n\n",
"@phdthesis{maleki2015geometric, title= {A geometric approach to fault detection and isolation in multidimensional systems}, author= {Maleki, Sepehr}, year= {2015}, school= {University of Southampton}}\n\n",
"@article{maleki20162, title= {2-D online changepoint detection algorithm for sensor-based fault detection}, author= {Maleki, Sepehr and Bingham, Chris and Zhang, Yu}, journal= {International Journal of Advances in Computer Science \\& Its Applications}, volume= {6}, number= {1}, pages= {109--114}, year= {2016}}\n\n",
"@inproceedings{cruz2018analysis, title= {Analysis of Performance of a Twin-Shaft Gas Turbine During Hot-End Damage in the Gas Generator Turbine}, author= {Cruz-Manzo, Samuel and Maleki, Sepehr and Panov, Vili and Agbonzikilo, Festus and Zhang, Yu and Latimer, Anthony}, booktitle= {ASME Turbo Expo 2018: Turbomachinery Technical Conference and Exposition}, pages= {V006T05A010--V006T05A010}, year= {2018}, organization= {American Society of Mechanical Engineers}}\n\n",
"@article{maleki2015failure, title= {Failure identification for linear repetitive processes}, author= {Maleki, Sepehr and Rapisarda, Paolo and Rogers, Eric}, journal= {Multidimensional Systems and Signal Processing}, volume= {26}, number= {4}, pages= {1037--1059}, year= {2015}, publisher= {Springer US}}\n\n",
"@inproceedings{maleki2013geometric, title= {A geometric approach to 3D fault identification}, author= {Maleki, Sepehr and Rapisarda, Paolo and Ntogramatzidis, Lorenzo and Rogers, Eric}, booktitle= {nDS'13; Proceedings of the 8th International Workshop on Multidimensional Systems}, pages= {1--6}, year= {2013}, organization= {VDE}}\n\n",
"@article{panov2017model, title= {Model-based compensation of sensor failure in industrial gas turbine}, author= {Panov, Vili and Maleki, Sepehr and others}, year= {2017}, publisher= {Global Power and Propulsion Society}}\n\n",
"@article{maleki2015failure, title= {Failure identification for 3D linear systems}, author= {Maleki, Sepehr and Rapisarda, Paolo and Ntogramatzidis, Lorenzo and Rogers, Eric}, journal= {Multidimensional Systems and Signal Processing}, volume= {26}, number= {2}, pages= {481--502}, year= {2015}, publisher= {Springer US}}\n\n",
"@article{zhang2016measurement, title= {Measurement reconstruction in sensor networks for industrial systems}, author= {Zhang, Yu and Bingham, Chris and Maleki, Sepehr}, journal= {International Journal of Advances in Computer Science \\& Its Applications}, volume= {6}, number= {1}, pages= {105--108}, year= {2016}}\n\n"
]
},
"malkhafajiy": {
"sys_id": "d533aaa5-bee2-4439-acbe-686567ae5384",
"personId": "d533aaa5-bee2-4439-acbe-686567ae5384",
"prefixHonorific": "Dr",
"familiarName": "Mohammed",
"firstName": "Mohammed",
"middleName": "Dhirgham",
"surname": "Al-Khafajiy",
"orcid": "0000-0001-6561-0414",
"telephone": "01522886753",
"staffEmailAddress": "MAlKhafajiy@lincoln.ac.uk",
"samAccount": "malkhafajiy",
"jobTitle": "Senior Lecturer in Computer Science",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Al-khafajiy2019,title = {Iot-fog optimal workload via fog offloading},journal = {Proceedings - 11th IEEE/ACM International Conference on Utility and Cloud Computing Companion, UCC Companion 2018},year = {2019},pages = {349-352},author = {Al-Khafajiy, M. and Baker, T. and Waraich, A. and Al-Jumeily, D. and Hussain, A.}}",
"@article{Al-khafajiy2018,title = {Towards fog driven IoT healthcare: Challenges and framework of fog computing in healthcare},journal = {ACM International Conference Proceeding Series},year = {2018},author = {Al-Khafajiy, M. and Webster, L. and Baker, T. and Waraich, A.}}",
" @article{Abdal_Hafeth_2025, title={EdgeScan for IoT Contextual Understanding With Edge Computing and Image Captioning}, volume={12}, ISSN={2372-2541}, url={http://dx.doi.org/10.1109/JIOT.2024.3492066}, DOI={10.1109/jiot.2024.3492066}, number={6}, journal={IEEE Internet of Things Journal}, publisher={Institute of Electrical and Electronics Engineers (IEEE)}, author={Abdal Hafeth, Deema and Al-Khafajiy, Mohammed and Kollias, Stefanos}, year={2025}, month=mar, pages={6519\u20136535} }\n",
"@article{Maamar_2021,\n\tdoi = {10.1016/j.iot.2021.100460},\n\turl = {https://doi.org/10.1016%2Fj.iot.2021.100460},\n\tyear = 2021,\n\tmonth = {sep},\n\tpublisher = {Elsevier {BV}},\n\tpages = {100460},\n\tauthor = {Zakaria Maamar and Noura Faci and Mohammed Al-Khafajiy and Murtada Dohan},\n\ttitle = {Time-centric and resource-driven composition for the Internet of Things},\n\tjournal = {Internet of Things}\n}",
"@article{Al-khafajiy2019,title = {Corrigendum to Norm-based and commitment-driven agentification of the Internet of Things [Internet of Things volume 6 (2019) 100042](S2542660518301999)(10.1016/j.iot.2019.02.002)},journal = {Internet of Things (Netherlands)},year = {2019},volume = {7},author = {Boukadi, K. and Faci, N. and Maamar, Z. and Ugljanin, E. and Sellami, M. and Baker, T. and Al-Khafajiy, M.}}",
"@article{Al-khafajiy2021,title = {Intelligent Control and Security of Fog Resources in Healthcare Systems via a Cognitive Fog Model},journal = {ACM Transactions on Internet Technology},year = {2021},volume = {21},number = {3},author = {Al-Khafajiy, M. and Otoum, S. and Baker, T. and Asim, M. and Maamar, Z. and Aloqaily, M. and Taylor, M. and Randles, M.}}",
"@article{Al-khafajiy2019,title = {Cognitive computing meets the internet of things},journal = {ICSOFT 2018 - Proceedings of the 13th International Conference on Software Technologies},year = {2019},pages = {741-746},author = {Maamar, Z. and Baker, T. and Faci, N. and Ugljanin, E. and Atif, Y. and Al-Khafajiy, M. and Sellami, M.}}",
"@article{Al-khafajiy2019,title = {Corrigendum to ?Weaving cognition into the internet-of-things: Application to water leaks? [Cogn. Syst. Res. 56 (2019)233?245](S1389041718303292)(10.1016/j.cogsys.2019.04.001)},journal = {Cognitive Systems Research},year = {2019},volume = {58},pages = {54},author = {Maamar, Z. and Baker, T. and Faci, N. and Al-Khafajiy, M. and Ugljanin, E. and Atif, Y. and Sellami, M.}}",
"@article{Yahyaoui_2022,\tdoi = {10.1016/j.future.2022.06.003},\turl = {https://doi.org/10.1016%2Fj.future.2022.06.003},\tyear = 2022,\tmonth = {nov},\tpublisher = {Elsevier {BV}},\tvolume = {136},\tpages = {182--192},\tauthor = {Hamdi Yahyaoui and Zakaria Maamar and Mohamed Alkhafajiy and Hamid Al-Hamadi},\ttitle = {Trust-based management in {IoT} federations},\tjournal = {Future Generation Computer Systems}}",
"@article{Al-khafajiy2019,title = {Fog computing framework for internet of things applications},journal = {Proceedings - International Conference on Developments in eSystems Engineering, DeSE},year = {2019},volume = {2018-September},pages = {71-77},author = {Al-Khafajiy, M. and Baker, T. and Al-Libawy, H. and Waraich, A. and Chalmers, C. and Alfandi, O.}}",
"@article{Al-khafajiy2019,title = {Enabling high performance fog computing through fog-2-fog coordination model},journal = {Proceedings of IEEE/ACS International Conference on Computer Systems and Applications, AICCSA},year = {2019},volume = {2019-November},author = {Al-Khafajiy, M. and Baker, T. and Waraich, A. and Alfandi, O. and Hussien, A.}}",
"@article{Al-khafajiy2019,title = {A holistic study on emerging IoT networking paradigms},journal = {Proceedings - International Conference on Developments in eSystems Engineering, DeSE},year = {2019},volume = {October-2019},pages = {943-949},author = {Al-Khafajiy, M. and Ghareeb, S. and Al-Jumeily, R. and Almurshedi, R. and Hussien, A. and Baker, T. and Jararweh, Y.}}",
"@article{Al-khafajiy2021,title = {An IoT Application Business-Model on Top of Cloud and Fog Nodes},journal = {Lecture Notes in Networks and Systems},year = {2021},volume = {226 LNNS},pages = {174-186},author = {Maamar, Z. and Al-Khafajiy, M. and Dohan, M.}}",
"@article{Al-khafajiy2019,title = {Weaving cognition into the internet-of-things: Application to water leaks},journal = {Cognitive Systems Research},year = {2019},volume = {56},pages = {233-245},author = {Maamar, Z. and Baker, T. and Faci, N. and Al-Khafajiy, M. and Ugljanin, E. and Atif, Y. and Sellami, M.}}",
"@article{Al_khafajiy_2019,\n\tdoi = {10.1007/s11042-019-7274-4},\n\turl = {https://doi.org/10.1007%2Fs11042-019-7274-4},\n\tyear = 2019,\n\tmonth = {feb},\n\tpublisher = {Springer Science and Business Media {LLC}},\n\tvolume = {78},\n\tnumber = {14},\n\tpages = {20087--20111},\n\tauthor = {Mohammed Al-khafajiy and Hoshang Kolivand and Thar Baker and David Tully and Atif Waraich},\n\ttitle = {Smart hospital emergency system},\n\tjournal = {Multimedia Tools and Applications}\n}",
" @article{Atanbori_2025, title={Learning with noisy labels for classifying biological echoes in polarimetric weather radar observations using artificial neural networks}, volume={634}, ISSN={0925-2312}, url={http://dx.doi.org/10.1016/j.neucom.2025.129892}, DOI={10.1016/j.neucom.2025.129892}, journal={Neurocomputing}, publisher={Elsevier BV}, author={Atanbori, John and Frantzidis, Christos A. and Al-Khafajiy, Mohammed and Aliyu, Aliyu and Sohani, Behnaz and Appiah, Kofi and Moore, Harriet and Sanders, Catherine and Ward, Alastair I.}, year={2025}, month=jun, pages={129892} }\n",
" @article{2018, title={A Survey of Resource Management Challenges in Multi-cloud Environment: Taxonomy and Empirical Analysis}, volume={1}, ISSN={2616-6127}, url={http://dx.doi.org/10.32010/26166127.2018.1.1.51.65}, DOI={10.32010/26166127.2018.1.1.51.65}, number={1}, journal={Azerbaijan Journal of High Performance Computing}, publisher={Azerbaijan State Oil and Industry University}, author={Aldawsari, Bandar and Baker, Thar and Asim, Muhammad and Maamar, Zakaria and Al-Jumeily, Dhiya and Alkhafajiy, Mohammed}, year={2018}, month=aug, pages={51\u201365} }\n",
" @article{Boukadi_2019, title={Norm-based and commitment-driven agentification of the Internet of Things}, volume={6}, ISSN={2542-6605}, url={http://dx.doi.org/10.1016/j.iot.2019.02.002}, DOI={10.1016/j.iot.2019.02.002}, journal={Internet of Things}, publisher={Elsevier BV}, author={Boukadi, Khouloud and Faci, Noura and Maamar, Zakaria and Ugljanin, Emir and Sellami, Mohamed and Baker, Thar and Al-Khafajiy, Mohammed}, year={2019}, month=jun, pages={100042} }\n",
"@article{Al-khafajiy2019,title = {Optimizing project delivery through augmented reality and agile methodologies},journal = {Proceedings - International Conference on Developments in eSystems Engineering, DeSE},year = {2019},volume = {October-2019},pages = {1006-1013},author = {Hussien, A. and Tucker, M. and Cotgrave, A. and Al-Khafajiy, M. and Shamsa, T.B.}}",
"@article{Al-khafajiy2019,title = {Remote health monitoring of elderly through wearable sensors},journal = {Multimedia Tools and Applications},year = {2019},volume = {78},number = {17},pages = {24681-24706},author = {Al-khafajiy, M. and Baker, T. and Chalmers, C. and Asim, M. and Kolivand, H. and Fahim, M. and Waraich, A.}}",
" @article{Devine_2025, title={Federated Machine Learning to Enable Intrusion Detection Systems in IoT Networks}, volume={14}, ISSN={2079-9292}, url={http://dx.doi.org/10.3390/electronics14061176}, DOI={10.3390/electronics14061176}, number={6}, journal={Electronics}, publisher={MDPI AG}, author={Devine, Mark and Ardakani, Saeid Pourroostaei and Al-Khafajiy, Mohammed and James, Yvonne}, year={2025}, month=mar, pages={1176} }\n",
"@article{Al-khafajiy2020,title = {COMITMENT: A Fog Computing Trust Management Approach},journal = {Journal of Parallel and Distributed Computing},year = {2020},volume = {137},pages = {1-16},author = {Al-khafajiy, M. and Baker, T. and Asim, M. and Guo, Z. and Ranjan, R. and Longo, A. and Puthal, D. and Taylor, M.}}",
"@article{Al-khafajiy2019,title = {Improving fog computing performance via Fog-2-Fog collaboration},journal = {Future Generation Computer Systems},year = {2019},volume = {100},pages = {266-280},author = {Al-khafajiy, M. and Baker, T. and Al-Libawy, H. and Maamar, Z. and Aloqaily, M. and Jararweh, Y.}}",
"@article{Al-khafajiy2018,title = {Thing federation as a service: Foundations and demonstration},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2018},volume = {11163 LNCS},pages = {184-197},author = {Maamar, Z. and Boukadi, K. and Ugljanin, E. and Baker, T. and Asim, M. and Al-Khafajiy, M. and Benslimane, D. and El Alaoui El Abdallaoui, H.}}",
" @inproceedings{Maamar_2018, title={Cognitive Computing Meets the Internet of Things}, url={http://dx.doi.org/10.5220/0006877507750780}, DOI={10.5220/0006877507750780}, booktitle={Proceedings of the 13th International Conference on Software Technologies}, publisher={SCITEPRESS - Science and Technology Publications}, author={Maamar, Zakaria and Baker, Thar and Faci, Noura and Ugljanin, Emir and Atif, Yacine and Al-Khafajiy, Mohammed and Sellami, Mohamed}, year={2018}, pages={775\u2013780} }\n"
]
},
"apolydoros": {
"sys_id": "99d1bfa4-2d7f-4a30-9a81-3de5a3a495f2",
"personId": "99d1bfa4-2d7f-4a30-9a81-3de5a3a495f2",
"prefixHonorific": "Dr",
"familiarName": "Athanasios",
"firstName": "Athanasios",
"middleName": "",
"surname": "Polydoros",
"orcid": "0000-0002-4597-0567",
"telephone": "",
"staffEmailAddress": "APolydoros@lincoln.ac.uk",
"samAccount": "apolydoros",
"jobTitle": "Senior Lecturer in Robotics and Autonomous Systems",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
" @inproceedings{Zhou_2024, title={Robotic Learning in your Backyard: A Neural Simulator from Open Source Components}, url={http://dx.doi.org/10.1109/irc63610.2024.00031}, DOI={10.1109/irc63610.2024.00031}, booktitle={2024 Eighth IEEE International Conference on Robotic Computing (IRC)}, publisher={IEEE}, author={Zhou, Liyou and Sinavski, Oleg and Polydoros, Athanasios}, year={2024}, month=dec, pages={131\u2013138} }\n",
"@article{Polydoros2017,title = {Global localization for future space exploration rovers},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2017},volume = {10528 LNCS},pages = {86-98},author = {Boukas, E. and Polydoros, A.S. and Visentin, G. and Nalpantidis, L. and Gasteratos, A.}}",
" @inbook{Williams_2024, title={Pretrained Visual Representations in\u00a0Reinforcement Learning}, ISBN={9783031720598}, ISSN={1611-3349}, url={http://dx.doi.org/10.1007/978-3-031-72059-8_6}, DOI={10.1007/978-3-031-72059-8_6}, booktitle={Towards Autonomous Robotic Systems}, publisher={Springer Nature Switzerland}, author={Williams, Emlyn and Polydoros, Athanasios}, year={2024}, month=dec, pages={60\u201371} }\n",
"@article{Polydoros2017,title = {SkiROS?A skill-based robot control platform on top of ROS},journal = {Studies in Computational Intelligence},year = {2017},volume = {707},pages = {121-160},author = {Rovida, F. and Crosby, M. and Holz, D. and Polydoros, A.S. and Gro{\\ss}mann, B. and Petrick, R.P.A. and Kr{\\\"u}ger, V.}}",
"@article{Polydoros2011,title = {Training Fuzzy Cognitive Maps by using Hebbian learning algorithms: A comparative study},journal = {IEEE International Conference on Fuzzy Systems},year = {2011},pages = {851-858},author = {Papakostas, G.A. and Polydoros, A.S. and Koulouriotis, D.E. and Tourassis, V.D.}}",
" @article{Ravichandar_2020, title={Recent Advances in Robot Learning from Demonstration}, volume={3}, ISSN={2573-5144}, url={http://dx.doi.org/10.1146/annurev-control-100819-063206}, DOI={10.1146/annurev-control-100819-063206}, number={1}, journal={Annual Review of Control, Robotics, and Autonomous Systems}, publisher={Annual Reviews}, author={Ravichandar, Harish and Polydoros, Athanasios S. and Chernova, Sonia and Billard, Aude}, year={2020}, month=may, pages={297\u2013330} }\n",
"@article{Polydoros2017,title = {Survey of Model-Based Reinforcement Learning: Applications on Robotics},journal = {Journal of Intelligent and Robotic Systems: Theory and Applications},year = {2017},volume = {86},number = {2},pages = {153-173},author = {Polydoros, A.S. and Nalpantidis, L.}}",
"@article{Polydoros2016,title = {Reservoir computing approach for learning forward dynamics of industrial manipulators},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2016},volume = {2016-November},pages = {612-618},author = {Polydoros, A.S. and Nalpantidis, L.}}",
"@article{Polydoros2015,title = {Real-time deep learning of robotic manipulator inverse dynamics},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2015},volume = {2015-December},pages = {3442-3448},author = {Polydoros, A.S. and Nalpantidis, L. and Kruger, V.}}",
"@article{Polydoros2012,title = {Towards Hebbian learning of Fuzzy Cognitive Maps in pattern classification problems},journal = {Expert Systems with Applications},year = {2012},volume = {39},number = {12},pages = {10620-10629},author = {Papakostas, G.A. and Koulouriotis, D.E. and Polydoros, A.S. and Tourassis, V.D.}}",
"@article{Polydoros2017,title = {Online multi-target learning of inverse dynamics models for computed-torque control of compliant manipulators},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2017},volume = {2017-September},pages = {4716-4722},author = {Polydoros, A.S. and Boukas, E. and Nalpantidis, L.}}",
"@article{Polydoros2018,title = {Human-machine interface for remote training of robot tasks.},journal = {IST 2018 - IEEE International Conference on Imaging Systems and Techniques, Proceedings},year = {2018},author = {Spranger, J. and Buzatoiu, R. and Polydoros, A. and Nalpantidis, L. and Boukas, E.}}",
"@article{Polydoros2016,title = {Accurate and versatile automation of industrial kitting operations with SkiROS},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2016},volume = {9716},pages = {255-268},author = {Polydoros, A.S. and Gro{\\ss}mann, B. and Rovida, F. and Nalpantidis, L. and Kr{\\\"u}ger, V.}}"
]
},
"nbellotto": {
"sys_id": "f487270f-7ff0-47eb-b4b6-656cee47efbf",
"personId": "f487270f-7ff0-47eb-b4b6-656cee47efbf",
"prefixHonorific": "Dr",
"familiarName": "Nicola",
"firstName": "Nicola",
"middleName": "",
"surname": "Bellotto",
"orcid": "0000-0001-7950-9608",
"telephone": "",
"staffEmailAddress": "nbellotto@lincoln.ac.uk",
"samAccount": "nbellotto",
"jobTitle": "Visiting Professor of Robotics",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Bellotto2015,title = {Progressive co-adaptation in human-machine interaction},journal = {ICINCO 2015 - 12th International Conference on Informatics in Control, Automation and Robotics, Proceedings},year = {2015},volume = {2},pages = {362-368},author = {Gallina, P. and Bellotto, N. and Di Luca, M.}}",
"@conference{\n\t11577_3529302,\n\tauthor = {Mghames, Sariah and Castri, Luca and Hanheide, Marc and Bellotto, Nicola},\n\ttitle = {neuROSym: Deployment and Evaluation of a ROS-based Neuro-Symbolic Model for Human Motion Prediction},\n\tyear = {2024},\n\tbooktitle = {IEEE International Conference on Cybernetics and Intelligent Systems (CIS) and IEEE International Conference on Robotics, Automation and Mechatronics (RAM)},\n\tdoi = {10.1109/cis-ram61939.2024.10672815},\n\tpages = {57--62}\n}\n",
"@article{Bellotto2016,title = {Learning temporal context for activity recognition},journal = {Frontiers in Artificial Intelligence and Applications},year = {2016},volume = {285},pages = {107-115},author = {Coppola, C. and Kraj?{\\'i}k, T. and Duckett, T. and Bellotto, N.}}",
"@article{Bellotto2009,title = {Multisensor-based human detection and tracking for mobile service robots},journal = {IEEE Transactions on Systems, Man, and Cybernetics, Part B: Cybernetics},year = {2009},volume = {39},number = {1},pages = {167-181},author = {Bellotto, N. and Hu, H.}}",
"@article{Bellotto2010,title = {Computationally efficient solutions for tracking people with a mobile robot: An experimental evaluation of Bayesian filters},journal = {Autonomous Robots},year = {2010},volume = {28},number = {4},pages = {425-438},author = {Bellotto, N. and Hu, H.}}",
"@article{Bellotto2014,title = {A probabilistic model of human-robot spatial interaction using a qualitative trajectory calculus},journal = {AAAI Spring Symposium - Technical Report},year = {2014},volume = {SS-14-06},pages = {18-25},author = {Dondrup, C. and Bellotto, N. and Hanheide, M.}}",
"@conference{\n\t11577_3537866,\n\tauthor = {Wm, Li and Fusaro, D and Olivastri, E and Mosco, S and Bellotto, N and Pretto, A},\n\ttitle = {P-SVM2: Enhancing LiDAR-based Traversability Analysis with Augmented Point Cloud Descriptor for Autonomous Mobile Systems},\n\tyear = {2024},\n\tpublisher = {IEEE},\n\tbooktitle = {Proceedings of 11th IEEE International Conference on Cybernetics and Intelligent Systems (CIS) / 11th IEEE International Conference on Robotics, Automation and Mechatronics (RAM)},\n\tabstract = {The ability to perceive traversable regions is a crucial prerequisite for truly autonomous mobile systems. In our previous work [8], we introduced P-SVM, a 3D LiDAR-based traversability analysis system that achieves real-time performance in CPU. However, by design P-SVM does not capture features other than geometric features, limiting its performance and generalizability to complex environments. In this work, we introduce an augmented point cloud descriptor that further improves the performance of P-SVM. By exploiting additional features extracted from remission and height information in the point cloud, our model is able to adapt robustly to strong scene changes. Additionally, in the proposed descriptor, remission radial distribution features are introduced to capture local information around keypoints. This addresses the limitation of P-SVM, which focuses only on global features within the cell. Our new P-SVM2 model demonstrates performance almost on par with state-of-the-art deep learning-based methods on the challenging SemanticKITTI [1] dataset in the traversability analysis task. Notably, P-SVM2 is real-time and relies solely on mobile-level CPUs. Moreover, surprising results have been obtained in robustness and generalizability experiments.},\n\tkeywords = {Traversability analysis; point cloud descriptor; real-time performance; autonomous mobile systems},\n\tdoi = {10.1109/CIS-RAM61939.2024.10672725},\n\tpages = {352--359}\n}\n",
"@conference{\n\t11577_3460074,\n\tauthor = {Castri, Luca and Mghames, Sariah and Hanheide, Marc and Bellotto, Nicola},\n\ttitle = {Causal Discovery of Dynamic Models for Predicting Human Spatial Interactions},\n\tyear = {2022},\n\tvolume = {13817},\n\tbooktitle = {Lecture Notes in Computer Science - International Conference on Social Robotics (ICSR)},\n\tabstract = {Exploiting robots for activities in human-shared environments, whether warehouses, shopping centres or hospitals, calls for such robots to understand the underlying physical interactions between nearby agents and objects. In particular, modelling cause-and-effect relations between the latter can help to predict unobserved human behaviours and anticipate the outcome of specific robot interventions. In this paper, we propose an application of causal discovery methods to model human-robot spatial interactions, trying to understand human behaviours from real-world sensor data in two possible scenarios: humans interacting with the environment, and humans interacting with obstacles. New methods and practical solutions are discussed to exploit, for the first time, a state-of-the-art causal discovery algorithm in some challenging human environments, with potential application in many service robotics scenarios. To demonstrate the utility of the causal models obtained from real-world datasets, we present a comparison between causal and non-causal prediction approaches. Our results show that the causal model correctly captures the underlying interactions of the considered scenarios and improves its prediction accuracy.},\n\tdoi = {10.1007/978-3-031-24667-8_14},\n\tisbn = {978-3-031-24666-1},\t\n\tpages = {154--164}\n}\n",
"@article{Bellotto2017,title = {Online learning for human classification in 3D LiDAR-based tracking},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2017},volume = {2017-September},pages = {864-871},author = {Yan, Z. and Duckett, T. and Bellotto, N.}}",
" @article{Fernandez_Carmona_2024, title={Wavelet-based temporal models of human activity for anomaly detection in smart robot-assisted environments1}, volume={16}, ISSN={1876-1364}, url={http://dx.doi.org/10.3233/AIS-230144}, DOI={10.3233/ais-230144}, number={2}, journal={Journal of Ambient Intelligence and Smart Environments}, publisher={SAGE Publications}, author={Fernandez-Carmona, Manuel and Mghames, Sariah and Bellotto, Nicola}, year={2024}, month=jun, pages={181\u2013200} }\n",
"@conference{\n\t11577_3373517,\n\tauthor = {Terreran, Matteo and Tramontano, Andrea G. and Lock, Jacobus C. and Ghidoni, Stefano and Bellotto, Nicola},\n\ttitle = {Real-time Object Detection using Deep Learning for helping People with Visual Impairments},\n\tyear = {2020},\n\tbooktitle = {IEEE International Conference on Image Processing, Applications and Systems, IPAS},\n\tabstract = {Object detection plays a crucial role in the development of Electronic Travel Aids (ETAs), capable to guide a person with visual impairments towards a target object in an unknown indoor environment. In such a scenario, the object detector runs on a mobile device (e.g. smartphone) and needs to be fast, accurate, and, most importantly, lightweight. Nowadays, Deep Neural Networks (DNN) have become the state-of-the-art solution for object detection tasks, with many works improving speed and accuracy by proposing new architectures or extending existing ones. A common strategy is to use deeper networks to get higher performance, but that leads to a higher computational cost which makes it impractical to integrate them on mobile devices with limited computational power. In this work we compare different object detectors to find a suitable candidate to be implemented on ETAs, focusing on lightweight models capable of working in real-time on mobile devices with a good accuracy. In particular, we select two models: SSD Lite with Mobilenet V2 and Tiny-DSOD. Both models have been tested on the popular OpenImage dataset and a new dataset, named L-CAS Office dataset, collected to further test models\u2019 performance and robustness in a real scenario inspired by the actual perception challenges of a user with visual impairments.},\n\tkeywords = {Object detection, real-time, electronic travel aid},\n\tdoi = {10.1109/IPAS50080.2020.9334933},\n\tisbn = {978-1-7281-7575-1},\t\n\tpages = {89--95}\n}\n",
"@article{\n\t11577_3455204,\n\tauthor = {Yan, Z. and Duckett, T. and Bellotto, N.},\n\ttitle = {Online learning for 3D LiDAR-based human detection: experimental analysis of point cloud clustering and classification methods},\n\tyear = {2020},\n\tjournal = {AUTONOMOUS ROBOTS},\n\tvolume = {44},\n\tdoi = {10.1007/s10514-019-09883-y},\n\tpages = {147--164}\n}\n",
"@incollection{Fu_2019,\n\tdoi = {10.1007/978-3-030-19823-7_5},\n\turl = {https://doi.org/10.1007%2F978-3-030-19823-7_5},\n\tyear = 2019,\n\tpublisher = {Springer International Publishing},\n\tpages = {67--79},\n\tauthor = {Qinbing Fu and Nicola Bellotto and Huatian Wang and F. Claire Rind and Hongxin Wang and Shigang Yue},\n\ttitle = {A Visual Neural Network for Robust Collision Perception in Vehicle Driving Scenarios},\n\tbooktitle = {{IFIP} Advances in Information and Communication Technology}\n}",
"@article{Camara_2021,\n\tdoi = {10.1109/tits.2020.3006767},\n\turl = {https://doi.org/10.1109%2Ftits.2020.3006767},\n\tyear = 2021,\n\tmonth = {sep},\n\tpublisher = {Institute of Electrical and Electronics Engineers ({IEEE})},\n\tvolume = {22},\n\tnumber = {9},\n\tpages = {5453--5472},\n\tauthor = {Fanta Camara and Nicola Bellotto and Serhan Cosar and Florian Weber and Dimitris Nathanael and Matthias Althoff and Jingyuan Wu and Johannes Ruenz and Andre Dietrich and Gustav Markkula and Anna Schieben and Fabio Tango and Natasha Merat and Charles Fox},\n\ttitle = {Pedestrian Models for Autonomous Driving Part {II}: High-Level Models of Human Behavior},\n\tjournal = {{IEEE} Transactions on Intelligent Transportation Systems}\n}",
"@article{\n\t11577_3455205.2,\n\tauthor = {Cosar, S. and Bellotto, N.},\n\ttitle = {Human Re-Identification with a Robot Thermal Camera Using Entropy-Based Sampling},\n\tyear = {2020},\n\tpublisher = {SPRINGER},\n\tjournal = {JOURNAL OF INTELLIGENT & ROBOTIC SYSTEMS},\n\tvolume = {98},\n\tabstract = {Human re-identification is an important feature of domestic service robots, in particular for elderly monitoring and assistance, because it allows them to perform personalized tasks and human-robot interactions. However vision-based re- identification systems are subject to limitations due to human pose and poor lighting conditions. This paper presents a new re-identification method for service robots using thermal images. In robotic applications, as the number and size of thermal datasets is limited, it is hard to use approaches that require huge amount of training samples. We propose a re-identification system that can work using only a small amount of data. During training, we perform entropy-based sampling to obtain a thermal dictionary for each person. Then, a symbolic representation is produced by converting each video into sequences of dictionary elements. Finally, we train a classifier using this symbolic representation and geometric distribution within the new representation domain. The experiments are performed on a new thermal dataset for human re-identification, which includes various situations of human motion, poses and occlusion, and which is made publicly available for research purposes. The proposed approach has been tested on this dataset and its improvements over standard approaches have been demonstrated.},\n\tkeywords = {Service robots; Re-identification; Elderly care; Thermal camera; Occlusion; Body motion},\n\tdoi = {10.1007/s10846-019-01026-w},\n\tpages = {85--102},\n\tnumber = {1}\n}\n",
"@conference{\n\t11577_3455198,\n\tauthor = {Fu, Q. and Bellotto, N. and Hu, C. and Yue, S.},\n\ttitle = {Performance of a Visual Fixation Model in an Autonomous Micro Robot Inspired by Drosophila Physiology},\n\tyear = {2018},\n\tpublisher = {Institute of Electrical and Electronics Engineers Inc.},\n\tbooktitle = {2018 IEEE International Conference on Robotics and Biomimetics, ROBIO 2018},\n\tabstract = {In nature, lightweight and low-powered insects are ideal model systems to study motion perception strategies. Understanding the underlying characteristics and functionality of insects' visual systems is not only attractive to neural system modellers but also critical in providing effective solutions to future robotics. This paper presents a novel modelling of dynamic vision system inspired by Drosophila physiology for mimicking fast motion tracking and a closed-loop behavioural response to fixation. The proposed model was realised on the embedded system in an autonomous micro robot which has limited computational resources. A monocular camera was applied as the only motion sensing modality. Systematic experiments including open-loop and closed-loop bio-robotic tests validated the proposed visual fixation model: the robot showed motion tracking and fixation behaviours similarly to insects; the image processing frequency can maintain 25 45Hz. Arena tests also demonstrated a successful following behaviour aroused by fixation in navigation.},\n\tdoi = {10.1109/ROBIO.2018.8665074},\n\tisbn = {978-1-7281-0377-8},\t\n\tpages = {1802--1808}\n}\n",
"@article{Bellotto2013,title = {Qualitative design and implementation of human-robot spatial interactions},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2013},volume = {8239 LNAI},pages = {331-340},author = {Bellotto, N. and Hanheide, M. and Van De Weghe, N.}}",
"@article{Bellotto2017,title = {Volume-based human re-identification with RGB-D cameras},journal = {VISIGRAPP 2017 - Proceedings of the 12th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications},year = {2017},volume = {4},pages = {389-397},author = {Co?ar, S. and Coppola, C. and Bellotto, N.}}",
"@article{Yan_2020,\n\tdoi = {10.1007/s11370-020-00324-9},\n\turl = {https://doi.org/10.1007%2Fs11370-020-00324-9},\n\tyear = 2020,\n\tmonth = {jun},\n\tpublisher = {Springer Science and Business Media {LLC}},\n\tvolume = {13},\n\tnumber = {3},\n\tpages = {403--417},\n\tauthor = {Zhi Yan and Simon Schreiberhuber and Georg Halmetschlager and Tom Duckett and Markus Vincze and Nicola Bellotto},\n\ttitle = {Robot perception of static and dynamic objects with an autonomous floor scrubber},\n\tjournal = {Intelligent Service Robotics}\n}",
"@conference{\n\t11577_3481942,\n\tauthor = {Mghames, Sariah and Castri, Luca and Hanheide, Marc and Bellotto, Nicola},\n\ttitle = {Qualitative Prediction of Multi-Agent Spatial Interactions},\n\tyear = {2023},\n\tbooktitle = {Proceedings of the IEEE International Conference on Robot and Human Interactive Communication (RO-MAN)}\n}\n",
"@article{Bellotto2017,title = {HMM-based activity recognition with a ceiling RGB-D camera},journal = {ICPRAM 2017 - Proceedings of the 6th International Conference on Pattern Recognition Applications and Methods},year = {2017},volume = {2017-January},pages = {567-574},author = {Liciotti, D. and Frontoni, E. and Zingaretti, P. and Bellotto, N. and Duckett, T.}}",
"@article{Bellotto2017,title = {ENRICHME integration of ambient intelligence and robotics for AAL},journal = {AAAI Spring Symposium - Technical Report},year = {2017},volume = {SS-17-01 - SS-17-08},pages = {657-664},author = {Bellotto, N. and Fernandez-Carmona, M. and Cosar, S.}}",
" @article{Castri_2024, title={CAnDOIT: Causal Discovery with Observational and Interventional Data from Time Series}, volume={6}, ISSN={2640-4567}, url={http://dx.doi.org/10.1002/aisy.202400181}, DOI={10.1002/aisy.202400181}, number={12}, journal={Advanced Intelligent Systems}, publisher={Wiley}, author={Castri, Luca and Mghames, Sariah and Hanheide, Marc and Bellotto, Nicola}, year={2024}, month=nov }\n",
"@article{Bellotto2008,title = {Multimodal perception and recognition of humans with a mobile service robot},journal = {2008 IEEE International Conference on Robotics and Biomimetics, ROBIO 2008},year = {2008},pages = {401-406},author = {Bellotto, N. and Hu, H.}}",
"@article{Bellotto2013,title = {Integrating mobile robotics and vision with undergraduate computer science},journal = {IEEE Transactions on Education},year = {2013},volume = {56},number = {1},pages = {48-53},author = {Cielniak, G. and Bellotto, N. and Duckett, T.}}",
"@conference{\n\t11577_3455203,\n\tauthor = {Mohtasib, A and Ghalamzan, Ea and Bellotto, N and Cuayahuitl, H},\n\ttitle = {Neural Task Success Classifiers for Robotic Manipulation from Few Real Demonstrations},\n\tyear = {2021},\n\tpublisher = {IEEE},\n\tvolume = {2021-July},\n\tbooktitle = {Proceedings of International Joint Conference on Neural Networks (IJCNN)},\n\tabstract = {Robots learning a new manipulation task from a small amount of demonstrations are increasingly demanded in different workspaces. A classifier model assessing the quality of actions can predict the successful completion of a task, which can be used by intelligent agents for action-selection. This paper presents a novel classifier that learns to classify task completion only from a few demonstrations. We carry out a comprehensive comparison of different neural classifiers, e.g. fully connected-based, fully convolutional-based, sequence2sequence-based, and domain adaptation-based classification. We also present a new dataset including five robot manipulation tasks, which is publicly available. We compared the performances of our novel classifier and the existing models using our dataset and the MIME dataset. The results suggest domain adaptation and timing-based features improve success prediction. Our novel model, i.e. fully convolutional neural network with domain adaptation and timing features, achieves an average classification accuracy of 97.3% and 95.5% across tasks in both datasets whereas state-of-the-art classifiers without domain adaptation and timing-features only achieve 82.4% and 90.3%, respectively.},\n\tkeywords = {Deep Learning; Reward Learning; Task Success; Task Timing; Domain Adaptation; Robot Skill Learning},\n\tdoi = {10.1109/IJCNN52387.2021.9534141},\n\tisbn = {978-1-6654-3900-8},\t\n\tpages = {1--8}\n}\n",
"@conference{\n\t11577_3475012.4,\n\tauthor = {Mghames, Sariah and Castri, Luca and Hanheide, Marc and Bellotto, Nicola},\n\ttitle = {A Neuro-Symbolic Approach for Enhanced Human Motion Prediction},\n\tyear = {2023},\n\tbooktitle = {Proceedings of the International Joint Conference on Neural Networks (IJCNN)}\n}\n",
"@article{Bellotto2016,title = {Social activity recognition based on probabilistic merging of skeleton features with proximity priors from RGB-D data},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2016},volume = {2016-November},pages = {5055-5061},author = {Coppola, C. and Faria, D.R. and Nunes, U. and Bellotto, N.}}",
"@article{Bellotto2010,title = {A bank of unscented kalman filters for multimodal human perception with mobile service robots},journal = {International Journal of Social Robotics},year = {2010},volume = {2},number = {2},pages = {121-136},author = {Bellotto, N. and Hu, H.}}",
"@article{Bellotto2015,title = {A computational model of human-robot spatial interactions based on a qualitative trajectory calculus},journal = {Robotics},year = {2015},volume = {4},number = {1},pages = {63-102},author = {Dondrup, C. and Bellotto, N. and Hanheide, M. and Eder, K. and Leonards, U.}}",
"@conference{\n\t11577_3498541,\n\tauthor = {Castri, Luca and Mghames, Sariah and Bellotto, Nicola},\n\ttitle = {Efficient Causal Discovery for Robotics Applications},\n\tyear = {2023},\n\tbooktitle = {Proceedings of Italian Conference on Robotics and Intelligent Machines (I-RIM 3D)},\n\tdoi = {10.48550/arXiv.2310.14925}\n}\n",
"@conference{\n\t11577_3515927,\n\tauthor = {Castri, L. and Beraldo, G. and Mghames, S. and Hanheide, M. and Bellotto, N.},\n\ttitle = {Experimental Evaluation of ROS-Causal in Real-World Human-Robot Spatial Interaction Scenarios},\n\tyear = {2024},\n\tbooktitle = {Proceedings of the IEEE International Symposium on Robot and Human Interactive Communication (RO-MAN)},\n\tdoi = {10.1109/RO-MAN60168.2024.10731290}\n}\n",
" @article{Co_ar_2020, title={ENRICHME: Perception and Interaction of an Assistive Robot for the Elderly at Home}, volume={12}, ISSN={1875-4805}, url={http://dx.doi.org/10.1007/S12369-019-00614-Y}, DOI={10.1007/s12369-019-00614-y}, number={3}, journal={International Journal of Social Robotics}, publisher={Springer Science and Business Media LLC}, author={Co\u015far, Serhan and Fernandez-Carmona, Manuel and Agrigoroaie, Roxana and Pages, Jordi and Ferland, Fran\u00e7ois and Zhao, Feng and Yue, Shigang and Bellotto, Nicola and Tapus, Adriana}, year={2020}, month=feb, pages={779\u2013805} }\n",
"@conference{\n\t11577_3469177,\n\tauthor = {Pasti, Francesco and Bellotto, Nicola},\n\ttitle = {Evaluation of Computer Vision-Based Person Detection on Low-Cost Embedded Systems},\n\tyear = {2023},\n\tvolume = {5},\n\tbooktitle = {Proceedings of the 18th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (VISIGRAPP 2023)},\n\turl = {https://www.scitepress.org/Link.aspx?doi=10.5220/0011797400003417},\n\tdoi = {10.5220/0011797400003417},\n\tisbn = {978-989-758-634-7},\t\n\tpages = {282--293}\n}\n",
"@conference{\n\t11577_3515926,\n\tauthor = {Castri, L. and Beraldo, G. and Mghames, S. and Hanheide, M. and Bellotto, N.},\n\ttitle = {ROS-Causal: A ROS-based Causal Analysis Framework for Human-Robot Interaction Applications},\n\tyear = {2024},\n\tbooktitle = {Workshop on Causal Learning for Human-Robot Interaction (Causal-HRI), ACM/IEEE International Conference on Human-Robot Interaction (HRI)}\n}\n",
" @inbook{Broughton_George_2016, title={RFID-Based Object Localisation with a Mobile Robot to Assist the Elderly with Mild Cognitive Impairments}, ISSN={1875-4163}, url={http://dx.doi.org/10.3233/978-1-61499-690-3-366}, DOI={10.3233/978-1-61499-690-3-366}, booktitle={Intelligent Environments 2016}, publisher={IOS Press}, author={Broughton George and Krajník Tomáš and Fernandez-Carmona Manuel and Cielniak Grzegorz and Bellotto Nicola}, year={2016} }\n",
"@article{Bellotto2014,title = {From sequence to trajectory and vice versa: Solving the inverse QTC problem and coping with real-world trajectories},journal = {AAAI Spring Symposium - Technical Report},year = {2014},volume = {SS-14-06},pages = {57-64},author = {Iliopoulos, K. and Bellotto, N. and Mavridis, N.}}",
"@conference{\n\t11577_3529284,\n\tauthor = {Pasti, F. and Ceccon, M. and Dalle Pezze, D. and Paissan, F. and Farella, E. and Susto, G. A. and Bellotto, N.},\n\ttitle = {Latent Distillation for Continual Object Detection at the Edge},\n\tyear = {2024},\n\tbooktitle = {Workshop on Computational Aspects of Deep Learning, European Conference on Computer Vision (ECCV)}\n}\n",
"@article{Liu_2019,\n\tdoi = {10.1109/tnnls.2019.2927274},\n\turl = {https://doi.org/10.1109%2Ftnnls.2019.2927274},\n\tyear = 2019,\n\tpublisher = {Institute of Electrical and Electronics Engineers ({IEEE})},\n\tpages = {1--10},\n\tauthor = {Daqi Liu and Nicola Bellotto and Shigang Yue},\n\ttitle = {Deep Spiking Neural Network for Video-Based Disguise Face Recognition Based on Dynamic Facial Movements},\n\tjournal = {{IEEE} Transactions on Neural Networks and Learning Systems}\n}",
"@article{Bellotto2018,title = {Thermal Camera Based Physiological Monitoring with an Assistive Robot},journal = {Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS},year = {2018},volume = {2018-July},pages = {5010-5013},author = {Cosar, S. and Yan, Z. and Zhao, F. and Lambrou, T. and Yue, S. and Bellotto, N.}}",
"@article{Camara_2021,\n\tdoi = {10.1109/tits.2020.3006768},\n\turl = {https://doi.org/10.1109%2Ftits.2020.3006768},\n\tyear = 2021,\n\tmonth = {oct},\n\tpublisher = {Institute of Electrical and Electronics Engineers ({IEEE})},\n\tvolume = {22},\n\tnumber = {10},\n\tpages = {6131--6151},\n\tauthor = {Fanta Camara and Nicola Bellotto and Serhan Cosar and Dimitris Nathanael and Matthias Althoff and Jingyuan Wu and Johannes Ruenz and Andre Dietrich and Charles W. Fox},\n\ttitle = {Pedestrian Models for Autonomous Driving Part I: Low-Level Models, From Sensing to Tracking},\n\tjournal = {{IEEE} Transactions on Intelligent Transportation Systems}\n}",
"@article{Isakhani_2021,\n\tdoi = {10.1093/jcde/qwab040},\n\turl = {https://doi.org/10.1093%2Fjcde%2Fqwab040},\n\tyear = 2021,\n\tmonth = {aug},\n\tpublisher = {Oxford University Press ({OUP})},\n\tvolume = {8},\n\tnumber = {5},\n\tpages = {1191--1203},\n\tauthor = {Hamid Isakhani and Nicola Bellotto and Qinbing Fu and Shigang Yue},\n\ttitle = {Generative design and fabrication of a locust-inspired gliding wing prototype for micro aerial robots},\n\tjournal = {Journal of Computational Design and Engineering}\n}",
"@article{Bellotto2017,title = {Special Issue on the Seventh European Conference on Mobile Robots (ECMR?15)},journal = {Robotics and Autonomous Systems},year = {2017},volume = {91},pages = {348},author = {Duckett, T. and Tapus, A. and Bellotto, N.}}",
"@article{Schofield_2018,\n\tdoi = {10.1098/rsfs.2018.0027},\n\turl = {https://doi.org/10.1098%2Frsfs.2018.0027},\n\tyear = 2018,\n\tmonth = {jun},\n\tpublisher = {The Royal Society},\n\tvolume = {8},\n\tnumber = {4},\n\tpages = {20180027},\n\tauthor = {Andrew J. Schofield and Iain D. Gilchrist and Marina Bloj and Ales Leonardis and Nicola Bellotto},\n\ttitle = {Understanding images in biological and computer vision},\n\tjournal = {Interface Focus}\n}",
"@article{Bellotto2017,title = {Stress detection using wearable physiological and sociometric sensors},journal = {International Journal of Neural Systems},year = {2017},volume = {27},number = {2},author = {Mozos, O.M. and Sandulescu, V. and Andrews, S. and Ellis, D. and Bellotto, N. and Dobrescu, R. and Ferrandez, J.M.}}",
"@inbook{\n\t11577_3454982,\n\tauthor = {Camara, F. and Cosar, S. and Bellotto, N. and Merat, N. and Fox, C. W.},\n\ttitle = {Continuous game theory pedestrian modelling method for autonomous vehicles},\n\tyear = {2020},\n\tpublisher = {River Publishers},\n\tbooktitle = {Human Factors in Intelligent Vehicles},\n\tabstract = {Autonomous Vehicles (AVs) must interact with other road users. They must understand and adapt to complex pedestrian behaviour, especially during crossings where priority is not clearly defined. This includes feedback effects such as modelling a pedestrian\u2019s likely behaviours resulting from changes in the AVs behaviour. For example, whether a pedestrian will yield if the AV accelerates, and vice versa. To enable such automated interactions, it is necessary for the AV to possess a statistical model of the pedestrian\u2019s responses to its own actions. A previous work demonstrated a proof-ofconcept method to fit parameters to a simplified model based on data from a highly artificial discrete laboratory task with human subjects. The method was based on LIDAR-based person tracking, game theory, and Gaussian process analysis. The present study extends this method to enable analysis of more realistic continuous human experimental data. It shows for the first time how game-theoretic predictive parameters can be fit into pedestrians natural and continuous motion during road-crossings, and how predictions can be made about their interactions with AV controllers in similar real-world settings.},\n\tpages = {1--20}\n}\n",
"@article{\n\t11577_3455194.4,\n\tauthor = {Cosar, Serhan and Fernandez-Carmona, Manuel and Agrigoroaie, Roxana and Pages, Jordi and Ferland, Francois and Zhao, Feng and Yue, Shigang and Bellotto, Nicola and Tapus, Adriana},\n\ttitle = {ENRICHME: Perception and Interaction of an Assistive Robot for the Elderly at Home},\n\tyear = {2020},\n\tpublisher = {SPRINGER},\n\tjournal = {INTERNATIONAL JOURNAL OF SOCIAL ROBOTICS},\n\tvolume = {12},\n\tabstract = {Recent technological advances enabled modern robots to become part of our daily life. In particular, assistive robotics emerged as an exciting research topic that can provide solutions to improve the quality of life of elderly and vulnerable people. This paper introduces the robotic platform developed in the ENRICHME project, with particular focus on its innovative perception and interaction capabilities. The project's main goal is to enrich the day-to-day experience of elderly people at home with technologies that enable health monitoring, complementary care, and social support. The paper presents several modules created to provide cognitive stimulation services for elderly users with mild cognitive impairments. The ENRICHME robot was tested in three pilot sites around Europe (Poland, Greece, and UK) and proven to be an effective assistant for the elderly at home.},\n\tkeywords = {Assistive robotics; Robot perception; Human-robot interaction},\n\tdoi = {10.1007/s12369-019-00614-y},\n\tpages = {779--805},\n\tnumber = {3}\n}\n",
"@conference{\n\t11577_3549114,\n\tauthor = {Stracca, E. and Rudenko, A. and Palmieri, L. and Salaris, P. and Castri, L. and Mazzi, N. and Rakcevic, V. and Vaskevicius, N. and Linder, T. and Bellotto, N. and Schreiter, T. and Zhu, Y. and Castellano-Quero, M. and Napolitano, O. and Stefanini, E. and Heuer, L. and Magnusson, M. and Swikir, A. and Lilienthal, A. J.},\n\ttitle = {DARKO-Nav: Hierarchical Risk- and Context-aware Robot Navigation in Complex Intralogistic Environments},\n\tyear = {2025},\n\tbooktitle = {European Robotics Forum 2025}\n}\n",
"@article{Bellotto2015,title = {QTC\\<inf\\>3D\\</inf\\>: Extending the qualitative trajectory calculus to three dimensions},journal = {Information Sciences},year = {2015},volume = {322},pages = {20-30},author = {Mavridis, N. and Bellotto, N. and Iliopoulos, K. and Van De Weghe, N.}}",
"@article{Bellotto2014,title = {Comparison of different cue-based swarm aggregation strategies},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2014},volume = {8794},pages = {1-8},author = {Arvin, F. and Turgut, A.E. and Bellotto, N. and Yue, S.}}",
"@article{Bellotto2012,title = {Analysis of human-robot spatial behaviour applying a qualitative trajectory calculus},journal = {Proceedings - IEEE International Workshop on Robot and Human Interactive Communication},year = {2012},pages = {689-694},author = {Hanheide, M. and Peters, A. and Bellotto, N.}}",
"@article{\n\t11577_3515923,\n\tauthor = {Hu, C. and Arvin, F. and Bellotto, N. and Yue, S. and Li, H.},\n\ttitle = {Editorial: Swarm neuro-robots with the bio-inspired environmental perception},\n\tyear = {2024},\n\tpublisher = {FRONTIERS MEDIA SA},\n\tjournal = {FRONTIERS IN NEUROROBOTICS},\n\tvolume = {18},\n\tkeywords = {bio-inspired; environmental perception; neurorobotic; real-world deployment; swarm},\n\tdoi = {10.3389/fnbot.2024.1386178}\n}\n",
"@article{Bellotto2014,title = {Cue-based aggregation with a mobile robot swarm: A novel fuzzy-based method},journal = {Adaptive Behavior},year = {2014},volume = {22},number = {3},pages = {189-206},author = {Arvin, F. and Turgut, A.E. and Bazyari, F. and Arikan, K.B. and Bellotto, N. and Yue, S.}}",
"@article{Bellotto2016,title = {On-line inference comparison with Markov logic network engines for activity recognition in AAL environments},journal = {Proceedings - 12th International Conference on Intelligent Environments, IE 2016},year = {2016},pages = {136-143},author = {Fernandez-Carmona, M. and Bellotto, N.}}",
"@article{Bellotto2014,title = {Social distance augmented qualitative trajectory calculus for Human-Robot Spatial Interaction},journal = {IEEE RO-MAN 2014 - 23rd IEEE International Symposium on Robot and Human Interactive Communication: Human-Robot Co-Existence: Adaptive Interfaces and Systems for Daily Life, Therapy, Assistance and Socially Engaging Interactions},year = {2014},pages = {519-524},author = {Dondrup, C. and Bellotto, N. and Hanheide, M.}}",
"@article{Bellotto2016,title = {The EnrichMe project: A robotic solution for independence and active aging of elderly people with MCI},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2016},volume = {9758},pages = {326-334},author = {Salatino, C. and Gower, V. and Ghrissi, M. and Tapus, A. and Wieczorowska-Tobis, K. and Suwalska, A. and Barattini, P. and Rosso, R. and Munaro, G. and Bellotto, N. and van den Heuvel, H.}}",
"@article{Bellotto2008,title = {Appearance-based localization for mobile robots using digital zoom and visual compass},journal = {Robotics and Autonomous Systems},year = {2008},volume = {56},number = {2},pages = {143-156},author = {Bellotto, N. and Burn, K. and Fletcher, E. and Wermter, S.}}",
"@article{Bellotto2015,title = {Stress detection using wearable physiological sensors},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2015},volume = {9107},pages = {526-532},author = {Sandulescu, V. and Andrews, S. and Ellis, D. and Bellotto, N. and Mozos, O.M.}}",
"@article{\n\t11577_3455200,\n\tauthor = {Zhao, J. and Wang, H. and Bellotto, N. and Hu, C. and Peng, J. and Yue, S.},\n\ttitle = {Enhancing LGMD's Looming Selectivity for UAV With Spatial-Temporal Distributed Presynaptic Connections},\n\tyear = {2023},\n\tpublisher = {IEEE-INST ELECTRICAL ELECTRONICS ENGINEERS INC},\n\tjournal = {IEEE TRANSACTIONS ON NEURAL NETWORKS AND LEARNING SYSTEMS},\n\tvolume = {34},\n\tabstract = {Collision detection is one of the most challenging tasks for unmanned aerial vehicles (UAVs). This is especially true for small or micro-UAVs due to their limited computational power. In nature, flying insects with compact and simple visual systems demonstrate their remarkable ability to navigate and avoid collision in complex environments. A good example of this is provided by locusts. They can avoid collisions in a dense swarm through the activity of a motion-based visual neuron called the Lobula giant movement detector (LGMD). The defining feature of the LGMD neuron is its preference for looming. As a flying insect's visual neuron, LGMD is considered to be an ideal basis for building UAV's collision detecting system. However, existing LGMD models cannot distinguish looming clearly from other visual cues, such as complex background movements caused by UAV agile flights. To address this issue, we proposed a new model implementing distributed spatial-temporal synaptic interactions, which is inspired by recent findings in locusts' synaptic morphology. We first introduced the locally distributed excitation to enhance the excitation caused by visual motion with preferred velocities. Then, radially extending temporal latency for inhibition is incorporated to compete with the distributed excitation and selectively suppress the nonpreferred visual motions. This spatial-temporal competition between excitation and inhibition in our model is, therefore, tuned to preferred image angular velocity representing looming rather than background movements with these distributed synaptic interactions. Systematic experiments have been conducted to verify the performance of the proposed model for UAV agile flights. The results have demonstrated that this new model enhances the looming selectivity in complex flying scenes considerably and has the potential to be implemented on embedded collision detection systems for small or micro-UAVs.},\n\tkeywords = {Visualization; Collision avoidance; Neurons; Computational modeling; Biological system modeling; Feature extraction; Unmanned aerial vehicles; Collision detection; distributed presynaptic connection-based Lobula giant movement detector (D-LGMD); dynamic complex visual scene; presynaptic neural network; unmanned aerial vehicles (UAVs)},\n\tdoi = {10.1109/TNNLS.2021.3106946},\n\tpages = {2539--2553},\n\tnumber = {5}\n}\n",
"@article{Bellotto2007,title = {Multisensor data fusion for joint people tracking and identification with a service robot},journal = {2007 IEEE International Conference on Robotics and Biomimetics, ROBIO},year = {2007},pages = {1494-1499},author = {Bellotto, N. and Hu, O.}}",
"@article{Bellotto2008,title = {Lux - An interactive receptionist robot for university open days},journal = {IEEE/ASME International Conference on Advanced Intelligent Mechatronics, AIM},year = {2008},pages = {1355-1360},author = {Bellotto, N. and Rowland, S. and Hu, O.}}",
"@article{Bellotto2017,title = {Automatic detection of human interactions from RGB-D data for social activity classification},journal = {RO-MAN 2017 - 26th IEEE International Symposium on Robot and Human Interactive Communication},year = {2017},volume = {2017-January},pages = {871-876},author = {Coppola, C. and Cosar, S. and Faria, D.R. and Bellotto, N.}}",
"@article{Bellotto2007,title = {People tracking with a mobile robot: A comparison of Kalman and particle filters},journal = {Proceedings of the 13th IASTED International Conference on Robotics and Applications, RA 2007 and Proceedings of the IASTED International Conference on Telematics},year = {2007},pages = {388-393},author = {Bellotto, N. and Hu, O.}}",
"@conference{\n\t11577_3482820,\n\tauthor = {Castri, Luca and Mghames, Sariah and Bellotto, Nicola},\n\ttitle = {From Continual Learning to Causal Discovery in Robotics},\n\tyear = {2023},\n\tvolume = {208},\n\tbooktitle = {Proceedings of The First AAAI Bridge Program on Continual Causality},\n\tpages = {85--91}\n}\n",
"@article{Bellotto2017,title = {Entropy-based abnormal activity detection fusing RGB-D and domotic sensors},journal = {IEEE International Conference on Multisensor Fusion and Integration for Intelligent Systems},year = {2017},volume = {2017-November},pages = {42-48},author = {Fernandez-Carmona, M. and Cosar, S. and Coppola, C. and Bellotto, N.}}",
"@article{Bellotto2009,title = {Multimodal robot perception for robust human tracking and recognition},journal = {Robot Vision: New Research},year = {2009},pages = {161-187},author = {Bellotto, N.}}",
" @inbook{Bellotto_2018, title={Human Detection and Tracking}, ISBN={9783642416101}, url={http://dx.doi.org/10.1007/978-3-642-41610-1_34-1}, DOI={10.1007/978-3-642-41610-1_34-1}, booktitle={Encyclopedia of Robotics}, publisher={Springer Berlin Heidelberg}, author={Bellotto, Nicola and Cosar, Serhan and Yan, Zhi}, year={2018}, pages={1\u201310} }\n",
"@conference{\n\t11577_3465415,\n\tauthor = {Castri, L. and Mghames, S. and Hanheide, M. and Bellotto, N.},\n\ttitle = {Enhancing Causal Discovery from Robot Sensor Data in Dynamic Scenarios},\n\tyear = {2023},\n\tbooktitle = {Proceedings of the Conference on Causal Learning and Reasoning}\n}\n",
"@conference{\n\t11577_3455029,\n\tauthor = {Lock, J. C. and Cielniak, G. and Bellotto, N.},\n\ttitle = {Active object search with a mobile device for people with visual impairments},\n\tyear = {2019},\n\tvolume = {4},\n\tbooktitle = {Proceedings of the 14th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications (VISIGRAPP 2019)},\n\turl = {https://www.scopus.com/inward/record.uri?eid=2-s2.0-85068222941&doi=10.5220/0007582304760485&partnerID=40&md5=053e50bb98ee968d44a5c6adb5d918b5},\n\tdoi = {10.5220/0007582304760485},\n\tpages = {476--485}\n}\n",
"@article{Bellotto2009,title = {A dstributed camera system for multi-resolution surveillance},journal = {2009 3rd ACM/IEEE International Conference on Distributed Smart Cameras, ICDSC 2009},year = {2009},author = {Bellotto, N. and Sommerlade, E. and Benfold, B. and Bibby, C. and Reid, I. and Roth, D. and Fern{\\'a}ndez, C. and Gool, L.V. and Gonz{\\'a}lez, J.}}",
"@article{Bellotto2006,title = {Vision and laser data fusion for tracking people with a mobile robot},journal = {2006 IEEE International Conference on Robotics and Biomimetics, ROBIO 2006},year = {2006},pages = {7-12},author = {Bellotto, N. and Hu, H.}}",
" @article{Carnelos_2025, title={MicroFlow: An Efficient Rust-Based Inference Engine for TinyML}, volume={30}, ISSN={2542-6605}, url={http://dx.doi.org/10.1016/j.iot.2025.101498}, DOI={10.1016/j.iot.2025.101498}, journal={Internet of Things}, publisher={Elsevier BV}, author={Carnelos, Matteo and Pasti, Francesco and Bellotto, Nicola}, year={2025}, month=mar, pages={101498} }\n",
"@conference{\n\t11577_3498540,\n\tauthor = {Lock, J. C. and Tramontano, A. G. and Ghidoni, S. and Bellotto, N.},\n\ttitle = {ActiVis: Mobile object detection and active guidance for people with visual impairments},\n\tyear = {2019},\n\tpublisher = {SPRINGER INTERNATIONAL PUBLISHING AG},\n\tvolume = {11752 LNCS},\n\tbooktitle = {Proceedings of the 20th International Conference on Image Analysis and Processing (ICIAP)},\n\tabstract = {The ActiVis project aims to deliver a mobile system that is able to guide a person with visual impairments towards a target object or area in an unknown indoor environment. For this, it uses new developments in object detection, mobile computing, action generation and human-computer interfacing to interpret the user's surroundings and present effective guidance directions. Our approach to direction generation uses a Partially Observable Markov Decision Process (POMDP) to track the system's state and output the optimal location to be investigated. This system includes an object detector and an audio-based guidance interface to provide a complete active search pipeline. The ActiVis system was evaluated in a set of experiments showing better performance than a simpler unguided case.},\n\tkeywords = {Active vision; Vision impairment; Object detection},\n\tdoi = {10.1007/978-3-030-30645-8_59},\n\tisbn = {978-3-030-30644-1},\t\n\tisbn = {978-3-030-30645-8},\t\n\tpages = {649--660}\n}\n",
"@conference{\n\t11577_3489820,\n\tauthor = {Hurst, B. and Bellotto, N. and Bosilj, P.},\n\ttitle = {An assessment of self-supervised learning for data efficient potato instance segmentation},\n\tyear = {2023},\n\tbooktitle = {Proceedings of Towards Autonomous Robotic Systems (TAROS)},\n\tdoi = {10.1007/978-3-031-43360-3_22}\n}\n",
"@conference{\n\t11577_3455030,\n\tauthor = {Gabriel, A. and Cosar, S. and Bellotto, N. and Baxter, P.},\n\ttitle = {A Dataset for Action Recognition in the Wild},\n\tyear = {2019},\n\tpublisher = {Springer Verlag},\n\tvolume = {11649},\n\tbooktitle = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},\n\tabstract = {The development of autonomous robots for agriculture depends on a successful approach to recognize user needs as well as datasets reflecting the characteristics of the domain. Available datasets for 3D Action Recognition generally feature controlled lighting and framing while recording subjects from the front. They mostly reflect good recording conditions and therefore fail to account for the highly variable conditions the robot would have to work with in the field, e.g. when providing in-field logistic support for human fruit pickers as in our scenario. Existing work on Intention Recognition mostly labels plans or actions as intentions, but neither of those fully capture the extend of human intent. In this work, we argue for a holistic view on human Intention Recognition and propose a set of recording conditions, gestures and behaviors that better reflect the environment and conditions an agricultural robot might find itself in. We demonstrate the utility of the dataset by means of evaluating two human detection methods: Bounding boxes and skeleton extraction.},\n\tkeywords = {Action Recognition; Agricultural robotics; Dataset; Human-robot interaction; Intention recognition},\n\tdoi = {10.1007/978-3-030-23807-0_30},\n\tisbn = {978-3-030-23806-3},\t\n\tisbn = {978-3-030-23807-0},\t\n\tpages = {362--374}\n}\n",
"@article{Bellotto2017,title = {A portable navigation system with an adaptive multimodal interface for the blind},journal = {AAAI Spring Symposium - Technical Report},year = {2017},volume = {SS-17-01 - SS-17-08},pages = {395-400},author = {Lock, J. and Cielniak, G. and Bellotto, N.}}",
"@conference{\n\t11577_3498542,\n\tauthor = {Mghames, S. and Castri, L. and Hanheide, M. and Bellotto, N.},\n\ttitle = {A Neuro-Symbolic Approach for Enhanced Human Motion Prediction},\n\tyear = {2023},\n\tpublisher = {Institute of Electrical and Electronics Engineers Inc.},\n\tvolume = {2023-},\n\tbooktitle = {Proceedings of the International Joint Conference on Neural Networks},\n\tabstract = {Reasoning on the context of human beings is crucial for many real-world applications especially for those deploying autonomous systems (e.g. robots). In this paper, we present a new approach for context reasoning to further advance the field of human motion prediction. We therefore propose a neuro-symbolic approach for human motion prediction (NeuroSyM), which weights differently the interactions in the neighbourhood by leveraging an intuitive technique for spatial representation called Qualitative Trajectory Calculus (QTC). The proposed approach is experimentally tested on medium and long term time horizons using two architectures from the state of art, one of which is a baseline for human motion prediction and the other is a baseline for generic multivariate time-series prediction. Six datasets of challenging crowded scenarios, collected from both fixed and mobile cameras, were used for testing. Experimental results show that the NeuroSyM approach outperforms in most cases the baseline architectures in terms of prediction accuracy.},\n\tdoi = {10.1109/IJCNN54540.2023.10191970},\n\tisbn = {978-1-6654-8867-9},\t\n\tpages = {1--8}\n}\n",
"@article{\n\t11577_3454981,\n\tauthor = {Coppola, C. and Cosar, S. and Faria, D. R. and Bellotto, N.},\n\ttitle = {Social Activity Recognition on Continuous RGB-D Video Sequences},\n\tyear = {2020},\n\tjournal = {INTERNATIONAL JOURNAL OF SOCIAL ROBOTICS},\n\tvolume = {12},\n\turl = {https://www.scopus.com/inward/record.uri?eid=2-s2.0-85065185036&doi=10.1007/s12369-019-00541-y&partnerID=40&md5=232dcfd3074f5a713c6b30bcaa4effff},\n\tdoi = {10.1007/s12369-019-00541-y},\n\tpages = {201--215},\n\tnumber = {1}\n}\n",
"@article{Bellotto2012,title = {Cognitive visual tracking and camera control},journal = {Computer Vision and Image Understanding},year = {2012},volume = {116},number = {3},pages = {457-471},author = {Bellotto, N. and Benfold, B. and Harland, H. and Nagel, H.-H. and Pirlo, N. and Reid, I. and Sommerlade, E. and Zhao, C.}}",
"@conference{\n\t11577_3549116,\n\tauthor = {Rudenko, A. and Zhu, Y. and Rodrigues de Almeida, T. and Schreiter, T. and Castri, L. and Bellotto, N. and Linder, T. and Vaskevicius, N. and Palmieri, L. and Magnusson, M. and Lilienthal, A. J.},\n\ttitle = {Hierarchical System to Predict Human Motion and Intentions for Efficient and Safe Human-Robot Interaction in Industrial Environments},\n\tyear = {2025},\n\tbooktitle = {German Robotics Conference}\n}\n",
"@article{Bellotto2012,title = {Robot control based on qualitative representation of human trajectories},journal = {AAAI Spring Symposium - Technical Report},year = {2012},volume = {SS-12-02},pages = {2-6},author = {Bellotto, N.}}",
"@article{Bellotto2007,title = {People tracking and identification with a mobile robot},journal = {Proceedings of the 2007 IEEE International Conference on Mechatronics and Automation, ICMA 2007},year = {2007},pages = {3565-3570},author = {Bellotto, N. and Hu, O.}}",
"@conference{\n\t11577_3455195,\n\tauthor = {Lock, J. C. and Gilchrist, I. D. and Cielniak, G. and Bellotto, N.},\n\ttitle = {Bone-conduction audio interface to guide people with visual impairments},\n\tyear = {2019},\n\tpublisher = {Springer},\n\tvolume = {1122},\n\tbooktitle = {Communications in Computer and Information Science},\n\tabstract = {The ActiVis project\u2019s aim is to build a mobile guidance aid to help people with limited vision find objects in an unknown environment. This system uses bone-conduction headphones to transmit audio signals to the user and requires an effective non-visual interface. To this end, we propose a new audio-based interface that uses a spatialised signal to convey a target\u2019s position on the horizontal plane. The vertical position on the median plan is given by adjusting the tone\u2019s pitch to overcome the audio localisation limitations of bone-conduction headphones. This interface is validated through a set of experiments with blindfolded and visually impaired participants.},\n\tkeywords = {Bone-conduction; Human-machine interface; Spatialised sound; Varying pitch; Vision impairment},\n\tdoi = {10.1007/978-981-15-1301-5_43},\n\tisbn = {978-981-15-1300-8},\t\n\tisbn = {978-981-15-1301-5},\t\n\tpages = {542--553}\n}\n",
" @article{Lock_2020, title={Experimental Analysis of a Spatialised Audio Interface for People with Visual Impairments}, volume={13}, ISSN={1936-7236}, url={http://dx.doi.org/10.1145/3412325}, DOI={10.1145/3412325}, number={4}, journal={ACM Transactions on Accessible Computing}, publisher={Association for Computing Machinery (ACM)}, author={Lock, Jacobus C. and Gilchrist, Iain D. and Gilchrist, Iain D. and Cielniak, Grzegorz and Bellotto, Nicola}, year={2020}, month=oct, pages={1\u201321} }\n",
"@article{Bellotto2012,title = {Cognitive active vision for human identification},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2012},pages = {1238-1245},author = {Utsumi, Y. and Sommerlade, E. and Bellotto, N. and Reid, I.}}",
" @article{Kucner_2023, title={Survey of maps of dynamics for mobile robots}, volume={42}, ISSN={1741-3176}, url={http://dx.doi.org/10.1177/02783649231190428}, DOI={10.1177/02783649231190428}, number={11}, journal={The International Journal of Robotics Research}, publisher={SAGE Publications}, author={Kucner, Tomasz Piotr and Magnusson, Martin and Mghames, Sariah and Palmieri, Luigi and Verdoja, Francesco and Swaminathan, Chittaranjan Srinivas and Krajn\u00edk, Tom\u00e1\u0161 and Schaffernicht, Erik and Bellotto, Nicola and Hanheide, Marc and Lilienthal, Achim J}, year={2023}, month=aug, pages={977\u20131006} }\n",
"@conference{\n\t11577_3455196,\n\tauthor = {Yan, Z and Sun, L and Ducketi, T and Bellotto, N},\n\ttitle = {Multisensor Online Transfer Learning for 3D LiDAR-based Human Detection with a Mobile Robot},\n\tyear = {2018},\n\tpublisher = {IEEE},\n\tbooktitle = {Proceedings of the IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},\n\tabstract = {Human detection and tracking is an essential task for service robots, where the combined use of multiple sensors has potential advantages that are yet to be fully exploited. In this paper, we introduce a framework allowing a robot to learn a new 3D LiDAR-based human classifier from other sensors over time, taking advantage of a multisensor tracking system. The main innovation is the use of different detectors for existing sensors (i.e. RGB-D camera, 2D LiDAR) to train, online, a new 3D LiDAR-based human classifier based on a new \"trajectory probability\". Our framework uses this probability to check whether new detection belongs to a human trajectory, estimated by different sensors and/or detectors, and to learn a human classifier in a semi-supervised fashion. The framework has been implemented and tested on a real-world dataset collected by a mobile robot. We present experiments illustrating that our system is able to effectively learn from different sensors and from the environment, and that the performance of the 3D LiDAR-based human classification improves with the number of sensors/detectors used.},\n\tpages = {7635--7640}\n}\n",
"@conference{\n\t11577_3471199,\n\tauthor = {Ghidoni, Stefano and Terreran, Matteo and Evangelista, Daniele and Menegatti, Emanuele and Eitzinger, Christian and Villagrossi, Enrico and Pedrocchi, Nicola and Castaman, Nicola and Malecha, Marcin and Mghames, Sariah and Castri, Luca and Hanheide, Marc and Bellotto, Nicola},\n\ttitle = {From Human Perception and Action Recognition to Causal Understanding of Human-Robot Interaction in Industrial Environments},\n\tyear = {2022},\n\tbooktitle = {Workshop AI per l'industria}\n}\n"
]
},
"pbaxter": {
"sys_id": "4e5d4601-928f-429f-a1ea-4e39a555a968",
"personId": "4e5d4601-928f-429f-a1ea-4e39a555a968",
"prefixHonorific": "Dr",
"familiarName": "Paul",
"firstName": "Paul",
"middleName": "",
"surname": "Baxter",
"orcid": "0000-0002-7299-9234",
"telephone": "01522837962",
"staffEmailAddress": "pbaxter@lincoln.ac.uk",
"samAccount": "pbaxter",
"jobTitle": "Senior Lecturer in Computer Science (Autonomous Systems)",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Engineering & Physical Sciences",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Baxter_2017,\n\tdoi = {10.1371/journal.pone.0178126},\n\turl = {https://doi.org/10.1371%2Fjournal.pone.0178126},\n\tyear = 2017,\n\tmonth = {may},\n\tpublisher = {Public Library of Science ({PLoS})},\n\tvolume = {12},\n\tnumber = {5},\n\tpages = {e0178126},\n\tauthor = {Paul Baxter and Emily Ashurst and Robin Read and James Kennedy and Tony Belpaeme},\n\teditor = {Natalia Reich-Stiebert},\n\ttitle = {Robot education peers in a situated primary school study: Personalisation promotes child learning},\n\tjournal = {{PLOS} {ONE}}\n}",
"@article{Wang_2021,\n\tdoi = {10.1016/j.neunet.2020.12.008},\n\turl = {https://doi.org/10.1016%2Fj.neunet.2020.12.008},\n\tyear = 2021,\n\tmonth = {apr},\n\tpublisher = {Elsevier {BV}},\n\tvolume = {136},\n\tpages = {180--193},\n\tauthor = {Huatian Wang and Qinbing Fu and Hongxin Wang and Paul Baxter and Jigen Peng and Shigang Yue},\n\ttitle = {A bioinspired angular velocity decoding neural network model for visually guided flights},\n\tjournal = {Neural Networks}\n}",
"@inproceedings{Senft_2017,doi = {10.1145/3029798.3038385},url = {https://doi.org/10.1145%2F3029798.3038385},year = 2017,publisher = {{ACM} Press},author = {Emmanuel Senft and S{\\'{e}}verin Lemaignan and Paul E. Baxter and Tony Belpaeme},title = {Leveraging Human Inputs in Interactive Machine Learning for Human Robot Interaction},booktitle = {Proceedings of the Companion of the 2017 {ACM}/{IEEE} International Conference on Human-Robot Interaction - {HRI} {\\textquotesingle}17}}",
"@inproceedings{Baxter_2012,doi = {10.1145/2157689.2157707},url = {https://doi.org/10.1145%2F2157689.2157707},year = 2012,publisher = {{ACM} Press},author = {Paul Baxter and Rachel Wood and Tony Belpaeme},title = {A touchscreen-based {\\textquotesingle}sandtray{\\textquotesingle} to facilitate, mediate and contextualise human-robot social interaction},booktitle = {Proceedings of the seventh annual {ACM}/{IEEE} international conference on Human-Robot Interaction - {HRI} {\\textquotesingle}12}}",
"@inproceedings{Baxter_2013,doi = {10.1109/hri.2013.6483509},url = {https://doi.org/10.1109%2Fhri.2013.6483509},year = 2013,month = {mar},publisher = {{IEEE}},author = {Paul Baxter and James Kennedy and Tony Belpaeme and Rachel Wood and Ilaria Baroni and Marco Nalin},title = {Emergence of turn-taking in unstructured child-robot social interactions},booktitle = {2013 8th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
" @article{Baxter_2025, title={Multi-Modal Social Robot Behavioural Alignment and Learning Outcomes in Mediated Child\u2013Robot Interactions}, volume={10}, ISSN={2313-7673}, url={http://dx.doi.org/10.3390/biomimetics10010050}, DOI={10.3390/biomimetics10010050}, number={1}, journal={Biomimetics}, publisher={MDPI AG}, author={Baxter, Paul}, year={2025}, month=jan, pages={50} }\n",
"@article{Senft_2017,doi = {10.1016/j.patrec.2017.03.015},url = {https://doi.org/10.1016%2Fj.patrec.2017.03.015},year = 2017,month = {nov},publisher = {Elsevier {BV}},volume = {99},pages = {77--86},author = {Emmanuel Senft and Paul Baxter and James Kennedy and S{\\'{e}}verin Lemaignan and Tony Belpaeme},title = {Supervised autonomy for online learning in human-robot interaction},journal = {Pattern Recognition Letters}}",
"@incollection{Kennedy_2015,doi = {10.1007/978-3-319-25554-5_33},url = {https://doi.org/10.1007%2F978-3-319-25554-5_33},year = 2015,publisher = {Springer International Publishing},pages = {327--336},author = {James Kennedy and Paul Baxter and Emmanuel Senft and Tony Belpaeme},title = {Higher Nonverbal Immediacy Leads to Greater Learning Gains in Child-Robot Tutoring Interactions},booktitle = {Social Robotics}}",
"@inproceedings{Kennedy_2016,doi = {10.1109/hri.2016.7451801},url = {https://doi.org/10.1109%2Fhri.2016.7451801},year = 2016,month = {mar},publisher = {{IEEE}},author = {James Kennedy and Paul Baxter and Emmanuel Senft and Tony Belpaeme},title = {Heart vs hard drive: Children learn more from a human tutor than a social robot},booktitle = {2016 11th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
"@inproceedings{de_Greeff_2014,doi = {10.1145/2559636.2559804},url = {https://doi.org/10.1145%2F2559636.2559804},year = 2014,publisher = {{ACM} Press},author = {Joachim de Greeff and Mark A. Neerincx and Tony Belpaeme and Olivier Blanson Henkemans and Aafke Fraaije and Lara Solms and Noel Wigdor and Bert Bierman and Joris B. Janssen and Rosemarijn Looije and Paul Baxter},title = {Child-robot interaction in the wild},booktitle = {Proceedings of the 2014 {ACM}/{IEEE} international conference on Human-robot interaction - {HRI} {\\textquotesingle}14}}",
" @inbook{Baxter_2019, title={Engaging Learners in Dialogue Interactivity Development for Mobile Robots}, ISBN={9783030181413}, ISSN={2194-5365}, url={http://dx.doi.org/10.1007/978-3-030-18141-3_12}, DOI={10.1007/978-3-030-18141-3_12}, booktitle={Educational Robotics in the Context of the Maker Movement}, publisher={Springer International Publishing}, author={Baxter, Paul and Del Duchetto, Francesco and Hanheide, Marc}, year={2019}, month=dec, pages={147\u2013160} }\n",
"@inproceedings{Baxter_2018,doi = {10.1145/3173386.3177072},url = {https://doi.org/10.1145%2F3173386.3177072},year = 2018,publisher = {{ACM} Press},author = {Paul Baxter and Grzegorz Cielniak and Marc Hanheide and P{\\aa}l From},title = {Safe Human-Robot Interaction in Agriculture},booktitle = {Companion of the 2018 {ACM}/{IEEE} International Conference on Human-Robot Interaction - {HRI} {\\textquotesingle}18}}",
"@inproceedings{Kennedy_2014,doi = {10.1145/2559636.2559820},url = {https://doi.org/10.1145%2F2559636.2559820},year = 2014,publisher = {{ACM} Press},author = {James Kennedy and Paul Baxter and Tony Belpaeme},title = {Children comply with a robot{\\textquotesingle}s indirect requests},booktitle = {Proceedings of the 2014 {ACM}/{IEEE} international conference on Human-robot interaction - {HRI} {\\textquotesingle}14}}",
"@inproceedings{Senft_2016,doi = {10.1109/hri.2016.7451832},url = {https://doi.org/10.1109%2Fhri.2016.7451832},year = 2016,month = {mar},publisher = {{IEEE}},author = {Emmanuel Senft and Paul Baxter and James Kennedy and Severin Lemaignan and Tony Belpaeme},title = {Providing a robot with learning abilities improves its perception by users},booktitle = {2016 11th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
"@inproceedings{Baxter_2014,doi = {10.1145/2559636.2560026},url = {https://doi.org/10.1145%2F2559636.2560026},year = 2014,publisher = {{ACM} Press},author = {Paul Baxter and J. Gregory Trafton},title = {Cognitive architectures for human-robot interaction},booktitle = {Proceedings of the 2014 {ACM}/{IEEE} international conference on Human-robot interaction - {HRI} {\\textquotesingle}14}}",
"@inproceedings{Baroni_2014,doi = {10.1109/roman.2014.6926373},url = {https://doi.org/10.1109%2Froman.2014.6926373},year = 2014,month = {aug},publisher = {{IEEE}},author = {Ilaria Baroni and Marco Nalin and Paul Baxter and Clara Pozzi and Elettra Oleari and Alberto Sanna and Tony Belpaeme},title = {What a robotic companion could do for a diabetic child},booktitle = {The 23rd {IEEE} International Symposium on Robot and Human Interactive Communication}}",
"@article{Senft_2019,\n\tdoi = {10.1126/scirobotics.aat1186},\n\turl = {https://doi.org/10.1126%2Fscirobotics.aat1186},\n\tyear = 2019,\n\tmonth = {oct},\n\tpublisher = {American Association for the Advancement of Science ({AAAS})},\n\tvolume = {4},\n\tnumber = {35},\n\tauthor = {Emmanuel Senft and S{\\'{e}}verin Lemaignan and Paul E. Baxter and Madeleine Bartlett and Tony Belpaeme},\n\ttitle = {Teaching robots social autonomy from in situ human guidance},\n\tjournal = {Science Robotics}\n}",
"@article{Bartlett_2020,\n\tdoi = {10.3390/info11020081},\n\turl = {https://doi.org/10.3390%2Finfo11020081},\n\tyear = 2020,\n\tmonth = {feb},\n\tpublisher = {{MDPI} {AG}},\n\tvolume = {11},\n\tnumber = {2},\n\tpages = {81},\n\tauthor = {Madeleine E Bartlett and Cristina Costescu and Paul Baxter and Serge Thill},\n\ttitle = {Requirements for Robotic Interpretation of Social Signals {\\textquotedblleft}in the Wild{\\textquotedblright}: Insights from Diagnostic Criteria of Autism Spectrum Disorder},\n\tjournal = {Information}\n}",
"@inproceedings{Baxter_2016,doi = {10.1109/hri.2016.7451865},url = {https://doi.org/10.1109%2Fhri.2016.7451865},year = 2016,month = {mar},publisher = {{IEEE}},author = {Paul Baxter and Severin Lemaignan and J. Gregory Trafton},title = {Cognitive Architectures for social human-robot interaction},booktitle = {2016 11th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
"@inproceedings{Senft_2015,doi = {10.1145/2701973.2702715},url = {https://doi.org/10.1145%2F2701973.2702715},year = 2015,publisher = {{ACM} Press},author = {Emmanuel Senft and Paul Baxter and James Kennedy and Tony Belpaeme},title = {When is it Better to Give Up?},booktitle = {Proceedings of the Tenth Annual {ACM}/{IEEE} International Conference on Human-Robot Interaction Extended Abstracts - {HRI}{\\textquotesingle}15 Extended Abstracts}}",
"@inproceedings{Wills_2016,doi = {10.1109/hri.2016.7451842},url = {https://doi.org/10.1109%2Fhri.2016.7451842},year = 2016,month = {mar},publisher = {{IEEE}},author = {Paul Wills and Paul Baxter and James Kennedy and Emmanuel Senft and Tony Belpaeme},title = {Socially contingent humanoid robot head behaviour results in increased charity donations},booktitle = {2016 11th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
"@article{Baxter_2013,doi = {10.1016/j.bica.2013.07.002},url = {https://doi.org/10.1016%2Fj.bica.2013.07.002},year = 2013,month = {oct},publisher = {Elsevier {BV}},volume = {6},pages = {30--39},author = {Paul E. Baxter and Joachim de Greeff and Tony Belpaeme},title = {Cognitive architecture for human{\\textendash}robot interaction: Towards behavioural alignment},journal = {Biologically Inspired Cognitive Architectures}}",
"@inproceedings{Baxter_2016,doi = {10.1109/hri.2016.7451777},url = {https://doi.org/10.1109%2Fhri.2016.7451777},year = 2016,month = {mar},publisher = {{IEEE}},author = {Paul Baxter and James Kennedy and Emmanuel Senft and Severin Lemaignan and Tony Belpaeme},title = {From characterising three years of {HRI} to methodology and reporting recommendations},booktitle = {2016 11th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
"@inproceedings{Kennedy_2015,doi = {10.1145/2696454.2696457},url = {https://doi.org/10.1145%2F2696454.2696457},year = 2015,publisher = {{ACM} Press},author = {James Kennedy and Paul Baxter and Tony Belpaeme},title = {The Robot Who Tried Too Hard},booktitle = {Proceedings of the Tenth Annual {ACM}/{IEEE} International Conference on Human-Robot Interaction - {HRI} {\\textquotesingle}15}}",
"@inproceedings{Kennedy_2016,doi = {10.1109/hri.2016.7451757},url = {https://doi.org/10.1109%2Fhri.2016.7451757},year = 2016,month = {mar},publisher = {{IEEE}},author = {James Kennedy and Paul Baxter and Emmanuel Senft and Tony Belpaeme},title = {Social robot tutoring for child second language learning},booktitle = {2016 11th {ACM}/{IEEE} International Conference on Human-Robot Interaction ({HRI})}}",
"@inproceedings{Kennedy_2014,doi = {10.1145/2559636.2559650},url = {https://doi.org/10.1145%2F2559636.2559650},year = 2014,publisher = {{ACM} Press},author = {James Kennedy and Joachim de Greeff and Robin Read and Paul Baxter and Tony Belpaeme},title = {The chatbot strikes back},booktitle = {Proceedings of the 2014 {ACM}/{IEEE} international conference on Human-robot interaction - {HRI} {\\textquotesingle}14}}",
"@inproceedings{Kennedy_2015,doi = {10.1145/2701973.2701988},url = {https://doi.org/10.1145%2F2701973.2701988},year = 2015,publisher = {{ACM} Press},author = {James Kennedy and Paul Baxter and Tony Belpaeme},title = {Head Pose Estimation is an Inadequate Replacement for Eye Gaze in Child-Robot Interaction},booktitle = {Proceedings of the Tenth Annual {ACM}/{IEEE} International Conference on Human-Robot Interaction Extended Abstracts - {HRI}{\\textquotesingle}15 Extended Abstracts}}",
"@incollection{Senft_2015,doi = {10.1007/978-3-319-25554-5_60},url = {https://doi.org/10.1007%2F978-3-319-25554-5_60},year = 2015,publisher = {Springer International Publishing},pages = {603--612},author = {Emmanuel Senft and Paul Baxter and James Kennedy and Tony Belpaeme},title = {{SPARC}: Supervised Progressively Autonomous Robot Competencies},booktitle = {Social Robotics}}",
"@article{Kennedy_2014,doi = {10.1007/s12369-014-0277-4},url = {https://doi.org/10.1007%2Fs12369-014-0277-4},year = 2014,month = {dec},publisher = {Springer Nature},volume = {7},number = {2},pages = {293--308},author = {James Kennedy and Paul Baxter and Tony Belpaeme},title = {Comparing Robot Embodiments in a Guided Discovery Learning Interaction with Children},journal = {International Journal of Social Robotics}}",
"@inproceedings{Baxter_2018,doi = {10.1145/3173386.3177070},url = {https://doi.org/10.1145%2F3173386.3177070},year = 2018,publisher = {{ACM} Press},author = {Paul Baxter and Peter Lightbody and Marc Hanheide},title = {Robots Providing Cognitive Assistance in Shared Workspaces},booktitle = {Companion of the 2018 {ACM}/{IEEE} International Conference on Human-Robot Interaction - {HRI} {\\textquotesingle}18}}",
"@article{Kennedy_2017,doi = {10.3389/fict.2017.00006},url = {https://doi.org/10.3389%2Ffict.2017.00006},year = 2017,month = {apr},publisher = {Frontiers Media {SA}},volume = {4},author = {James Kennedy and Paul Baxter and Tony Belpaeme},title = {The Impact of Robot Tutor Nonverbal Social Behavior on Child Learning},journal = {Frontiers in {ICT}}}",
"@inproceedings{Lightbody_2018,doi = {10.1145/3173386.3177045},url = {https://doi.org/10.1145%2F3173386.3177045},year = 2018,publisher = {{ACM} Press},author = {Peter Lightbody and Paul Baxter and Marc Hanheide},title = {Studying Table-Top Manipulation Tasks},booktitle = {Companion of the 2018 {ACM}/{IEEE} International Conference on Human-Robot Interaction - {HRI} {\\textquotesingle}18}}"
]
},
"gcielniak": {
"sys_id": "e69a17de-0ef1-4771-8004-646967ea1ac9",
"personId": "e69a17de-0ef1-4771-8004-646967ea1ac9",
"prefixHonorific": "Prof",
"familiarName": "Grzegorz",
"firstName": "Grzegorz",
"middleName": "",
"surname": "Cielniak",
"orcid": "0000-0002-6299-8465",
"telephone": "",
"staffEmailAddress": "GCielniak@lincoln.ac.uk",
"samAccount": "gcielniak",
"jobTitle": "Professor of Robotics",
"jobFamily": "AC",
"jobFamilyDescription": "Academic",
"department": "School of Agri-Food Technology & Manufacturing",
"division": "College of Health and Science",
"mainFlag": "True",
"staffType": "1",
"researchInterests": [],
"bib": [
"@article{Barnes_2010,doi = {10.1016/j.jfoodeng.2010.01.010},url = {https://doi.org/10.1016%2Fj.jfoodeng.2010.01.010},year = 2010,month = {jun},publisher = {Elsevier {BV}},volume = {98},number = {3},pages = {339--346},author = {Michael Barnes and Tom Duckett and Grzegorz Cielniak and Graeme Stroud and Glyn Harper},title = {Visual detection of blemishes in potatoes using minimalist boosted classifiers},journal = {Journal of Food Engineering}}",
"@article{Cielniak2020,title = {L*a*b*Fruits: A rapid and robust outdoor fruit detection system combining bio-inspired features with one-stage deep learning networks},journal = {Sensors (Switzerland)},year = {2020},volume = {20},number = {1},author = {Kirk, R. and Cielniak, G. and Mangan, M.}}",
"@article{Cielniak2023,title = {Vision-based Monitoring of the Short-term Dynamic Behaviour of Plants for Automated Phenotyping},journal = {Proceedings - 2023 IEEE/CVF International Conference on Computer Vision Workshops, ICCVW 2023},year = {2023},pages = {624-633},author = {Wagner, N. and Cielniak, G.}}",
"@article{Cielniak2019,title = {Model-Based 3D Point Cloud Segmentation for Automated Selective Broccoli Harvesting},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2019},volume = {11649 LNAI},pages = {448-459},author = {Montes, H.A. and Cielniak, G. and Duckett, T.}}",
"@article{Cielniak2023,title = {Towards Safe Robotic Agricultural Applications: Safe Navigation System Design for a Robotic Grass-Mowing Application through the Risk Management Method},journal = {Robotics},year = {2023},volume = {12},number = {3},author = {Mayoral Ba{\\~n}os, J.C. and From, P.J. and Cielniak, G.}}",
"@article{Bennewitz_2005,doi = {10.1177/0278364904048962},url = {https://doi.org/10.1177%2F0278364904048962},year = 2005,month = {jan},publisher = {{SAGE} Publications},volume = {24},number = {1},pages = {31--48},author = {Maren Bennewitz and Wolfram Burgard and Grzegorz Cielniak and Sebastian Thrun},title = {Learning Motion Patterns of People for Compliant Robot Motion},journal = {The International Journal of Robotics Research}}",
"@article{Fentanes_2018,\n\tdoi = {10.1109/lra.2018.2849567},\n\turl = {https://doi.org/10.1109%2Flra.2018.2849567},\n\tyear = 2018,\n\tmonth = {oct},\n\tpublisher = {Institute of Electrical and Electronics Engineers ({IEEE})},\n\tvolume = {3},\n\tnumber = {4},\n\tpages = {3066--3072},\n\tauthor = {Jaime Pulido Fentanes and Iain Gould and Tom Duckett and Simon Pearson and Grzegorz Cielniak},\n\ttitle = {3-D Soil Compaction Mapping Through Kriging-Based Exploration With a Mobile Robot},\n\tjournal = {{IEEE} Robotics and Automation Letters}\n}",
"@article{Cielniak2023,title = {An Agricultural Precision Sprayer Deposit Identification System},journal = {IEEE International Conference on Automation Science and Engineering},year = {2023},volume = {2023-August},author = {Rogers, H. and De La Iglesia, B. and Zebin, T. and Cielniak, G. and Magri, B.}}",
"@article{Cielniak2022,title = {Towards Infield Navigation: leveraging simulated data for crop row detection},journal = {IEEE International Conference on Automation Science and Engineering},year = {2022},volume = {2022-August},pages = {1212-1217},author = {De Silva, R. and Cielniak, G. and Gao, J.}}",
"@article{Cielniak2024,title = {Mass Estimation of Soft Fruit via Oscillatory Plant Dynamics},journal = {IEEE International Conference on Automation Science and Engineering},year = {2024},pages = {3278-3283},author = {Wagner, N. and Cielniak, G.}}",
"@incollection{Barnes_2010,doi = {10.1007/978-3-642-15910-7_23},url = {https://doi.org/10.1007%2F978-3-642-15910-7_23},year = 2010,publisher = {Springer Berlin Heidelberg},pages = {209--216},author = {Michael Barnes and Grzegorz Cielniak and Tom Duckett},title = {Minimalist {AdaBoost} for Blemish Identification in Potatoes},booktitle = {Computer Vision and Graphics}}",
"@incollection{Gyebi_2017,doi = {10.1007/978-3-319-55553-9_6},url = {https://doi.org/10.1007%2F978-3-319-55553-9_6},year = 2017,publisher = {Springer International Publishing},pages = {73--87},author = {Ernest B. B. Gyebi and Marc Hanheide and Grzegorz Cielniak},title = {The Effectiveness of Integrating Educational Robotic Activities into Higher Education Computer Science Curricula: A Case Study in a Developing Country},booktitle = {Educational Robotics in the Makers Era}}",
"@article{Cielniak2021,title = {Deep Semantic Segmentation of 3D Plant Point Clouds},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {13054 LNAI},pages = {36-45},author = {Heiwolt, K. and Duckett, T. and Cielniak, G.}}",
"@article{Cielniak2024,title = {The ILIAD Safety Stack: Human-Aware Infrastructure-Free Navigation of Industrial Mobile Robots},journal = {IEEE Robotics and Automation Magazine},year = {2024},volume = {31},number = {3},pages = {48-59},author = {Molina, S. and Mannucci, A. and Magnusson, M. and Adolfsson, D. and Andreasson, H. and Hamad, M. and Abdolshah, S. and Chadalavada, R.T. and Palmieri, L. and Linder, T. and Swaminathan, C.S. and Kucner, T.P. and Hanheide, M. and Fernandez-Carmona, M. and Cielniak, G. and Duckett, T. and Pecora, F. and Bokesand, S. and Arras, K.O. and Haddadin, S. and Lilienthal, A.J.}}",
" @article{Bosilj_2019, title={Transfer learning between crop types for semantic segmentation of crops versus weeds in precision agriculture}, volume={37}, ISSN={1556-4967}, url={http://dx.doi.org/10.1002/rob.21869}, DOI={10.1002/rob.21869}, number={1}, journal={Journal of Field Robotics}, publisher={Wiley}, author={Bosilj, Petra and Aptoula, Erchan and Duckett, Tom and Cielniak, Grzegorz}, year={2019}, month=mar, pages={7\u201319} }\n",
"@article{Cielniak2018,title = {Kriging-based robotic exploration for soil moisture mapping using a cosmic-ray sensor},journal = {arXiv},year = {2018},author = {Fentanes, J.P. and Badiee, A. and Duckett, T. and Evans, J. and Pearson, S. and Cielniak, G.}}",
"@inproceedings{Zaganidis_2017,doi = {10.1109/iros.2017.8206262},url = {https://doi.org/10.1109%2Firos.2017.8206262},year = 2017,month = {sep},publisher = {{IEEE}},author = {Anestis Zaganidis and Martin Magnusson and Tom Duckett and Grzegorz Cielniak},title = {Semantic-assisted 3D normal distributions transform for scan registration in environments with limited structure},booktitle = {2017 {IEEE}/{RSJ} International Conference on Intelligent Robots and Systems ({IROS})}}",
"@article{Cielniak_2013,doi = {10.1109/te.2012.2213822},url = {https://doi.org/10.1109%2Fte.2012.2213822},year = 2013,month = {feb},publisher = {Institute of Electrical and Electronics Engineers ({IEEE})},volume = {56},number = {1},pages = {48--53},author = {Grzegorz Cielniak and Nicola Bellotto and Tom Duckett},title = {Integrating Mobile Robotics and Vision With Undergraduate Computer Science},journal = {{IEEE} Transactions on Education}}",
"@article{Cielniak2021,title = {Integration of a Human-aware Risk-based Braking System into an Open-Field Mobile Robot},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2021},volume = {2021-May},pages = {2435-2442},author = {Mayoral, J.C. and Grimstad, L. and From, P.J. and Cielniak, G.}}",
"@article{Cielniak2020,title = {Natural criteria for comparison of pedestrian flow forecasting models},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2020},pages = {11197-11204},author = {Vintr, T. and Yan, Z. and Eyisoy, K. and Kubis, F. and Blaha, J. and Ulrich, J. and Swaminathan, C.S. and Molina, S. and Kucner, T.P. and Magnusson, M. and Cielniak, G. and Faigl, J. and Duckett, T. and Lilienthal, A.J. and Krajnik, T.}}",
" @inbook{James_2024, title={Unsupervised Clustering with\u00a0Geometric Shape Priors for\u00a0Improved Occlusion Handling in\u00a0Plant Stem Phenotyping}, ISBN={9783031720598}, ISSN={1611-3349}, url={http://dx.doi.org/10.1007/978-3-031-72059-8_30}, DOI={10.1007/978-3-031-72059-8_30}, booktitle={Towards Autonomous Robotic Systems}, publisher={Springer Nature Switzerland}, author={James, Katherine Margaret Frances and Cielniak, Grzegorz}, year={2024}, month=dec, pages={355\u2013366} }\n",
"@article{Cielniak2021,title = {Non-destructive Soft Fruit Mass and~Volume Estimation for Phenotyping in~Horticulture},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {12899 LNCS},pages = {223-233},author = {Kirk, R. and Mangan, M. and Cielniak, G.}}",
"@article{Cielniak2021,title = {Adaptive selection of informative path planning strategies via reinforcement learning},journal = {arXiv},year = {2021},author = {Choi, T. and Cielniak, G.}}",
"@article{Cielniak2004,title = {People recognition by mobile robots},journal = {Journal of Intelligent and Fuzzy Systems},year = {2004},volume = {15},number = {1},pages = {21-27},author = {Cielniak, G. and Duckett, T.}}",
"@inproceedings{Feltwell_2015,doi = {10.1145/2793107.2810284},url = {https://doi.org/10.1145%2F2793107.2810284},year = 2015,publisher = {{ACM} Press},author = {Tom Feltwell and Grzegorz Cielniak and Patrick Dickinson and Ben J. Kirman and Shaun Lawson},title = {Dendrogram Visualization as a Game Design Tool},booktitle = {Proceedings of the 2015 Annual Symposium on Computer-Human Interaction in Play - {CHI} {PLAY} {\\textquotesingle}15}}",
"@article{Lock_2020,\tdoi = {10.1145/3412325},\turl = {https://doi.org/10.1145%2F3412325},\tyear = 2020,\tmonth = {oct},\tpublisher = {Association for Computing Machinery ({ACM})},\tvolume = {13},\tnumber = {4},\tpages = {1--21},\tauthor = {Jacobus C. Lock and Iain D. Gilchrist and Iain D. Gilchrist and Grzegorz Cielniak and Nicola Bellotto},\ttitle = {Experimental Analysis of a Spatialised Audio Interface for People with Visual Impairments},\tjournal = {{ACM} Transactions on Accessible Computing}}",
"@article{Cielniak2021,title = {Evaluation of sampling-based optimizing planners for outdoor robot navigation},journal = {arXiv},year = {2021},author = {Atas, F. and Grimstad, L. and Cielniak, G.}}",
"@article{Cielniak2022,title = {Self-supervised Representation Learning for Reliable Robotic Monitoring of Fruit Anomalies},journal = {Proceedings - IEEE International Conference on Robotics and Automation},year = {2022},pages = {2266-2272},author = {Choi, T. and Would, O. and Salazar-Gomez, A. and Cielniak, G.}}",
"@article{Cielniak2021,title = {Using Additional Moderator to Control the Footprint of a COSMOS Rover for Soil Moisture Measurement},journal = {Water Resources Research},year = {2021},volume = {57},number = {6},author = {Badiee, A. and Wallbank, J.R. and Fentanes, J.P. and Trill, E. and Scarlet, P. and Zhu, Y. and Cielniak, G. and Cooper, H. and Blake, J.R. and Evans, J.G. and Zreda, M. and K{\\\"o}hli, M. and Pearson, S.}}",
" @inbook{Bosilj_2019, title={Pattern Spectra from Different Component Trees for Estimating Soil Size Distribution}, ISBN={9783030208677}, ISSN={1611-3349}, url={http://dx.doi.org/10.1007/978-3-030-20867-7_32}, DOI={10.1007/978-3-030-20867-7_32}, booktitle={Mathematical Morphology and Its Applications to Signal and Image Processing}, publisher={Springer International Publishing}, author={Bosilj, Petra and Gould, Iain and Duckett, Tom and Cielniak, Grzegorz}, year={2019}, pages={415\u2013427} }\n",
" @article{Atas_2024, title={CostTrust: A Fast-Exploring, Iteratively Expanding Frontier-Based Kinodynamic Motion Planner}, volume={45}, ISSN={1890-1328}, url={http://dx.doi.org/10.4173/mic.2024.1.2}, DOI={10.4173/mic.2024.1.2}, number={1}, journal={Modeling, Identification and Control: A Norwegian Research Bulletin}, publisher={Norwegian Society of Automatic Control}, author={Atas, Fetullah and Cielniak, Grzegorz and Grimstad, Lars}, year={2024}, pages={15\u201328} }\n",
"@article{Cielniak2023,title = {Benchmark of~Sampling-Based Optimizing Planners for~Outdoor Robot Navigation},journal = {Lecture Notes in Networks and Systems},year = {2023},volume = {577 LNNS},pages = {231-243},author = {Atas, F. and Cielniak, G. and Grimstad, L.}}",
"@article{Cielniak2021,title = {Active Learning for Crop-Weed Discrimination by Image Classification from Convolutional Neural Network?s Feature Pyramid Levels},journal = {Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)},year = {2021},volume = {12899 LNCS},pages = {245-257},author = {Zahidi, U.A. and Cielniak, G.}}",
"@article{Cielniak2018,title = {RASberry: Robotic and autonomous systems: For berry production},journal = {Mechanical Engineering},year = {2018},volume = {140},number = {6},pages = {14-18},author = {From, P.J. and Grimstad, L. and Hanheide, M. and Pearson, S. and Cielniak, G.}}",
" @article{Das_2023, title={A Unified Topological Representation for Robotic Fleets in Agricultural Applications}, url={http://dx.doi.org/10.22541/au.169357512.24867804/v1}, DOI={10.22541/au.169357512.24867804/v1}, publisher={Authorea, Inc.}, author={Das, Gautham and Cielniak, Grzegorz and Heselden, James and Pearson, Simon and Duchetto, Francesco Del and Zhu, Zuyuan and Dichtl, Johann and Hanheide, Marc and Fentanes, Jaime Pulido and Binch, Adam and Hutchinson, Michael and From, Pal}, year={2023}, month=sep }\n",
"@inproceedings{Cielniak,doi = {10.1109/rose.2003.1218704},url = {https://doi.org/10.1109%2Frose.2003.1218704},publisher = {{IEEE}},author = {G. Cielniak and T. Duckett},title = {Person identification by mobile robots in indoor environments},booktitle = {1st International Workshop on Robotic Sensing, 2003. {ROSE}{\\textquotesingle} 03.}}",
"@article{Cielniak2020,title = {Segmentation and detection from organised 3d point clouds: A case study in broccoli head detection},journal = {IEEE Computer Society Conference on Computer Vision and Pattern Recognition Workshops},year = {2020},volume = {2020-June},pages = {285-293},author = {Louedec, J.L. and Montes, H.A. and Duckett, T. and Cielniak, G.}}",
"@article{Cielniak2024,title = {Vision based crop row navigation under varying field conditions in arable fields},journal = {Computers and Electronics in Agriculture},year = {2024},volume = {217},author = {de Silva, R. and Cielniak, G. and Gao, J.}}",
"@incollection{Dayoub_2011,doi = {10.1007/978-3-642-23232-9_47},url = {https://doi.org/10.1007%2F978-3-642-23232-9_47},year = 2011,publisher = {Springer Berlin Heidelberg},pages = {400--401},author = {Feras Dayoub and Grzegorz Cielniak and Tom Duckett},title = {Long-Term Experiment Using an Adaptive Appearance-Based Map for Visual Navigation by Mobile Robots},booktitle = {Towards Autonomous Robotic Systems}}",
"@article{Le_Lou_dec_2021,\tdoi = {10.1016/j.compag.2021.106374},\turl = {https://doi.org/10.1016%2Fj.compag.2021.106374},\tyear = 2021,\tmonth = {nov},\tpublisher = {Elsevier {BV}},\tvolume = {190},\tpages = {106374},\tauthor = {Justin Le Lou\u00ebdec and Grzegorz Cielniak},\ttitle = {3D shape sensing and deep learning-based segmentation of strawberries},\tjournal = {Computers and Electronics in Agriculture}}",
"@incollection{Dayoub_2015,doi = {10.1007/978-3-319-07488-7_26},url = {https://doi.org/10.1007%2F978-3-319-07488-7_26},year = 2015,publisher = {Springer International Publishing},pages = {379--392},author = {Feras Dayoub and Grzegorz Cielniak and Tom Duckett},title = {Eight Weeks of Episodic Visual Navigation Inside a Non-stationary Environment Using Adaptive Spherical Views},booktitle = {Springer Tracts in Advanced Robotics}}",
"@article{Cielniak2022,title = {High-throughput phenotyping for breeding targets?Current status and future directions of strawberry trait automation},journal = {Plants People Planet},year = {2022},volume = {4},number = {5},pages = {432-443},author = {James, K.M.F. and Sargent, D.J. and Whitehouse, A. and Cielniak, G.}}",
"@article{Cielniak2019,title = {Active object search with a mobile device for people with visual impairments},journal = {VISIGRAPP 2019 - Proceedings of the 14th International Joint Conference on Computer Vision, Imaging and Computer Graphics Theory and Applications},year = {2019},volume = {4},pages = {476-485},author = {Lock, J.C. and Cielniak, G. and Bellotto, N.}}",
"@article{Cielniak2020,title = {Real-time detection of broccoli crops in 3D point clouds for autonomous robotic harvesting},journal = {IEEE International Conference on Intelligent Robots and Systems},year = {2020},pages = {10483-10488},author = {Montes, H.A. and Le Louedec, J. and Cielniak, G. and Duckett, T.}}",
"@article{Cielniak2014,title = {Procedural story generation in games},journal = {15th International Conference on Intelligent Games and Simulation, GAME-ON 2014},year = {2014},pages = {97-103},author = {Wagg, K. and Cielniak, G.}}",
"@incollection{Moreno_2014,doi = {10.1007/978-3-662-43645-5_22},url = {https://doi.org/10.1007%2F978-3-662-43645-5_22},year = 2014,publisher = {Springer Berlin Heidelberg},pages = {210--221},author = {Francisco-Angel Moreno and Grzegorz Cielniak and Tom Duckett},title = {Evaluation of Laser Range-Finder Mapping for Agricultural Spraying Vehicles},booktitle = {Towards Autonomous Robotic Systems}}",
"@article{Cielniak2018,title = {Connected attribute morphology for unified vegetation segmentation and classification in precision agriculture},journal = {Computers in Industry},year = {2018},volume = {98},pages = {226-240},author = {Bosilj, P. and Duckett, T. and Cielniak, G.}}",