-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
520 lines (462 loc) · 30.6 KB
/
Copy pathindex.html
File metadata and controls
520 lines (462 loc) · 30.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="OpenBWC - Open Body-Worn Camera AI analysis for ethical and transparent policing reform">
<title>OpenBWC - Open Body-Worn Camera</title>
<link rel="icon" type="image/png" href="/assets/images/favicon/favicon.png">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Set theme before paint to avoid a flash of the wrong theme -->
<script>
(function () {
try {
var t = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-theme', t);
} catch (e) {}
})();
</script>
<!-- Styles -->
<link rel="stylesheet" href="assets/css/main.css">
<script
src="https://cdn.telemetrydeck.com/websdk/telemetrydeck.min.js"
data-app-id="C5B4CA9F-142C-4E35-8284-843B3BA8EA34"
></script>
<!-- Typed.js -->
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
</head>
<body>
<!-- Header / Navigation -->
<header>
<nav>
<a href="index.html" class="logo-link">
<img src="assets/images/logos/openbwc-rectangle-logo.png" alt="OpenBWC Logo" class="logo-img">
</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="team.html" class="nav-link">Who We Are</a>
<a href="publications.html" class="nav-link">Publications</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div style="display: flex; align-items: center; gap: 1rem;">
<!-- Theme Toggle -->
<label class="theme-toggle" for="theme-toggle">
<input type="checkbox" id="theme-toggle" hidden>
<div class="theme-toggle-slider"></div>
</label>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="mobile-menu-btn" aria-label="Toggle menu">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7" />
</svg>
</button>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="team.html" class="nav-link">Who We Are</a>
<a href="publications.html" class="nav-link">Publications</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<div class="hero-text">
<div class="accent-bar"></div>
<h1>
<span id="typed-headline"></span>
</h1>
<p>
The open-source backbone of the body-worn camera ecosystem — using AI to analyze footage ethically and transparently for evidence-based policing reform.
</p>
<div class="hero-buttons">
<a href="about.html" class="btn btn-primary">Learn More</a>
<a href="https://github.com/OpenBWC" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg>
View on GitHub
</a>
</div>
</div>
<div class="hero-visual">
<svg viewBox="0 0 400 500" style="max-width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="techGrid" width="30" height="30" patternUnits="userSpaceOnUse">
<path d="M 30 0 L 0 0 0 30" fill="none" stroke="var(--border-color)" stroke-width="0.5" opacity="0.2"/>
</pattern>
<linearGradient id="lensReflect" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: white; stop-opacity: 0.4"/>
<stop offset="100%" style="stop-color: white; stop-opacity: 0.1"/>
</linearGradient>
<filter id="orangeGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur" />
<feColorMatrix in="blur" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feComposite in="SourceGraphic" in2="goo" operator="atop"/>
</filter>
</defs>
<rect x="20" y="20" width="360" height="460" rx="24" fill="var(--bg-secondary)"/>
<path d="M 50 80 Q 200 60, 350 80 L 350 420 Q 200 440, 50 420 Z" fill="var(--accent-forest)" opacity="0.15"/>
<rect x="50" y="80" width="300" height="340" fill="url(#techGrid)" opacity="0.5" mask="url(#vestMask)"/>
<rect x="160" y="140" width="80" height="120" rx="8" fill="#2a2a2a" stroke="var(--border-color)" stroke-width="2" opacity="0.8"/>
<g transform="translate(200, 250)">
<rect x="-65" y="-90" width="130" height="180" rx="16" fill="#1A1A1A" stroke="#333333" stroke-width="3"/>
<rect x="-55" y="-80" width="110" height="160" rx="12" fill="#222222"/>
<g transform="translate(0, -40)">
<circle cx="0" cy="0" r="32" fill="#0A0A0A" stroke="#333333" stroke-width="2"/>
<circle cx="0" cy="0" r="24" fill="#050505"/>
<circle cx="0" cy="0" r="18" fill="#111111" stroke="var(--accent-teal)" stroke-width="0.5" opacity="0.3"/>
<path d="M -15 -15 Q 0 -25, 15 -15 A 20 20 0 0 1 -15 -15" fill="url(#lensReflect)"/>
</g>
<g transform="translate(0, 35)">
<circle cx="0" cy="0" r="35" fill="#1A1A1A" stroke="#333333" stroke-width="2"/>
<circle cx="0" cy="0" r="30" fill="none" stroke="var(--primary-orange)" stroke-width="4" opacity="0.8">
<animate attributeName="opacity" values="0.8;0.4;0.8" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="0" cy="0" r="24" fill="#2a2a2a"/>
<circle cx="0" cy="0" r="8" fill="var(--primary-orange)"/>
</g>
<g transform="translate(-40, -75)">
<circle cx="0" cy="0" r="4" fill="#FF3B3B" filter="url(#orangeGlow)">
<animate attributeName="opacity" values="1;0.2;1" dur="1.5s" repeatCount="indefinite"/>
</circle>
<text x="10" y="3" font-family="var(--font-mono)" font-size="8" fill="#FF3B3B" opacity="0.8">REC</text>
</g>
<g transform="translate(0, 75)">
<text x="0" y="0" font-family="var(--font-mono)" font-size="8" fill="var(--text-secondary)" text-anchor="middle" letter-spacing="1" opacity="0.6">OPENBWC</text>
<g transform="translate(-15, 8)" opacity="0.5" fill="var(--text-secondary)">
<circle cx="0" cy="0" r="1"/> <circle cx="5" cy="0" r="1"/> <circle cx="10" cy="0" r="1"/>
<circle cx="15" cy="0" r="1"/> <circle cx="20" cy="0" r="1"/> <circle cx="25" cy="0" r="1"/>
<circle cx="30" cy="0" r="1"/>
</g>
</g>
</g>
<line x1="130" y1="160" x2="270" y2="160" stroke="var(--accent-teal)" stroke-width="1" opacity="0.4">
<animate attributeName="y1" values="160;340;160" dur="4s" repeatCount="indefinite"/>
<animate attributeName="y2" values="160;340;160" dur="4s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="0;0.4;0" dur="4s" repeatCount="indefinite"/>
</line>
<g>
<circle cx="120" cy="200" r="3" fill="var(--primary-orange)" opacity="0.6">
<animate attributeName="cy" values="200;190;200" dur="3s" repeatCount="indefinite"/>
</circle>
<line x1="120" y1="200" x2="150" y2="250" stroke="var(--primary-orange)" stroke-width="0.5" opacity="0.2">
<animate attributeName="x2" values="150;160;150" dur="3s" repeatCount="indefinite"/>
</line>
<circle cx="290" cy="300" r="3" fill="var(--accent-teal)" opacity="0.6">
<animate attributeName="cy" values="300;310;300" dur="2.5s" repeatCount="indefinite"/>
</circle>
<line x1="290" y1="300" x2="250" y2="250" stroke="var(--accent-teal)" stroke-width="0.5" opacity="0.2">
<animate attributeName="x2" values="250;240;250" dur="2.5s" repeatCount="indefinite"/>
</line>
</g>
</svg>
</div>
</div>
</section>
<!--Impact Section-->
<section class="impact-section">
<div class="impact-content">
<h2 class="impact-stat">
<span class="impact-highlight">99%</span> of Body-Worn Camera footage is never reviewed.
</h2>
<p class="impact-description">
The vast majority of policing captures officers simply doing their jobs—a reality that stays hidden due to privacy laws and massive data volume.
</p>
<div class="impact-solution">
<span style="color: var(--accent-teal);">●</span>
<span>We're building <strong style="color: var(--text-color); font-weight: 700;">privacy-preserving analysis</strong> to change that.</span>
</div>
</div>
</section>
<!-- Mission Section -->
<section class="section">
<div class="container">
<div style="text-align: center; margin-bottom: 4rem;">
<div class="accent-bar" style="margin: 0 auto 1.5rem;"></div>
<h2 class="mb-3">Our Mission</h2>
<p style="max-width: 700px; margin: 0 auto; font-size: 1.125rem;">
Accurately interpret police BWC footage by employing open source ML, CV, & NLP technologies
</p>
</div>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto;">
<!-- Card 1 -->
<div class="card">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-orange), var(--accent-teal)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/>
</svg>
</div>
<h3 class="mb-2">Ethical AI</h3>
<p>Using transparent, open-source technologies to ensure accountability and fairness in every analysis.</p>
</div>
<!-- Card 2 -->
<div class="card">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-orange), var(--accent-teal)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24">
<path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/>
</svg>
</div>
<h3 class="mb-2">Evidence-Based</h3>
<p>Identifying behavioral patterns through rigorous analysis to support data-driven policy reform.</p>
</div>
<!-- Card 3 -->
<div class="card">
<div style="width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-orange), var(--accent-teal)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24">
<path d="M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5zm0 10H4V7l8-4.5v9.5z"/>
</svg>
</div>
<h3 class="mb-2">Transparent</h3>
<p>Open-source methodology that anyone can review, audit, and contribute to for collective improvement.</p>
</div>
</div>
</div>
</section>
<!-- Open vs Private Section -->
<section class="section" style="background: var(--bg-secondary);">
<div class="container">
<div style="text-align: center; margin-bottom: 4rem;">
<div class="accent-bar" style="margin: 0 auto 1.5rem;"></div>
<h2 class="mb-3">Open Where It Counts, Private Where It Matters</h2>
<p style="max-width: 700px; margin: 0 auto; font-size: 1.125rem;">
We keep our methods open for anyone to inspect, while sensitive footage stays under the control of the people it belongs to.
</p>
</div>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto;">
<div class="card">
<h3 class="mb-2" style="color: var(--primary-orange);">What's Public</h3>
<p>Our algorithms, models, and insights are open source — free to review, audit, and build on.</p>
</div>
<div class="card">
<h3 class="mb-2" style="color: var(--primary-orange);">What's Private</h3>
<p>Your data stays yours. Body-worn camera footage is never collected or shared through OpenBWC.</p>
</div>
<div class="card">
<h3 class="mb-2" style="color: var(--primary-orange);">Built to Run Offline</h3>
<p>Our tools are designed to run locally, so sensitive footage never has to leave your environment.</p>
</div>
</div>
</div>
</section>
<!--Partners Grid-->
<section class="partners-section">
<div class="container">
<div class="partners-header">
<h2>Trusted Partnerships & Support</h2>
<p>We are grateful for the support received by the following organizations</p>
</div>
<!-- Partner Organizations Grid -->
<div style="margin-bottom: 4rem;">
<h3 style="text-align: center; font-size: 1.125rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 2rem;">Partner Organizations</h3>
<div class="partners-grid">
<a href="https://www.rit.edu/" target="_blank" rel="noopener noreferrer" aria-label="Rochester Institute of Technology">
<img src="assets/images/partnerships/RIT_rgb_vert_k.png"
alt="Rochester Institute of Technology"
class="partner-logo invert-dark">
</a>
<a href="https://www.justice.gov/" target="_blank" rel="noopener noreferrer" aria-label="U.S. Department of Justice">
<img src="assets/images/partnerships/doj-logo.png"
alt="Department of Justice"
class="partner-logo">
</a>
<a href="https://www.albany.edu/" target="_blank" rel="noopener noreferrer" aria-label="University at Albany, SUNY">
<img src="assets/images/partnerships/uni-albany-logo.png"
alt="University at Albany SUNY"
class="partner-logo">
</a>
</div>
</div>
<!-- Sponsors Section -->
<div>
<h3 style="text-align: center; font-size: 1.125rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 2rem;">Our Sponsors</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto;">
<!-- Tutanota Sponsor Card -->
<a href="https://tuta.com/" target="_blank" rel="noopener noreferrer" class="sponsor-card" style="text-decoration: none;">
<div class="sponsor-badge">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
<path d="M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z"/>
</svg>
Open Source Supporter
</div>
<div class="sponsor-logo-wrapper">
<img src="assets/images/sponsors/tuta_logo.png"
alt="Tuta (formerly Tutanota)"
class="invert-dark">
</div>
<h4 class="sponsor-name">Tuta</h4>
<p class="sponsor-description">
Tuta generously supports OpenBWC by providing secure, encrypted email for our team.
</p>
</a>
<!-- Zulip Sponsor Card -->
<a href="https://zulip.com/" target="_blank" rel="noopener noreferrer" class="sponsor-card" style="text-decoration: none;">
<div class="sponsor-badge">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
<path d="M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z"/>
</svg>
Open Source Supporter
</div>
<div class="sponsor-logo-wrapper">
<img src="assets/images/sponsors/zulip_logo.png"
alt="Zulip"
>
</div>
<h4 class="sponsor-name">Zulip</h4>
<p class="sponsor-description">
Zulip generously supports OpenBWC with organized and efficient team communication.
</p>
</a>
<!-- Plane Sponsor Card -->
<a href="https://plane.so/" target="_blank" rel="noopener noreferrer" class="sponsor-card" style="text-decoration: none;">
<div class="sponsor-badge">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
<path d="M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z"/>
</svg>
Open Source Supporter
</div>
<div class="sponsor-logo-wrapper">
<img src="assets/images/sponsors/plane_logo.png"
alt="Plane"
>
</div>
<h4 class="sponsor-name">Plane</h4>
<p class="sponsor-description">
Plane generously supports OpenBWC by providing a platform for structured team meetings and project management.
</p>
</a>
</div>
</div>
<!-- Become a Sponsor CTA -->
<div style="margin-top: 4rem; text-align: center; padding: 3rem 2rem; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius-lg);">
<h3 style="margin-bottom: 1rem; font-size: 1.5rem;">Support Our Mission</h3>
<p style="color: var(--text-secondary); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;">
Interested in supporting OpenBWC's work in ethical AI and policing reform? We'd love to hear from you.
</p>
<a href="contact.html" class="btn btn-primary">Become a Sponsor</a>
</div>
</div>
</section>
<!--Press Section-->
<section class="section" style="background: var(--bg-secondary);">
<div class="container">
<div style="text-align: center; margin-bottom: 4rem;">
<div class="accent-bar" style="margin: 0 auto 1.5rem;"></div>
<h2 class="mb-3">Press Room</h2>
<p style="max-width: 700px; margin: 0 auto; font-size: 1.125rem;">
Latest updates, features, and announcements from the OpenBWC team.
</p>
</div>
<div class="press-grid">
<a href="https://www.rit.edu/news/rit-scientists-developing-machine-learning-techniques-analyze-body-worn-camera-footage" target="_blank" class="press-card">
<span class="press-source">RIT News</span>
<p class="press-title">RIT scientists developing machine learning techniques to analyze body-worn camera footage</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
<a href="https://rochesterbeacon.com/2023/03/14/rit-gets-1m-to-analyze-body-worn-camera-footage/" target="_blank" class="press-card">
<span class="press-source">Rochester Beacon</span>
<p class="press-title">RIT gets $1M to analyze body-worn camera footage</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
<a href="https://www.rit.edu/spotlights/machine-learning-meets-law-enforcement-rit-research-project" target="_blank" class="press-card">
<span class="press-source">RIT Spotlights</span>
<p class="press-title">Machine learning meets law enforcement in RIT research project</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
<a href="https://www.rochesterfirst.com/news/tech-news/rit-professor-to-use-machine-learning-techniques-for-body-cam-analysis/" target="_blank" class="press-card">
<span class="press-source">Rochester First</span>
<p class="press-title">RIT professor to use machine learning techniques for body cam analysis</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
<a href="https://rbj.net/2023/03/17/rit-rpd-partnership-looks-at-ai-methods-to-analyze-body-worn-camera-footage/" target="_blank" class="press-card">
<span class="press-source">Rochester Business Journal</span>
<p class="press-title">RIT, RPD partnership looks at AI methods to analyze body-worn camera footage</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
<a href="https://www.whec.com/uncategorized/rit-scientists-develop-technology-to-analyze-police-body-cam-footage/" target="_blank" class="press-card">
<span class="press-source">WHEC News 10</span>
<p class="press-title">RIT scientists develop technology to analyze police body cam footage</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
<a href="https://13wham.com/newsletter-daily/rit-teaming-with-rochester-police-to-analyze-body-worn-camera-footage" target="_blank" class="press-card">
<span class="press-source">13 WHAM</span>
<p class="press-title">RIT teaming with Rochester Police to analyze body-worn camera footage</p>
<div class="press-link-text">
Read Story <svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/></svg>
</div>
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="section" style="background: var(--bg-secondary); border-radius: var(--radius-xl); margin: 0 2rem; padding: 4rem 2rem;">
<div style="text-align: center; max-width: 800px; margin: 0 auto;">
<h2 class="mb-3">Get Involved</h2>
<p class="mb-4" style="font-size: 1.125rem;">
Help build a more transparent and accountable future for law enforcement through open-source AI analysis.
</p>
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
<a href="https://github.com/OpenBWC" class="btn btn-primary" target="_blank" rel="noopener noreferrer">
Contribute on GitHub
</a>
<a href="contact.html" class="btn btn-ghost">
Get In Touch
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-brand">
<a href="index.html" class="footer-brand-link">
<img src="assets/images/logos/openbwc-square-logo.jpg" alt="OpenBWC" class="footer-logo-img">
<span>OpenBWC</span>
</a>
<p class="footer-text">
© <span id="year"></span>. Designed for transparency.
</p>
</div>
<div class="footer-nav-links">
<a href="about.html" class="footer-link">About</a>
<a href="team.html" class="footer-link">Team</a>
<a href="publications.html" class="footer-link">Publications</a>
<a href="privacy.html" class="footer-link">Privacy</a>
<a href="tos.html" class="footer-link">Terms</a>
</div>
<div class="footer-social-links">
<a href="https://github.com/OpenBWC" target="_blank" rel="noopener noreferrer" class="social-link">
<svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
<span>GitHub</span>
</a>
</div>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</footer>
<!-- Scripts -->
<script src="assets/js/main.js"></script>
</body>
</html>