-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
777 lines (772 loc) · 36.2 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description"
content="We chose to publish, not patent, so that our work may contribute indefinitely to an open, connected world.">
<link rel="stylesheet" href="../style/bootstrappyactive.min.css">
<link rel="stylesheet" href="../style/heroes.css">
<script type="module" src="../js/color-modes.js"></script>
<title> Scientific Publications </title>
<!----- Structured, linked metadata (JSON-LD & Schema.org) ----->
<script type="application/ld+json">
[{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "reelyActive Scientific Publications",
"description": "We chose to publish, not patent, so that our work may contribute indefinitely to an open, connected world.",
"image": "https://www.reelyactive.com/images/reelyActive-logo-square.png",
"creator": {
"@type": "Organization",
"url": "https://www.reelyactive.com"
}
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "reelyActive",
"item": "https://www.reelyactive.com"
},{
"@type": "ListItem",
"position": 2,
"name": "Scientific Publications"
}]
}]
</script>
</head>
<body id="top">
<!-- Navigation -->
<nav class="navbar sticky-top navbar-expand-lg bg-body-tertiary shadow">
<div class="container-fluid">
<a class="navbar-brand" href="https://www.reelyactive.com/">
<img src="/images/reelyactive-logo-nav.png" width="165" height="30"
alt="reelyActive">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarItems" aria-controls="navbarItems"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarItems">
<!-- Left-aligned navigation items -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<!-- Right-aligned navigation items -->
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarTechnology"
role="button" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"> Technology </a>
<!-- Technology dropdown menu -->
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="navbarTechnology">
<li>
<a href="/technology/#content"
class="dropdown-item fw-bolder"> Our Technology </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/context-aware-physical-spaces/#content"
class="dropdown-item"> Context-aware physical spaces </a>
</li>
<ul>
<a href="/ambient-data/#content"
class="dropdown-item text-muted"> Ambient Data </a>
<a href="/context/#content"
class="dropdown-item text-muted"> Hyperlocal Context </a>
</ul>
<li>
<a href="/technology/reel/#content"
class="dropdown-item" > The Reel(ceiver) </a>
</li>
<li>
<a href="/open-source/#content"
class="dropdown-item"> Open Source </a>
</li>
<li>
<a href="/parc/#content"
class="dropdown-item"> reelyActive Parc </a>
</li>
<li>
<a href="/art/#content"
class="dropdown-item"> Art & Technology </a>
</li>
<li>
<a href="/science/#content"
class="dropdown-item"> Science & Research </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="https://reelyactive.github.io" target="_blank"
class="dropdown-item" >
<i class="text-muted fas fa-external-link-alt"></i>
reelyActive Developers
<i class="text-muted fas fa-code animate-breathing"></i>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarProducts"
role="button" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"> Products </a>
<!-- Products dropdown menu -->
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="navbarProducts">
<li>
<a href="/products/#content"
class="dropdown-item fw-bolder"> Our Products </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/pareto/anywhere/#content"
class="dropdown-item"> Pareto Anywhere </a>
</li>
<ul>
<a href="/pareto/anywhere/apps/#content"
class="dropdown-item text-muted"> Apps </a>
<a href="/pareto/anywhere/integrations/#content"
class="dropdown-item text-muted"> Integrations </a>
<a href="/pareto/anywhere/infrastructure/#content"
class="dropdown-item text-muted"> Infrastructure </a>
<a href="/pareto/anywhere/devices/#content"
class="dropdown-item text-muted"> Devices </a>
</ul>
<li>
<a href="/diract/#content"
class="dropdown-item"> DirAct </a>
</li>
<ul>
<a href="/diract/devices/#content"
class="dropdown-item text-muted"> Devices </a>
</ul>
<li>
<a href="/products/gateways/#content"
class="dropdown-item"> Ambient Data Gateways </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/the-briefcase-kit/#content" class="dropdown-item">
The Briefcase Kit
<i class="text-muted fas fa-user-tie animate-breathing"></i>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarBusiness"
role="button" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"> Business </a>
<!-- Business dropdown menu -->
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="navbarBusiness">
<li>
<a href="/business/#content"
class="dropdown-item fw-bolder"> Our Business </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/pricing/#content"
class="dropdown-item"> Pricing & Packages </a>
</li>
<ul>
<a href="/behold/#content"
class="dropdown-item text-muted"> Behold </a>
<a href="/breakthrough/#content"
class="dropdown-item text-muted"> Breakthrough </a>
<a href="/beyond/#content"
class="dropdown-item text-muted"> Beyond </a>
</ul>
<li>
<a href="/deem/#content"
class="dropdown-item"> DEEM Approach </a>
</li>
<li>
<a href="/clients/#content"
class="dropdown-item"> Clients </a>
</li>
<li>
<a href="/partners/#content"
class="dropdown-item"> Partners </a>
</li>
<li>
<a href="/use-cases/#content"
class="dropdown-item"> Use Cases </a>
</li>
<ul>
<a href="/use-cases/environmental-sensing/#content"
class="dropdown-item text-muted"> Environmental Sensing</a>
<a href="/use-cases/asset-tracking/#content"
class="dropdown-item text-muted"> Asset Tracking </a>
<a href="/use-cases/personnel-tracking/#content"
class="dropdown-item text-muted"> Personnel Tracking </a>
<a href="/use-cases/interaction-detection/#content"
class="dropdown-item text-muted"> Interaction Detection</a>
<a href="/use-cases/occupancy-analytics/#content"
class="dropdown-item text-muted"> Occupancy Analytics </a>
</ul>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/case-studies/#content" class="dropdown-item">
Case Studies
<i class="text-muted fas fa-book-open animate-breathing"></i>
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarAboutUs"
role="button" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"> About us </a>
<!-- About us dropdown menu -->
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="navbarAboutUs">
<li>
<a href="/about/#content"
class="dropdown-item fw-bolder"> "Owl" About Us </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/team/#content"
class="dropdown-item"> Team </a>
</li>
<li>
<a href="/history/#content"
class="dropdown-item"> History </a>
</li>
<li>
<a href="/awards/#content"
class="dropdown-item"> Awards </a>
</li>
<li>
<a href="/press/#content"
class="dropdown-item"> Press </a>
</li>
<li>
<a href="/brand/#content"
class="dropdown-item"> Brand </a>
</li>
<li>
<a href="/bibliography/#content"
class="dropdown-item"> Bibliography </a>
</li>
<li>
<a href="/uni/#content"
class="dropdown-item"> UNI Philosophy </a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/directory/#content" class="dropdown-item">
<i class="text-muted fas fa-sitemap"></i> Directory
</a>
</li>
<li>
<a href="https://blog.reelyactive.com/" target="_blank"
class="dropdown-item">
<i class="text-muted fas fa-external-link-alt"></i> Blog
</a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a href="/contact/#content" class="dropdown-item">
Contact us
<i class="text-muted fas fa-user-friends animate-breathing"></i>
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="/get-started/#content" role="button"
class="btn btn-secondary"> Get Started </a>
</li>
<!-- Colour theme chooser -->
<li class="nav-item dropdown">
<button class="btn btn-link nav-link dropdown-toggle"
id="bd-theme" type="button" aria-expanded="false"
data-bs-toggle="dropdown" data-bs-display="static"
aria-label="Toggle theme (auto)">
<i class="fas fa-adjust"></i>
</button>
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="bd-theme-text">
<li>
<button type="button" class="dropdown-item"
data-bs-theme-value="light" aria-pressed="false">
<i class="fas fa-sun"></i> Light
</button>
</li>
<li>
<button type="button" class="dropdown-item"
data-bs-theme-value="dark" aria-pressed="false">
<i class="fas fa-moon"></i> Dark
</button>
</li>
<li>
<button type="button" class="dropdown-item active"
data-bs-theme-value="auto" aria-pressed="true">
<i class="fas fa-adjust"></i> Auto
</button>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarInfoDropdown"
role="button" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<i class="fas fa-question-circle"></i>
</a>
<!-- Info about tracking and open source software/licenses -->
<ul class="dropdown-menu dropdown-menu-end shadow"
aria-labelledby="navbarInfoDropdown">
<li>
<a class="dropdown-item"
href="https://www.reelyactive.com/how-we-observe/#digital">
<i class="fas fa-mouse-pointer"></i>
Behaviour tracking free
<span class="badge bg-success animate-breathing">
<i class="fas fa-user-shield"></i>
</span>
</a>
</li>
<li class="dropdown-divider"></li>
<li>
<a class="dropdown-item" target="_blank"
href="https://getbootstrap.com">
<i class="fab fa-bootstrap"></i>
Bootstrap 5
<span class="badge bg-light text-dark">
<i class="fab fa-osi"></i> MIT
</span>
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="https://fontawesome.com">
<i class="fab fa-font-awesome"></i>
Font Awesome (Free)
<span class="badge bg-light text-dark">
<i class="fab fa-creative-commons"></i>
<i class="fab fa-osi"></i> MIT
</span>
</a>
</li>
<li>
<a class="dropdown-item" target="_blank"
href="https://github.com/reelyactive/web-style-guide/">
<i class="fas fa-code"></i>
Web Style Guide
<span class="badge bg-light text-dark">
<i class="fab fa-osi"></i> MIT
</span>
</a>
</li>
<li class="dropdown-divider"></li>
<li>
<a class="dropdown-item" target="_blank"
href="https://www.reelyactive.com/made-in-montreal/">
<i class="fab fa-canadian-maple-leaf"></i>
Made in Montréal
<i class="fas fa-city"></i>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!----- Herowl++ ----->
<div class="herowl-science herowl">
<div class="col-xs-12 col-sm-10 col-lg-10 col-xl-8">
<div class="card shadow">
<div class="row flex-lg-row-reverse align-items-center g-0">
<div class="col-lg-6">
<img src="../images/science-overview.png" alt="Science"
class="d-block mx-lg-auto img-fluid rounded" loading="lazy">
</div>
<div class="col-lg-6">
<div class="card-body text-start">
<h1 class="display-4 fw-bold lh-1 mb-3"> Scientific Publications </h1>
<p class="lead"> We chose to publish, not patent, so that our work may contribute indefinitely to an open, connected world. </p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<a href="#content" class="btn btn-primary btn-lg px-4 me-md-2"
type="button"> Tell me more </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Content -->
<div id="content" class="container-fluid">
<a href="#top">
<img src="../images/barnarrow-up.png" alt="Top of Page"
class="mx-auto mb-0 d-block barnarrow animate-breathing invisible">
</a>
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 col-xl-6">
<h2 class="mt-5"> Publications by reelyActive </h2>
<p class="lead"> Scientific contributions initiated by our team. </p>
<div class="row row-cols-1 row-cols-xl-2 g-4 my-4">
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-ieeewfiot2024.png"
class="card-img-top" alt="IEEE WF-IoT 2024">
<div class="card-body">
<h5 class="card-title"> raddec: Elevating IoT Interoperability Through a Common Radio Decoding Data Format </h5>
<p class="card-text text-muted">
Jeffrey Dungen (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://ieeexplore.ieee.org/document/10811227/"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> IEEE Xplore </a>
<a href="https://github.com/reelyactive/raddec/"
target="_blank" class="btn btn-sm btn-outline-info"
role="button"> <i class="fab fa-github"></i> </a>
</p>
</div>
<div class="card-footer text-muted small">
10th IEEE World Forum on Internet of Things (WF-IoT) | Ottawa, Ontario. November, 2024.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-ieeeiop2017.jpg"
class="card-img-top" alt="IEEE IoP 2017">
<div class="card-body">
<h5 class="card-title"> Towards collective hyperlocal contextual awareness among heterogeneous RFID systems </h5>
<p class="card-text text-muted">
Jeffrey Dungen, Juan Pinazo (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://www.reelyactive.com/science/reelyActive-IoP2017.pdf"
target="_blank" class="btn btn-sm btn-primary"
role="button"> PDF </a>
<a href="https://ieeexplore.ieee.org/document/8397665/"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> IEEE Xplore </a>
</p>
</div>
<div class="card-footer text-muted small">
3rd IEEE Conference on Internet of People (IoP 2017) | Fremont, CA. August 4-8, 2017.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-poster-ieeerfid2016.jpg"
class="card-img-top" alt="IEEE RFID 2016">
<div class="card-body">
<h5 class="card-title"> Towards a ubiquitous, real-time machine-contextual-awareness based on active RFID and semantic web technologies </h5>
<p class="card-text text-muted">
Jeffrey Dungen, George Koulouris, Imran Zaidi, Juan Pinazo (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://www.reelyactive.com/science/reelyActive-RFID2016.pdf"
target="_blank" class="btn btn-sm btn-primary"
role="button"> Poster </a>
</p>
</div>
<div class="card-footer text-muted small">
10th IEEE International Conference on RFID | Orlando, FL. May 3-5, 2016.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-ieeeiot2015.jpg"
class="card-img-top" alt="IEEE IoT 2015">
<div class="card-body">
<h5 class="card-title"> Low-Power Wireless Advertising Software Library for Distributed M2M and Contextual IoT </h5>
<p class="card-text text-muted">
Mohamed Imran Jameel, Jeffrey Dungen (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://www.reelyactive.com/science/reelyActive-IoT2015.pdf"
target="_blank" class="btn btn-sm btn-primary"
role="button"> PDF </a>
<a href="https://ieeexplore.ieee.org/document/7389121/"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> IEEE Xplore </a>
<a href="https://github.com/reelyactive/advlib/"
target="_blank" class="btn btn-sm btn-outline-info"
role="button"> <i class="fab fa-github"></i> </a>
</p>
</div>
<div class="card-footer text-muted small">
2nd IEEE World Forum on Internet of Things (WF-IoT) | Milan, Italy. December 16, 2015.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-ieeem2mcip2013.jpg"
class="card-img-top" alt="IEEE M2MCIP 2013">
<div class="card-body">
<h5 class="card-title"> Towards a Simple, Versatile, Distributed Low-Power Wireless M2M Infrastructure </h5>
<p class="card-text text-muted">
Jeffrey Dungen, Traian Antonescu, Pier-Olivier Genest (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6758528"
target="_blank" class="btn btn-sm btn-primary"
role="button"> PDF </a>
<a href="https://ieeexplore.ieee.org/document/6758528/"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> IEEE Xplore </a>
</p>
</div>
<div class="card-footer text-muted small">
1st IEEE Workshop on Machine to Machine Communications Interfaces and Platforms (M2MCIP) | Sydney, Australia. October 24, 2013.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-demo-lcn2013.jpg"
class="card-img-top" alt="IEEE LCN 2013">
<div class="card-body">
<h5 class="card-title"> Demonstration of a Simple, Versatile, Distributed Low-Power Wireless M2M Infrastructure </h5>
<p class="card-text text-muted">
Pier-Olivier Genest, Jeffrey Dungen (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://www.reelyactive.com/science/reelyActive-LCN2013.pdf"
target="_blank" class="btn btn-sm btn-primary"
role="button"> PDF </a>
</p>
</div>
<div class="card-footer text-muted small">
38th IEEE Conference on Local Computer Networks (LCN) | Sydney, Australia. October 22, 2013.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-iiki2013.jpg"
class="card-img-top" alt="IIKI 2013">
<div class="card-body">
<h5 class="card-title"> Hyperlocal Context to Facilitate an Internet of Things Understanding of the World </h5>
<p class="card-text text-muted">
Jeffrey Dungen, Pier-Olivier Genest (reelyActive)
</p>
<p class="card-text text-center">
<a href="https://www.reelyactive.com/science/reelyActive-IIKI2013.pdf"
target="_blank" class="btn btn-sm btn-primary"
role="button"> PDF </a>
</p>
</div>
<div class="card-footer text-muted small">
International Workshop on Identification, Information and Knowledge in the Internet of Things (IIKI) | Beijing, China. October 18-20, 2013.
</div>
</div>
</div>
</div>
<h2 class="mt-5"> Additional publications </h2>
<p class="lead"> Scientific contributions based on our technology and/or research. </p>
<div class="row row-cols-1 row-cols-xl-2 g-4 my-4">
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-fpsy2024.png"
class="card-img-top" alt="Frontiers in Psychology 2024">
<div class="card-body">
<h5 class="card-title"> Evaluating the accuracy of automated processing of child and adult language production in preschool classrooms </h5>
<p class="card-text text-muted">
Pelfrey, G. L., Justice, L., Gonzalez Villasanti, H., Foster, T. J.
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.3389/fpsyg.2024.1322665"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
</p>
</div>
<div class="card-footer text-muted small">
Frontiers in Psychology, Volume 15, June 2024.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-autcon2024.png"
class="card-img-top" alt="AUTCON 2024">
<div class="card-body">
<h5 class="card-title"> Monitoring workers on indoor construction sites using data fusion of real-time worker's location, body orientation, and productivity state </h5>
<p class="card-text text-muted">
Khazen, M., Nik-Bakht, M., Moselhi, O.
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.1016/j.autcon.2024.105327"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
</p>
</div>
<div class="card-footer text-muted small">
Automation in Construction, Volume 160, April 2024.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-tecse2024.jpg"
class="card-img-top" alt="TECSE 2024">
<div class="card-body">
<h5 class="card-title"> Classroom Sensing Tools: Revolutionizing Classroom-Based Research in the 21st Century </h5>
<p class="card-text text-muted">
Foster, T. J., Justice, L., Gonzalez Villasanti, H., Irvin, D., & Messinger, D.
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.1177/02711214231220800"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
</p>
</div>
<div class="card-footer text-muted small">
Topics in Early Childhood Special Education, 0(0), January 2024.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-lshss2023.jpg"
class="card-img-top" alt="LSHSS 2023">
<div class="card-body">
<h5 class="card-title"> Peer-Mediated Intervention for Socially Isolated Preschoolers: An Early-Stage Feasibility Study </h5>
<p class="card-text text-muted">
Foster, T. J., Xiao, N., Pelfrey, G. L., Gonzalez Villasanti, H., Brock, M., & Justice, L.
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.1044/2023_LSHSS-23-00090"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
</p>
</div>
<div class="card-footer text-muted small">
Language, Speech, and Hearing Services in Schools, Volume 55, Issue 1, January 2024, p. 166-180.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-dataset-tiles2019.png"
class="card-img-top" alt="TILES 2019">
<div class="card-body">
<h5 class="card-title"> TILES-2019: A longitudinal physiologic and behavioral data set of medical residents in an intensive care unit </h5>
<p class="card-text text-muted">
Yau, J.C., Girault, B., Feng, T. et al. (USC)
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.1038/s41597-022-01636-4"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
<a href="https://tiles-data.isi.edu/"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Data Set </a>
</p>
</div>
<div class="card-footer text-muted small">
Sci Data 9, 536 (2022).
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-incom2021.jpg"
class="card-img-top" alt="INCOM 2021">
<div class="card-body">
<h5 class="card-title"> Exploring the application of IoT in the service station business </h5>
<p class="card-text text-muted">
Marques, R., de Paula Ferreira, W., Nassif, G. et al.
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.1016/j.ifacol.2021.08.163"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
</p>
</div>
<div class="card-footer text-muted small">
17th IFAC Symposium on Information Control Problems in Manufacturing (INCOM) | Budapest, Hungary. June 7-9 2021.
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-dataset-tiles2018.png"
class="card-img-top" alt="TILES 2018">
<div class="card-body">
<h5 class="card-title"> TILES-2018, a longitudinal physiologic and behavioral data set of hospital workers </h5>
<p class="card-text text-muted">
Mundnich, K., Booth, B.M., L'Hommedieu, M. et al. (USC)
</p>
<p class="card-text text-center">
<a href="https://doi.org/10.1038/s41597-020-00655-3"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
<a href="https://tiles-data.isi.edu/"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Data Set </a>
</p>
</div>
<div class="card-footer text-muted small">
Sci Data 7, 354 (2020).
</div>
</div>
</div>
<div class="col">
<div class="card hover-shadow">
<img src="../images/science-paper-icassp2019.png"
class="card-img-top" alt="ICASSP 2019">
<div class="card-body">
<h5 class="card-title"> Bluetooth based Indoor Localization using Triplet Embeddings </h5>
<p class="card-text text-muted">
Mundnich, N., Girault, B., Narayanan, S. (USC)
</p>
<p class="card-text text-center">
<a href="https://hal.science/hal-02074827v1"
target="_blank" class="btn btn-sm btn-outline-primary"
role="button"> Paper </a>
</p>
</div>
<div class="card-footer text-muted small">
IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) | Brighton, UK. May 2019.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!----- Owl-to-Action ----->
<div class="owl-to-action">
<div class="col-xs-12 col-sm-10 col-lg-6 offset-lg-4 col-xl-6
offset-xl-2 py-4">
<div class="card">
<div class="card-body">
<div class="d-grid gap-3 d-md-block">
<span class="lead align-middle pr-4">
Together, let's make sense of things
</span>
<a class="btn btn-secondary" role="button"
href="/get-started/#content"> Get Started </a>
</div>
</div>
</div>
</div>
</div>
<footer class="footer bg-dark bg-gradient">
<a href="./"> Scientific Publications </a>
|
<a href="https://www.reelyactive.com"> © reelyActive 2016-2025 </a>
</footer>
<!-- Optional JavaScript -->
<script defer src="../js/fontawesome-reelyactive.min.js"></script>
<script src="../js/bootstrappyactive.bundle.min.js"></script>
</body>
</html>