-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications.html
1104 lines (679 loc) · 70.1 KB
/
publications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html >
<head>
<!-- Site made with Mobirise Website Builder v4.12.2, https://mobirise.com -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Mobirise v4.12.2, mobirise.com">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="assets/images/39130469-128x128-1-128x128.png" type="image/x-icon">
<meta name="description" content="Publications">
<title>Publications</title>
<link rel="stylesheet" href="assets/web/assets/mobirise-icons/mobirise-icons.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="assets/facebook-plugin/style.css">
<link rel="stylesheet" href="assets/tether/tether.min.css">
<link rel="stylesheet" href="assets/socicon/css/styles.css">
<link rel="stylesheet" href="assets/dropdown/css/style.css">
<link rel="stylesheet" href="assets/web/assets/gdpr-plugin/gdpr-styles.css">
<link rel="stylesheet" href="assets/animatecss/animate.min.css">
<link rel="stylesheet" href="assets/theme/css/style.css">
<link rel="preload" as="style" href="assets/mobirise/css/mbr-additional.css"><link rel="stylesheet" href="assets/mobirise/css/mbr-additional.css" type="text/css">
</head>
<body>
<section class="menu cid-rX1F7Pkmy6" once="menu" id="menu1-v">
<nav class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm bg-color transparent">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="menu-logo">
<div class="navbar-brand">
<span class="navbar-logo">
<a href="index.html#home">
<img src="assets/images/vcl-black-bg-logo-348x194.png" alt="" title="" style="height: 4.3rem;">
</a>
</span>
<span class="navbar-caption-wrap"><a class="navbar-caption text-white display-4" href="index.html#home">4D Reconstruction & Tele-Immersion Team<br>Visual Computing Laboratory of ITI/CERTH</a></span>
</div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown nav-right" data-app-modern-menu="true"><li class="nav-item"><a class="nav-link link text-white display-4" href="research.html#research">Research</a></li>
<li class="nav-item"><a class="nav-link link text-white display-4" href="People.html#people">
People</a></li><li class="nav-item"><a class="nav-link link text-white display-4" href="publications.html#publications" aria-expanded="false">
Publications</a></li><li class="nav-item"><a class="nav-link link text-white display-4" href="news.html#News" aria-expanded="false">News</a></li><li class="nav-item dropdown"><a class="nav-link link text-white dropdown-toggle display-4" href="Projects.html#projects" data-toggle="dropdown-submenu" aria-expanded="false">
Projects</a><div class="dropdown-menu"><a class="text-white dropdown-item display-4" href="Projects.html#projects">Active</a><a class="text-white dropdown-item display-4" href="Completed_projects.html#Completed-projects" aria-expanded="false">Completed</a></div></li><li class="nav-item dropdown">
<a class="nav-link link text-white dropdown-toggle display-4" href="https://mobirise.co" data-toggle="dropdown-submenu" aria-expanded="false">
About</a><div class="dropdown-menu"><a class="text-white dropdown-item display-4" href="Mission_and_History.html#Mission-&-History">Mission & History</a><a class="text-white dropdown-item display-4" href="Awards.html#Notable-Awards" aria-expanded="false">Awards</a><a class="text-white dropdown-item display-4" href="Opportunities.html#opportunities" aria-expanded="false">Opportunities</a><a class="text-white dropdown-item display-4" href="Partners.html#partners" aria-expanded="false">Partners</a><a class="text-white dropdown-item display-4" href="Spin_offs.html#D-cube" aria-expanded="false">Spin-offs</a><a class="text-white dropdown-item display-4" href="Equipment.html#Equipment-and-infrastructure" aria-expanded="false">Equipment </a><a class="text-white dropdown-item display-4" href="Visit_VCL.html#visitvcl" aria-expanded="false">Visit VCL</a></div>
</li><li class="nav-item"><a class="nav-link link text-white display-4" href="Contact.html#contact">
Contact</a></li><li class="nav-item"><a class="nav-link link text-white display-4" href="https://twitter.com/VCL_ITI" target="_blank"><span class="socicon socicon-twitter mbr-iconfont mbr-iconfont-btn" style="font-size: 15px; color: rgb(239, 239, 239);"></span></a></li><li class="nav-item"><a class="nav-link link text-white display-4" href="https://www.youtube.com/channel/UCGbbUw3eDArKezM4CteODyw/featured" target="_blank"><span class="socicon socicon-youtube mbr-iconfont mbr-iconfont-btn" style="font-size: 15px; color: rgb(239, 239, 239);"></span></a></li><li class="nav-item"><a class="nav-link link text-white display-4" href="https://github.com/VCL3D" target="_blank"><span class="socicon socicon-github mbr-iconfont mbr-iconfont-btn" style="font-size: 15px;"></span></a></li><li class="nav-item"><a class="nav-link link text-white display-4" href="https://www.linkedin.com/company/visual-computing-lab/" target="_blank"><span class="socicon socicon-linkedin mbr-iconfont mbr-iconfont-btn" style="font-size: 15px; color: rgb(239, 239, 239);"></span></a></li></ul>
</div>
</nav>
</section>
<section class="engine"><a href="https://mobirise.info/a">online site builder</a></section><section class="mbr-section content5 cid-rX1VPLHV53 mbr-parallax-background" id="publications">
<div class="mbr-overlay" style="opacity: 0.4; background-color: rgb(35, 35, 35);">
</div>
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center mbr-bold mbr-white pb-3 mbr-fonts-style display-1">
Publications</h2>
</div>
</div>
</div>
</section>
<section class="counters1 counters cid-rY7Cxhpa81" id="counters1-9a">
<div class="container">
<div class="container pt-4 mt-2">
<div class="media-container-row">
<div class="card p-3 align-center col-12 col-md-6 col-lg-4">
<div class="panel-item p-3">
<div class="card-img pb-3">
<a href="publications.html#header1-9b"><span class="mbr-iconfont mbri-file"></span></a>
</div>
<div class="card-text">
<h3 class="count pt-3 pb-3 mbr-fonts-style display-2">21</h3>
<h4 class="mbr-content-title mbr-bold mbr-fonts-style display-7"><a href="publications.html#header1-9b" class="text-black">Journal Publications</a></h4>
</div>
</div>
</div>
<div class="card p-3 align-center col-12 col-md-6 col-lg-4">
<div class="panel-item p-3">
<div class="card-img pb-3">
<a href="publications.html#header1-9g"><span class="mbr-iconfont mbri-file"></span></a>
</div>
<div class="card-text">
<h3 class="count pt-3 pb-3 mbr-fonts-style display-2">65</h3>
<h4 class="mbr-content-title mbr-bold mbr-fonts-style display-7"><a href="publications.html#header1-9g" class="text-black">Conference Publications</a></h4>
</div>
</div>
</div>
<div class="card p-3 align-center col-12 col-md-6 col-lg-4">
<div class="panel-item p-3">
<div class="card-img pb-3">
<a href="publications.html#header1-9k"><span class="mbr-iconfont mbri-file"></span></a>
</div>
<div class="card-text">
<h3 class="count pt-3 pb-3 mbr-fonts-style display-2">4</h3>
<h4 class="mbr-content-title mbr-bold mbr-fonts-style display-7"><span style="font-weight: normal;"><a href="publications.html#header1-9k" class="text-black">Book Chapters</a></span></h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="header1 cid-rY7DKHtjOg mbr-parallax-background" id="Journals">
<div class="mbr-overlay" style="opacity: 0.6; background-color: rgb(35, 35, 35);">
</div>
<div class="container">
<div class="row justify-content-md-center">
<div class="mbr-white col-md-10">
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-2">Journal Publications</h3>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvDlsR1wc" id="DeepMoCap:-Deep-Optical-Motion-Capture-Using-Multiple-Depth-Sensors-and-Retro-Reflectors">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/deepmocap-deep-optical-motion-capture-using-multiple-depth-sensors-and-retro-reflectors-300x311.png" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">DeepMoCap: Deep Optical Motion Capture Using Multiple Depth Sensors and Retro-Reflectors</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">Anargyros Chatzitofis, Dimitrios Zarpalas, Stefanos Kollias, Petros Daras. MDPI Sensors 2019.</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-DeepMoCap-Deep-Optical-Motion-Capture-Using-Multiple-Depth-Sensors-and-Retro-Reflectors')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-DeepMoCap-Deep-Optical-Motion-Capture-Using-Multiple-Depth-Sensors-and-Retro-Reflectors')">[Abstract]</a> <a href="http://vcl.iti.gr/vclNew/wp-content/uploads/2019/01/DeepMoCap.pdf" target="_blank">[PDF]</a> <a href="https://github.com/tofis/DeepMoCap" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rZkxy67UNo" id="header3-h5">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/deep-learning-on-multi-sensor-data-for-counter-uav-applications-a-systematic-review-642x451.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Deep Learning on Multi Sensor Data for Counter UAV Applications – A Systematic Review</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">S. Samaras, E. Diamantidou, D. Ataloglou, N. Sakellariou, A. Vafeiadis, V. Magoulianitis, A. Lalas, A. Dimou, D. Zarpalas, K. Votis, P. Daras, D. Tzovaras, Sensors, Special Issue: Deep Learning for Multi-Sensor Fusion, 19(22), 4837, 2019. DOI: https://doi.org/10.3390/s19224837</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Deep-Learning-on-Multi-Sensor-Data-for-Counter-UAV-Applications-A-Systematic-Review')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Deep-Learning-on-Multi-Sensor-Data-for-Counter-UAV-Applications-A-Systematic-Review')">[Abstract]</a> <a href="assets/files/Deep_Learning_MultiSensor_Data_Counter_UAV_Applications.pdf" target="_blank">[PDF]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rZkzMmj3ZV" id="header3-h8">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/gamification-concepts-for-leveraging-knowledge-sharing-in-industry-4-642x396.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Gamification Concepts for Leveraging Knowledge Sharing in Industry 4.0</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">M. Tsourma, S. Zikos, G. Albanis, K. C. Apostolakis, E. E. Lithoxoidou, A. Drosou, D. Zarpalas, P. Daras, D. Tzovaras. International Journal of Serious Games, 6(2), 75 - 87, 2019. DOI: https://doi.org/10.17083/ijsg.v6i2.273</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Gamification-Concepts-for-Leveraging-Knowledge-Sharing-in-Industry-4-0')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Gamification-Concepts-for-Leveraging-Knowledge-Sharing-in-Industry-4-0')">[Abstract]</a> <a href="assets/files/Gamification_concepts_leveraging_knowledge_sharing.pdf" target="_blank">[PDF]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rZkEnWNUHR" id="header3-hb">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/hyper-360-towards-a-unified-tool-set-supporting-next-generation-vr-film-and-tv-productions-642x391.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Hyper 360 – Towards a Unified Tool Set Supporting Next Generation VR Film and TV Productions</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">B. Takacs, Z. Vincze, H. Fassold, A. Karakottas, N. Zioulis, D. Zarpalas, P. Daras, Journal of Software Engineering and Applications, 12, 127-148, 2019. DOI: https://doi.org/10.4236/jsea.2019.125009</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Hyper-360-Towards-a-Unified-Tool-Set-Supporting-Next-Generation-VR-Film-and-TV-Productions')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Hyper-360-Towards-a-Unified-Tool-Set-Supporting-Next-Generation-VR-Film-and-TV-Productions')">[Abstract]</a> <a href="assets/files/Hyper360_Towards_Unified_Tool_Set.pdf" target="_blank">[PDF]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="tabs3 cid-rYC8jFJ8I1" id="tabs3-fe">
<div class="container">
</div>
<div class="container-fluid">
<div class="row tabcont">
<ul class="nav nav-tabs pt-3 mt-5" role="tablist">
<li class="nav-item mbr-fonts-style"><a class="nav-link show active display-7" role="tab" data-toggle="tab" href="#tabs3-fe_tab0" aria-selected="true">
2019</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show active display-7" role="tab" data-toggle="tab" href="#tabs3-fe_tab1" aria-selected="true">
2018</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show active display-7" role="tab" data-toggle="tab" href="#tabs3-fe_tab2" aria-selected="true">
older</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="row px-1">
<div class="tab-content">
<div id="tab1" class="tab-pane in active mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>D. Ataloglou, A. Dimou, D. Zarpalas, P. Daras, </strong>"Fast and Precise Hippocampus Segmentation Through Deep Convolutional Neural Network Ensembles and Transfer Learning". Neuroinform, 17(4), 563-582, 2019. DOI: https://doi.org/10.1007/s12021-019-09417-y
<br><br><strong>F. Alvarez, D. Breitgand, D. Griffin, P. Adriani, S. Rizou, N. Zioulis, F. Moscatelli, J. Serrano, M. Keltsch, P. Trakadas, T. Khoa Phan, A. Weit, U. Acar, O. Prieto, F. Iadanza, G. Carrozzo, H. Koumaras, D. Zarpalas, D. Jimenez, </strong>"An Edge-to-Cloud Virtualized Multimedia Service Platform for 5G Networks", IEEE Transactions on Broadcasting, Special issue on 5G for Broadband Multimedia Systems and Broadcasting, 65(2), 369-380, 2019. DOI: https://doi.org/10.1109/TBC.2019.2901400
<br><br><strong>A. Doumanoglou, P. Drakoulis, N. Zioulis, D. Zarpalas, P. Daras, </strong>"Benchmarking Open-Source Static 3D Mesh Codecs for Immersive Media Interactive Live Streaming". IEEE Journal on Emerging and Selected Topics in Circuits and Systems, 9(1), 190-203, 2019. DOI:<strong> </strong>https://doi.org/10.1109/JETCAS.2019.2898768 <br></p>
</div>
</div>
</div>
<div id="tab2" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>A. Triantafyllidis, D. Filos, R. Buys, J. Claes, V. Cornelissen, E. Kouidi, A. Chatzitofis, D. Zarpalas, P. Daras, D. Walsh, C. Woods, K. Moran, N. Maglaveras, I. Chouvarda, </strong>"Computerized decision support for beneficial home-based exercise rehabilitation in patients with cardiovascular disease” Computer Methods and Programs in Biomedicine, Volume 162, Pages 1-10, August 2018
<br><br><strong>A. Doumanoglou, D. Griffin, J. Serrano, N. Zioulis, T.K. Phan, D. Jimenez, D. Zarpalas, F. Alvarez, M. Rio, P. Daras,</strong> "Quality of Experience for 3D Immersive Media Streaming", IEEE Transactions on Broadcasting (2018), Special Issue on Quality of Experience for Advanced Broadcast Service, 64(2), 379-391. DOI: https://doi.org/10.1109/TBC.2018.2823909
<br><br><strong>D. Alexiadis, N. Zioulis, D. Zarpalas, P. Daras, </strong>"Fast deformable model-based human performance capture and FVV using consumer-grade RGB-D sensors", Pattern Recognition (2018), 79, 260-278. DOI: https://doi.org/10.1016/j.patcog.2018.02.013 <strong><br><br>F. Patrona, A. Chatzitofis, D. Zarpalas, P. Daras</strong>, "Motion Analysis: Action Detection, Recognition and Evaluation based on motion capture data", Pattern Recognition, Special Issue on Articulated Motion and Deformable Objects, Volume 76, Pages 612-622, DOI: 10.1016/j.patcog.2017.12.007 April 2018 <br></p>
</div>
</div>
</div>
<div id="tab3" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>D. Alexiadis, A. Chatzitofis, N. Zioulis, O. Zoidi, G. Louizis, D. Zarpalas, P. Daras,</strong> "An integrated platform for live 3D human reconstruction and motion capturing", IEEE Transactions on Circuits and Systems for Video Technology (Volume:PP , Issue: 99)
<br><br><strong>A. Doumanoglou, D. Alexiadis, D. Zarpalas, P. Daras</strong>, "Towards Real-Time and Efficient Compression of Human Time-Varying-Meshes", IEEE Transactions on Circuits and Systems for Video Technology, Vol: 24, Issue: 12, Dec 2014
<br><br><strong>D. Zarpalas, P. Gkontra, P. Daras, N. Maglaveras,</strong> "Accurate and fully Automatic Hippocampus Segmentation using subject-specific 3D Optimal Local Maps into a hybrid Active Contour Model", IEEE Journal of Translational Engineering in Health and Medicine, Vol. 2, June 2014, doi: 10.1109/JTEHM.2014.2297953
<br><br><strong>D. Zarpalas, P. Gkontra, P. Daras, N. Maglaveras,</strong> "Gradient based Reliability Maps for ACM based Segmentation of Hippocampus", IEEE Transactions on BioMedical Engineering, Vol: 61, Issue: 4, April 2014, doi: 10.1109/TBME.2013.2293023
<br><br><strong>A. Aggoun, E. Tsekleves, D. Zarpalas, P. Daras, A. Dimou, L. Soares, P. Nunes,</strong> "Immersive 3D Holoscopic Video System", IEEE Multimedia Magazine, Special Issue on 3D Imaging Techniques and Multimedia Applications, Vol. 20, Issue 1, pp. 28-37, Jan-Mar 2013
<br><br><strong>D. Alexiadis, D. Zarpalas, P. Daras, </strong>"Real-time, full 3-D reconstruction of moving foreground objects from multiple consumer depth cameras", IEEE Transactions on Multimedia, VOL. 15, NO. 2, pp. 339-358, February 2013, IEEE Distinguished paper, IEEE MMTC R-Letter Vol 4, No 3, June2013
<br><br><strong>D. Zarpalas, E. Fotiadou, I. Biperis, P. Daras</strong>, "Anchoring Graph Cuts towards Accurate Depth Estimation in Integral Images", IEEE/OSA Journal of Display Technology, IEEE/OSA Journal of Display Technology, VOL. 8, NO. 7, Pages: 405 - 417, July 2012
<br><br><strong>D. Zarpalas, P. Daras, A. Axenopoulos, D. Tzovaras, M. G. Strintzis, </strong>"3D Model Search and Retrieval Using the Spherical Trace Transform", Eurasip Journal on Advances in Signal Processing, Vol.2007, article ID 23912, 14 pages, Jan 2007, doi:10.1155/2007/23912
<br><br><strong>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis, </strong>"Efficient 3D model search and retrieval using generalized 3D radon transforms" IEEE Transactions on Multimedia, Volume 8, No 1, pp. 101-114, Feb 2006.
<br><br><strong>P. Daras, D. Zarpalas, A. Axenopoulos, D. Tzovaras, M. G. Strintzis, </strong>"Three-Dimensional Shape-Structure Comparison Method for Protein Classification", IEEE/ACM transactions on Computational Biology and Bioinformatics, Vol. 3, No. 3, pp. 193-207, Jul 2006 <br></p>
</div>
</div>
</div>
<div id="tab4" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7">
No special actions required, all sites you make with Mobirise are mobile-friendly. You don't have to create a special mobile version of your site, it will adapt automagically.
</p>
</div>
</div>
</div>
<div id="tab5" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7">
Cut down the development time with drag-and-drop website builder. Drop the blocks into the page, edit content inline and publish - no technical skills required.
</p>
</div>
</div>
</div>
<div id="tab6" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7">
Choose from the large selection pre-made blocks - full-screen intro, bootstrap carousel, slider, responsive image gallery with, parallax scrolling, sticky header and more.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="header1 cid-rY7K8wbj1I mbr-parallax-background" id="Conferences">
<div class="mbr-overlay" style="opacity: 0.6; background-color: rgb(35, 35, 35);">
</div>
<div class="container">
<div class="row justify-content-md-center">
<div class="mbr-white col-md-10">
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-2">Conference Publications</h3>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYrlvz5uca" id="XR360:-A-toolkit-for-mixed-360-and-3D-productions">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/xr360-toolkit-for-mixed-360-3d-productions-538x282.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">XR360: A toolkit for mixed 360 and 3D productions</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">A. Karakottas, N. Zioulis, A. Doumanoglou, V. Sterzentsenko, V. Gkitsas, D. Zarpalas, P. Daras, In IEEE International Conference on Multimedia and Expo (ICME), London, United Kingdom, July 6-10, 2020</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-XR360-A-toolkit-for-mixed-360-and-3D-productions')" class="text-primary">[BibTex]</a> <a href="javascript:OpenModal('Abstract-XR360-A-toolkit-for-mixed-360-and-3D-productions')">[Abstract]</a> <a href="assets/files/XR360_toolkit_for_mixed_360_3D_productions.pdf" target="_blank">[PDF]</a> </p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYrtOHZ7RG" id="Deep-Lighting-Environment-Map-Estimation-from-Spherical-Panoramas">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/colorful.gif" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Deep Lighting Environment Map Estimation from Spherical Panoramas</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">V. Gkitsas, N. Zioulis, F. Alvarez, D. Zarpalas, P. Daras, In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Washington, United States, June, 2020</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Deep-Lighting-Environment-Map-Estimation-from-Spherical-Panoramas')" class="text-primary">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Deep-Lighting-Environment-Map-Estimation-from-Spherical-Panoramas')">[Abstract]</a> <a href="assets/files/Deep_Lighting_Environment_Map_Estimation.pdf" target="_blank">[PDF]</a> <a href="https://vcl3d.github.io/DeepPanoramaLighting/" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvhbwFZBM" id="Deep-Soft-Procrustes-for-Markerless-Volumetric-Sensor-Alignment">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/structurenet-642x374.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Deep Soft Procrustes for Markerless Volumetric Sensor Alignment</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">V. Sterzentsenko, A. Doumanoglou, S. Thermos, N. Zioulis, D. Zarpalas, P. Daras,In International Conference on Virtual Reality (IEEE VR), March 22-26, 2020</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Deep-Soft-Procrustes-for-Markerless-Volumetric-Sensor-Alignment')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Deep-Soft-Procrustes-for-Markerless-Volumetric-Sensor-Alignment')">[Abstract]</a> <a href="assets/files/Deep_Soft_Procrustes_Markerless_Volumetric_Alignment.pdf" target="_blank">[PDF]</a> <a href="javascript:OpenModal('Video-Deep-Soft-Procrustes-for-Markerless-Volumetric-Sensor-Alignment')">[Video]</a> <a href="https://vcl3d.github.io/StructureNet/" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvpK1cfS1" id="AVoidX:-An-Augmented-VR-Game">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/sample2.gif" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">AVoidX: An Augmented VR Game</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">R. Athanasoulas, P. Boutis, A. Chatzitofis, A. Doumanoglou, P. Drakoulis, L. Saroglou, V. Sterzentsenko, N. Zioulis, D. Zarpalas, P. Daras, In International Conference on Virtual Reality (IEEE VR), March 22-26, 2020</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-AVoidX-An-Augmented-VR-Game')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-AVoidX-An-Augmented-VR-Game')">[Abstract]</a> <a href="assets/files/AVoidX_An_Augmented_VR_Game.pdf" target="_blank">[PDF]</a> <a href="javascript:OpenModal('Video-AVoidX-An-Augmented-VR-Game')">[Video]</a> <a href="https://vcl3d.github.io/AVoidX/" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvrthAP46" id="header3-ch">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/optimizing-qoe-and-cost-3d-immersive-media-platform-630x224.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Optimizing QoE and Cost in a 3D Immersive Media Platform: A Reinforcement Learning Approach</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">P. Athanasoulis, E. Christakis, K. Konstantoudakis, P. Drakoulis, S. Rizou, A. Weitz, A. Doumanoglou, N. Zioulis, D. Zarpalas, In International Conference on Advances in Multimedia (MMEDIA), Lisbon, Portugal, February 23-27, 2020</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Optimizing-QoE-and-Cost-in-a-3D-Immersive-Media-Platform-A-Reinforcement-Learning-Approach')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Optimizing-QoE-and-Cost-in-a-3D-Immersive-Media-Platform-A-Reinforcement-Learning-Approach')">[Abstract]</a> <a href="assets/files/Optimizing_QoE_and_Cost_3D_Immersive_Media_Platform.pdf" target="_blank">[PDF]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvsP11Cnu" id="header3-ck">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/does-deep-super-resolution-enhance-uav-detection-647x453.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Does Deep Super-Resolution Enhance UAV Detection?</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">V. Magoulianitis, D. Ataloglou, A. Dimou, D. Zarpalas, P. Daras, In Proceedings of the 16th IEEE International Conference on Advanced Video and Signal Based Surveillance (AVSS), Taipei, Taiwan, September 18-21, 2019</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Deep-Soft-Procrustes-for-Markerless-Volumetric-Sensor-Alignment')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Deep-Soft-Procrustes-for-Markerless-Volumetric-Sensor-Alignment')">[Abstract]</a> <a href="assets/files/Does_Deep_Super-Resolution_Enhance_UAV_Detection.pdf" target="_blank">[PDF]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvu79iWVK" id="header3-cn">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/uav-classification-with-deep-learning-using-surveillance-radar-data-650x359.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">UAV Classification With Deep Learning Using Surveillance Radar Data</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">S. Samaras, V. Magoulianitis, A. Dimou, D. Zarpalas, P. Daras, In Proceedings of the 12th International Conference on Computer Vision Systems (ICVS), Springer, Cham, 2019</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-UAV-Classification-With-Deep-Learning-Using-Surveillance-Radar-Data')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-UAV-Classification-With-Deep-Learning-Using-Surveillance-Radar-Data')">[Abstract]</a> <a href="assets/files/UAV_Classification_With_Deep_Learning_Using_Surveillance_Radar_Data.pdf" target="_blank">[PDF]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvw0XDtcO" id="header3-cq">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/self-supervised-deep-depth-denoising-300x270.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Self-Supervised Deep Depth Denoising</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">V. Sterzentsenko, L. Saroglou, A. Chatzitofis, S. Thermos, N. Zioulis, A. Doumanoglou, D. Zarpalas, P. Daras, In Proceedings of the International Conference on Computer Vision, Seoul, Republic of Korea, October 27 - November 2, 2019.</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Self-Supervised-Deep-Depth-Denoising')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Self-Supervised-Deep-Depth-Denoising')">[Abstract]</a> <a href="assets/files/Self-Supervised_Deep_Depth_Denoising.pdf" target="_blank">[PDF]</a> <a href="https://vcl3d.github.io/DeepDepthDenoising/" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvxgWqtd8" id="header3-cu">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/360-surface-regression-with-a-hyper-sphere-loss-300x183.png" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">360 Surface Regression with a Hyper-Sphere Loss</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">Antonis Karakottas, Nikolaos Zioulis, Stamatis Samaras, Dimitrios Ataloglou, Vasileios Gkitsas, Dimitrios Zarpalas, Petros Daras. 7th International Conference on 3D Vision (3DV), Québec City, Canada, September 16-19, 2019</h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-360-Surface-Regression-with-a-Hyper-Sphere-Loss')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-360-Surface-Regression-with-a-Hyper-Sphere-Loss')">[Abstract]</a> <a href="https://vcl.iti.gr/vclNew/wp-content/uploads/2019/09/HyperSphereLoss.pdf" target="_blank">[PDF]</a> <a href="https://vcl3d.github.io/HyperSphereSurfaceRegression/" target="_blank">[Project page]</a> <a href="https://vcl3d.github.io/3D60/" target="_blank">[Dataset]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvzjGTeib" id="header3-cy">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/spherical-view-synthesis-for-self-supervised-360-depth-estimation-300x168.png" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">Spherical View Synthesis for Self-Supervised 360 Depth Estimation</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">Nikolaos Zioulis, Antonis Karakottas, Dimitrios Zarpalas, Federico Alvarez, Petros Daras.
<div>7th International Conference on 3D Vision (3DV), Québec City, Canada, September 16-19, 2019</div></h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-Spherical-View-Synthesis-for-Self-Supervised-360-Depth-Estimation')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-Spherical-View-Synthesis-for-Self-Supervised-360-Depth-Estimation')">[Abstract]</a> <a href="https://arxiv.org/pdf/1909.08112.pdf" target="_blank">[PDF]</a> <a href="javascript:OpenModal('Video-Spherical-View-Synthesis-for-Self-Supervised-360-Depth-Estimation')">[Video]</a> <a href="https://vcl3d.github.io/SphericalViewSynthesis/" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="header3 cid-rYvB1qAbC3" id="header3-d2">
<div class="container">
<div class="media-container-row">
<div class="mbr-figure" style="width: 50%;">
<img src="assets/images/a-low-cost-flexible-and-portable-volumetric-capturing-system-300x245.jpg" alt="" title="">
</div>
<div class="media-content">
<h1 class="mbr-section-title mbr-white pb-3 mbr-fonts-style display-5">A low-cost, flexible and portable volumetric capturing system</h1>
<h3 class="mbr-section-subtitle align-left mbr-white mbr-light pb-3 mbr-fonts-style display-7">Vladimiros Sterzentsenko, Antonis Karakottas, Alexandros Papachristou, Nikolaos Zioulis, Alexandros Doumanoglou, Dimitrios Zarpalas, Petros Daras.
<div>14th International Conference on Signal Image Technology & Internet based Systems (SITIS 2018), Las Palmas de Gran Canaria, Spain, 26-29 November 2018</div></h3>
<div class="mbr-section-text mbr-white pb-3 ">
<p class="mbr-text mbr-fonts-style display-7"><a href="javascript:OpenModal('BibTeX-A-low-cost-flexible-and-portable-volumetric-capturing-system')">[BibTex]</a> <a href="javascript:OpenModal('Abstract-A-low-cost-flexible-and-portable-volumetric-capturing-system')">[Abstract]</a> <a href="http://vcl.iti.gr/vclNew/wp-content/uploads/2018/11/low-cost-flexible.pdf" target="_blank">[PDF]</a> <a href="https://github.com/VCL3D/VolumetricCapture" target="_blank">[Project page]</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="tabs3 cid-rYd7vxE9ze" id="tabs3-a9">
<div class="container">
</div>
<div class="container-fluid">
<div class="row tabcont">
<ul class="nav nav-tabs pt-3 mt-5" role="tablist">
<li class="nav-item mbr-fonts-style"><a class="nav-link show display-7" role="tab" data-toggle="tab" href="#tabs3-a9_tab0" aria-selected="false">
2019</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show display-7" role="tab" data-toggle="tab" href="#tabs3-a9_tab1" aria-selected="false">2018</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show display-7" role="tab" data-toggle="tab" href="#tabs3-a9_tab2" aria-selected="false">2017</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show display-7" role="tab" data-toggle="tab" href="#tabs3-a9_tab3" aria-selected="false">2016</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show display-7" role="tab" data-toggle="tab" href="#tabs3-a9_tab4" aria-selected="false">2015</a></li>
<li class="nav-item mbr-fonts-style"><a class="nav-link show active display-7" role="tab" data-toggle="tab" href="#tabs3-a9_tab5" aria-selected="true">older</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="row px-1">
<div class="tab-content">
<div id="tab1" class="tab-pane in active mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>K. Christaki, K. Apostolakis, A. Doumanoglou, N. Zioulis, D. Zarpalas, P. Daras,</strong> "Space Wars: An AugmentedVR Game", In 25th International Conference on MultiMedia Modeling (MMM), Thessaloniki, Greece, January 8-11, 2019.
<br><br><strong>Kyriaki Christaki, Emmanouil Christakis, Petros Drakoulis, Alexandros</strong> <strong>Doumanoglou, Nikolaos Zioulis, Dimitrios Zarpalas, and Petros Daras</strong>, "Subjective Visual Quality Assessment of Immersive 3D Media Compressed by Open-Source Static 3D Mesh Codecs", 25th International Conference on MultiMedia Modeling (MMM), Thessaloniki, Greece, January 8-11, 2019. </p>
</div>
</div>
</div>
<div id="tab2" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>S. Aromaa, M., Liinasuo, E. Kaasinen, M. Bojko, F. Schmalfuß, K. Apostolakis, D. Zarpalas, P. Daras, C. Öztürk, M. Boubekeuer, </strong>"User evaluation of Industry 4.0 concepts for worker engagement", 1st International Conference on Human Systems Engineering and Design (IHSED 2018), Université de Reims Champagne-Ardenne, France, 25-27 October 2018.
<br><br><strong>A. Karakottas, N. Zioulis, D. Zarpalas, P. Daras, </strong>"360D: A dataset and baseline for dense depth estimation from 360 images", 1st Workshop on 360o Perception and Interaction, European Conference on Computer Vision (ECCV) , Munich, Germany, 8 – 14 September 2018
<br><br><strong>N. Zioulis, A. Karakottas, D. Zarpalas, P. Daras,</strong> "OmniDepth: Dense Depth Estimation for Indoors Spherical Panoramas", European Conference on Computer Vision (ECCV), Munich, Germany, 8 – 14 September 2018
<br><br><strong>G. Albanis, K. Apostolakis, C. Öztürk, D. Zarpalas, P. Daras,</strong> "Adaptive web-based tools for capability-driven workforce management and task sequencing optimization", International Conference on Industrial Internet of Things and Smart Manufacturing (IoTsm 2018), London, UK, 5-6 Sep. 2018.
<br><br><strong>X. Chen, M. Bojko, R. Riedel, K. Apostolakis, D. Zarpalas, P. Daras, </strong>"Human-centred Adaptation and Task Distribution utilizing Levels of Automation", 16th IFAC Symposium on Information Control Problems in Manufacturing (INCOM 2018) 11-13 June 2018, Bergamo, Italy
<br><br><strong>A. Doumanoglou, N. Zioulis, E. Christakis, D. Zarpalas, P. Daras, </strong>"Subjective quality assessment of textured human full-body 3D-reconstructions", International Conference on Quality of Multimedia Experience (QoMEX 2018), Sardinia, Italy, 29 May - 1 June 2018
<br><br><strong>A. Doumanoglou, N. Zioulis, D. Griffin, J. Serrano, T. Khoa Phan, D. Jimenez, D. Zarpalas, F. Alvarez, M. Rio, P. Daras, </strong>"A System Architecture for Live Immersive 3D-Media Transcoding over 5G Networks", Workshop on Media delivery innovations using flexible network models in 5G, IEEE International Symposium on Broadband Multimedia Systems and Broadcasting (BMSB18), Valencia, Spain, 6th – 8th June 2018
<br><br><strong>A. Karakottas, A. Papachristou, A. Doumanoglou, N. Zioulis, D. Zarpalas, P. Daras, </strong>"Augmented VR", IEEE VR, Reutlingen, Germany, 18-22 March 2018, https://www.youtube.com/watch?v=7O_TrhtmP5Q <br>
<br><strong>A. Papachristou, N. Zioulis, D. Zarpalas, P. Daras, </strong>"Markerless Structure-based Multi-sensor Calibration for Free Viewpoint Video Capture", the 26th International Conference in Central Europe on Computer Graphics, Visualization and Computer Vision (WSCG 2018), Pilsen, Czech Republic, May 28 - June 1, 2018 </p>
</div>
</div>
</div>
<div id="tab3" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>A. Triantafyllidis, D. Filos, R. Buys, J. Claes, V. Cornelissen, E. Kouidi, A. Chatzitofis, D. Zarpalas, P. Daras, I. Chouvarda, and N. Maglaveras,, </strong>"A Computer-Assisted System with Kinect Sensors and Wristband Heart Rate Monitors for Group Classes of Exercise-based Rehabilitation", International Conference on Biomedical and Health Informatics Thessaloniki, Greece, 18-21 November 2017
<br><br><strong>A. Chatzitofis, D. Zarpalas and P. Daras</strong>, "A Computerized System for Real-Time Exercise Performance Monitoring and e-Coaching Using Motion Capture Data" International Conference on Biomedical and Health Informatics Thessaloniki, Greece, 18-21 November 2017
<br><br><strong>N. Zioulis, A. Papachristou, D. Zarpalas, P. Daras, </strong>"Improving Camera Pose Estimation via Temporal EWA Surfel Splatting", IEEE International Symposium on Mixed and Augmented Reality (ISMAR 2017), Nantes, France, October 9–13, 2017
<br><br><strong>A. Chatzitofis, D. Zarpalas, D. Filos, A. Triantafyllidis, I. Chouvarda, N. Maglaveras, P. Daras, </strong>"Technological module for unsupervised, personalized cardiac rehabilitation exercising", Proceedings of the 2017 IEEE 41st Annual Computer Software and Applications Conference (COMPSAC 2017), July 4-8, 2017, Turin, Italy. </p>
</div>
</div>
</div>
<div id="tab4" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>K. Moran, H. Wei, D.S. Monaghan, C. Woods, N.E. O’Connor, D. Zarpalas, A. Chatzitofis, P. Daras, J. Piesk, A. Pomazanskyi, </strong>"A Technology Platform for Enabling Behavioural Change as a “PATHway” Towards Better Self-management of CVD", Proceedings of the 2016 ACM Workshop on Multimedia for Personal Health and Health Care (MMHealth 2016), Oct 16, 2016 - Oct 16, 2016, Amsterdam, the Netherlands
<br><br><strong>N. Vretos, D. Alexiadis, D. Zarpalas, P. Daras, </strong>"Enhancing Real Time 3D reconstruction with pre scanned meshes", IEEE International Conference on Image Processing, ICIP 2016, Sept 25-28, Phoenix, Arizona, USA
<br><br><strong>N. Zioulis, D. Alexiadis, A. Doumanoglou, G. Louizis, K. Apostolakis, D. Zarpalas, P. Daras, </strong>"3D Tele-Immersion Platform For Interactive Immersive Experiences Between Remote Users", IEEE International Conference on Image Processing, ICIP 2016, Sept 25-28, Phoenix, Arizona, USA
<br><br><strong>A. Chatzitofis, D. Zarpalas, P. Daras,</strong> "Low-cost Motion Analysis for Cardiovascular Disease Patients", IET Human Motion Analysis for Healthcare Applications Event, 19 May 2016, London, United Kingdom </p>
</div>
</div>
</div>
<div id="tab5" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>A. Chatzitofis, D. Monaghan, E. Mitchell, F. Honohan, D. Zarpalas, N. O’Connor, P. Daras, </strong>"HeartHealth: A Cardiovascular Disease Home-Based Rehabilitation System", 5th International Conference on Current and Future Trends of Information and Communication Technologies in Healthcare, ICTH 2015.
<br><br><strong>S. Crowle, A. Doumanoglou, B. Poussard, M. Boniface, D. Zarpalas, P. Daras, </strong>"Dynamic Adaptive Mesh Streaming for Real-time 3D Teleimmersion", 20th International Conference on Web 3D Technology, Heraklion, Crete, Greece, June 18-21, 2015
<br><br><strong>D. Monaghan, F. Honohan, E. Mitchell, N. O’Connor, A. Chatzitofis, D. Zarpalas, P. Daras, </strong>"HeartHealth: New Adventures in Serious Gaming", ACMMULTIMEDIA 2015, 26 - 30 October 2015, Brisbane, Australia <br><strong>
<br>F. Destelle, A. Ahmadi, K. Moran, N. E. O'Connor, N. Zioulis, A. Chatzitofis, D. Zarpalas, P. Daras, L. Unzueta, J. Goenetxea, M. Rodriguez, M. T. Linaza, Y. Tisserand, N. Magnenat-Thalmann,</strong> "A Multi-Modal 3D Capturing Platform for Learning and Preservation of Traditional Sports and Games", 23rd ACM Multimedia Conference 2015, 26-30 Oct 2015, Brisbane, Australia </p>
</div>
</div>
</div>
<div id="tab6" class="tab-pane mbr-table" role="tabpanel">
<div class="row tab-content-row">
<div class="col-xs-12 col-md-6">
<p class="mbr-section-text align-center mbr-fonts-style display-7"><strong>D. Alexiadis, A. Doumanoglou, D. Zarpalas, P. Daras, </strong>"A case study for tele-immersion communication applications: from 3D capturing to rendering", IEEE International Conference on Visual Communications and Image Processing, VCIP 2014, Dec 7-10, Valletta, Malta <br><strong>
<br>D. Alexiadis, D. Zarpalas, P. Daras, </strong>"Fast and smooth 3D reconstruction using multiple RGB-Depth sensors", IEEE International Conference on Visual Communications and Image Processing, VCIP 2014, Dec 7-10, Valletta, Malta <br><strong>
<br>N.E. O’Connor, Y. Tisserand, A. Chatzitofis, F. Destelle, J. Goenetxea, L. Unzueta, D. Zarpalas, P. Daras, M. Linaza, K. Moran, N. Magnenat Thalmann, </strong>"Interactive Games for Preservation and Promotion of Sporting Movements", 22nd European Signal Processing Conference (EUSIPCO 2014), Lisbon, Portugal, 2-5 Sept. 2014 <br><strong>
<br>F. Destelle, A. Ahmadi, A. Chatzitofis, D. Zarpalas, N.E. O’Connor, K. Moran, P. Daras, </strong>"Low-cost Accurate Skeleton Tracking Based on Fusion of Kinect and Wearable Inertial Sensors", 22nd European Signal Processing Conference (EUSIPCO 2014), Lisbon, Portugal, 2-5 Sept. 2014 <br><strong>
<br>B. Poussard, S. Richir, J. Vatjus-Anttila, S. Asteriadis, D. Zarpalas, P. Daras, </strong>"3DLIVE: A Multi-Modal Sensing Platform Allowing Tele-Immersive Sports Applications", 22nd European Signal Processing Conference (EUSIPCO 2014), Lisbon, Portugal, 2-5 Sept. 2014 <br><strong>
<br>A. Doumanoglou, D. Alexiadis, S. Asteriadis, D. Zarpalas, P. Daras, </strong>"On human time-varying mesh compression exploiting activity-related characteristics", IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP), FLORENCE, ITALY, MAY 4-9, 2014 <br><strong>
<br>A. Doumanoglou, S. Asteriadis, D. Alexiadis, D. Zarpalas, P. Daras, </strong>"A Dataset of Kinect-based 3D scans", 11th IEEE IVMSP Workshop: 3D Image/Video Technologies and Applications, Yonsei University, Seoul, Korea, 10-12 June 2013 <br><strong>
<br>D. Alexiadis, D. Zarpalas, P. Daras, </strong>"Real-time, Realistic Full-body 3D Reconstruction and Texture Mapping from Multiple Kinects", 11th IEEE IVMSP Workshop: 3D Image/Video Technologies and Applications, Yonsei University, Seoul, Korea, 10-12 June 2013, best paper award <br><strong><br>S. Asteriadis, A. Chatzitofis, D. Zarpalas, D. Alexiadis, P. Daras, </strong>"Estimating human motion from multiple Kinect Sensors", Mirage 2013, 6th International Conference on Computer Vision / Computer Graphics Collaboration Techniques and Applications, June 6–7, 2013, Berlin, Germany <br><strong>
<br>A. Chatzitofis, N. Vretos, D. Zarpalas, P. Daras,</strong> "Three-dimensional Monitoring of Weightlifting for Computer Assisted Training", 15th International Conference on Virtual Reality and Converging Technologies, Laval, France, 2013 <br><strong>
<br>D. Zarpalas, P. Gkontra, P. Daras, N. Maglaveras, </strong>"Hippocampus segmentation through gradient based reliability maps for local blending of ACM energy terms", IEEE International Symposium on Biomedical Imaging (ISBI), San Francisco, USA, 7-11 April, 2013 <br><strong>
<br>D. Zarpalas, P. Gkontra, P. Daras, N. Maglaveras, </strong>"Segmentation through a local and adaptive weighting scheme, for contour-based blending of image and prior information", The 25th IEEE International Symposium on Computer-Based Medical Systems (CBMS 2012), Rome, Italy, 20-22 June 2012. <br><strong>
<br>D. Zarpalas, P. Gkontra, P. Daras, N. Maglaveras, </strong>"Hippocampus segmentation by optimizing the local contribution of image and prior terms, through graph cuts and multi-atlas", IEEE International Symposium on Biomedical Imaging (ISBI 2012), Barcelona, Spain, 2-5 May 2012 <br><strong>
<br>D. Zarpalas, A. Zafeiropoulos, P. Daras, N. Maglaveras, M. G. Strintzis, </strong>"Brain Structures Segmentation using Optimum Global and Local Weights on Mixing Active Contours and Neighboring Constraints", International Symposium on Applied Sciences in Biomedical and Communication Technologies, ISABEL 2011, Barcelona, Spain, October 26-29, 2011. <br><strong>
<br>D. Zarpalas, G. Kordelas, P. Daras, </strong>"Recognizing 3D Objects in cluttered scenes using projection images", IEEE International Conference on Image Processing, ICIP 2011, Sep 11-14, Brussels <br><strong>
<br>D. Zarpalas, I. Biperis, E. Fotiadou, E. Lyka, P. Daras, M. G. Strintzis, </strong>"Depth estimation in integral images by anchoring optimization techniques", 2011 IEEE International Conference on Multimedia & Expo (ICME 2011), July 11-15, 2011, Barcelona, Spain <br><strong>
<br>D. Zarpalas, A. Zafeiropoulos, P. Daras, N. Maglaveras, "</strong>Hippocampus Segmentation using a Local Prior Model on its Boundary", International Conference on Machine Vision, Image Processing, and Pattern Analysis (ICMVIPPA 2011), Venice, Italy, November 28-30, 2011. <br><strong>
<br>P. Daras, D. Tzovaras, A. Mademlis, A. Axenopoulos, D. Zarpalas, M. G. Strintzis,</strong> "3D search and retrieval using Krawtchouk moments" SHREC2006, 3D Shape Retrieval Contest, Technical report, UU-CS-2006-030, ISSN: 0924-3275, Jun 2006 <br><strong>
<br>D. Zarpalas, P. Daras, D. Tzovaras, M. G. Strintzis, </strong>"3D shape descriptors based on Fourier transforms", 6th International Workshop on Image Analysis for Multimedia Interactive Services (WIAMIS’05), Montreux, Switzerland, Apr. 2005. <br><strong>
<br>D. Zarpalas, P. Daras, D. Tzovaras, M. G.Strintzis, </strong>"3D Model Search and Retrieval Based on Fourier Transforms" 6th International Workshop on Image Analysis for Multimedia Interactive Services (WIAMIS 2005), Montreux, Switzerland, Apr 2005 <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis, </strong>"Search and retrieval of 3D protein structures", 6th International Workshop on Image Analysis for Multimedia Interactive Services (WIAMIS 2005), Montreux, Switzerland, April 2005. <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G.Strintzis, </strong>"Protein Matching using Geometrical Characteristics" 6th International Workshop on Image Analysis for Multimedia Interactive Services (WIAMIS 2005), Montreux, Switzerland, Apr 2005 <br><strong>
<br>A. Axenopoulos, P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis,</strong> "3D content-based search and retrieval using the 2D polar wavelet transform", in Proc. IEEE Int. Conf. Image Processing, Genoa, Italy Sep.11-14 2005, vol.2, pp. 1146-1149. <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis, </strong>"3D Shape-Based Techniques for Protein Classification", IEEE International Conference on Image Processing (ICIP 2005), Vol-II, pp. 1130-1133, Genova, Italy, September 2005. <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis, </strong>"3D Model Search and Retrieval Based on the Spherical Trace Transform", IEEE International Workshop on Multimedia Signal Processing (MMSP 2004), Siena, Italy, October 2004 <br><strong>
<br>D. Zarpalas, P. Daras, D. Tzovaras, M. G. Strintzis,</strong> "3D Model Search and Retrieval Based on the 3D Radon Transform", International Conference on Communications (ICC 2004), Multimedia Technologies and Services Symposium (MMTS), Paris, France, June 2004 <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis, </strong>"3D Model Watermarking for Indexing Using the Generalized Radon Transform", 3D Data Processing, Visualization & Transmission (3DPVT 2004), Thessaloniki, September 2004 <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis,</strong> "Shape Matching Using the 3D Radon Transform", 3D Data Processing, Visualization & Transmission (3DPVT 2004), Thessaloniki, September 2004 <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis, </strong>"Watermarking 3D Models for Data Hiding", IEEE International Conference on Image Processing, ICIP 2004, Singapore, October 2004 <br><strong>
<br>P. Daras, D. Zarpalas, D. Tzovaras, M. G. Strintzis,</strong> "Generalized Radon Transform Based 3D Feature Extraction for 3D Object C classification", 5th International Workshop on Image Analysis for Multimedia Interactive Services (WIAMIS 2004), Lisboa, Portugal, April 2004 </p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="header1 cid-rY7OR3e88V mbr-parallax-background" id="Books-&-Book-Chapters">
<div class="mbr-overlay" style="opacity: 0.6; background-color: rgb(35, 35, 35);">
</div>
<div class="container">
<div class="row justify-content-md-center">
<div class="mbr-white col-md-10">
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-2">Books & Book Chapters</h3>
</div>
</div>
</div>
</section>
<section class="mbr-section article content11 cid-rY7P0xhLqn" id="content11-9l">
<div class="container">
<div class="media-container-row">
<div class="mbr-text counter-container col-12 col-md-8 mbr-fonts-style display-7">
<ol>
<li><strong>S. Zikos, G. Albanis, M. Tsourma, A. Drosou, D. Zarpalas, P. Daras, D. Tzovaras, </strong>"Human-centred Factories from Theory to Industrial Practice. Lessons Learned and Recommendations.", ACE Factories Cluster White Paper, October 2019.
</li><li><strong>K. Apostolakis, N. Zioulis, A. Doumanoglou, D. Alexiadis, D. Zarpalas, P. Daras, </strong>"Beyond Online Multiplayer: Sharing and augmenting Tele-Immersive 3D game experiences with multiple geographically distributed users", IEEE COMSOC MMTC Communications – Frontiers, Vol. 12, No. 1, January 2017
</li><li><strong>Y. Tisserand, N. Magnenat-Thalmann, L. Unzueta, M.T. Linaza, A. Ahmadi, N.E. O'Connor, N. Zioulis, D. Zarpalas, P. Daras,</strong> "Preservation and Gamification of Traditional Sports.", Mixed Reality and Gamification for Cultural Heritage, Springer-Nature, M Ioannides, N. Magnenat-Thalmann, G. Papagiannakis (Eds), ISBN 978-3-319-49607-8, DOI 10.1007/978-3-319-49607-8, 2016.
</li><li><strong>P. Daras, D. Zarpalas, D. Tzovaras, D. Simitopoulos, M. G. Strintzis, </strong>"Combined Indexing and Watermarking of 3D Models using the Generalized 3D Radon Transform", Multimedia Security Handbook, B.Fuhrt and D.Kirouski Eds, CRC Press, pp 733-758, ISBN 0-8493-2773-3, December 2004
</li>
</ol>
</div>
</div>
</div>
</section>
<section class="cid-rX1VTnXlKK" id="social-buttons3-3d">
<div class="container">
<div class="media-container-row">
<div class="col-md-8 align-center">
<h2 class="pb-3 mbr-section-title mbr-fonts-style display-5">