-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnologies.html
More file actions
127 lines (120 loc) · 4.62 KB
/
technologies.html
File metadata and controls
127 lines (120 loc) · 4.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Technologies | OpenSkiAI</title>
<style>
body {
font-family: "Courier New", Courier, monospace;
background-color: #000;
color: #00ff00;
text-align: center;
margin: 2rem auto;
padding: 20px;
line-height: 1.3;
}
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
background-color: #000;
color: #00ff00;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
.header a {
color: #00ff00;
text-decoration: none;
margin-left: 20px;
}
.header a:hover {
text-decoration: underline;
}
.header .nav {
margin-left: auto;
padding-right: 60px;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 2rem;
background: rgba(50, 50, 50, 0.7); /* transparency:0(fully transparent) */
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container p{
text-align: left;
}
a {
color: #00ff00;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul li{
text-align: left;
}
footer {
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
color: #555;
}
.license {
font-size: 0.9rem;
margin-top: 1rem;
}
.license a{
color: #555;
}
</style>
</head>
<body>
<div class="header">
<div class="logo">
<a href="https://openski.xyz" style="font-weight: bold;">OpenSkiAI</a>
</div>
</div>
<h1>Open Technologies</h1>
<div class="container">
<h2>Available Open Technologies</h2>
<p>
Technologies like the Microsoft Kinect, LiDAR sensors, and video processing tools offer powerful ways to analyze skiing techniques. These tools are already available to developers and hobbyists, providing a foundation for projects like OpenSkiAI.
</p>
<h2>Why Kinect?</h2>
<p>
The Microsoft Kinect is a versatile, open-source-friendly tool that has already been widely hacked and used for various purposes. It offers 3D motion capture and depth-sensing capabilities, making it ideal for analyzing skiing posture, turns, and overall form in real-time.
</p>
<h2>LiDAR and Video Comparison</h2>
<p>
LiDAR technology can create precise 3D maps of skiing environments and track motion with incredible accuracy. Combined with video comparison tools, AI could analyze your skiing style against that of a professional skier. For example:
</p>
<ul>
<li>You could upload a video of a great skier navigating gates.</li>
<li>Upload your own video of the same course.</li>
<li>AI would compare the two, identifying differences in speed, technique, and trajectory to provide personalized feedback.</li>
</ul>
<h2>Open-Source Possibilities</h2>
<p>
By focusing on open-source solutions, we ensure that these powerful tools remain accessible to everyone. As we've seen with Kinect and other technologies, the open-source community is often the driving force behind innovation, as developers around the world collaborate and share ideas.
</p>
<h2>Keeping Technology Open</h2>
<p>
It’s crucial to prevent corporatization of these technologies. When companies monopolize ideas and tools, they stifle innovation and limit access. By keeping OpenSkiAI open-source, we can ensure that developers and skiers alike benefit from these advancements, paving the way for even more innovative applications.
</p>
</div>
<footer>
<p class="license">
This project is released under the <a href="https://creativecommons.org/publicdomain/zero/1.0/" target="_blank">Creative Commons Zero (CC0)</a> license. No rights reserved—free for anyone to use.
</p>
</footer>
</body>
</html>