-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
285 lines (263 loc) · 12.1 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
<!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="OpenSkiAI democratizes skiing with real-time AI coaching, inspired by a ski racecourse in Vals, Italy. Created by Jamison Young, this open-source project aims to make skiing accessible and inclusive while preventing innovation barriers. Join us in revolutionizing the sport. Contact: [email protected]">
<title>OpenSkiAI</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<style>
html {
scroll-padding-top: 90px; /* little higher than the header hight */
}
.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 .logo {
display: flex;
flex-direction: row;
gap: 20px;
}
.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;
}
body {
font-family: "Courier New", Courier, monospace;
background-color: #000;
color: #00ff00;
text-align: center;
margin: 2rem auto;
padding: 20px;
line-height: 1.3;
/* set the background picture*/
background-image: url('BackGround.png');
background-repeat: no-repeat;
background-size: 40%;
background-position: center 70%;
background-attachment: fixed;
}
a {
color: #00ff00;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 300px;
margin: 20px auto;
display: block;
}
h1 {
font-size: 2rem;
margin-top: 50px;
}
h2 {
font-size: 1.5rem;
}
h3{
font-size: 1rem;
}
ul {
list-style-type: none;
padding:0;
}
ul li {
margin: 10px 0;
}
#about ul {
list-style-type: square;
padding: 0 0.5rem;
}
#about ul li{
text-align: left;
margin-left: 20px;
}
#contact ul li{
text-align: left;
margin-left: 20px;
}
footer {
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
color: #555;
font-size: 0.9rem;
}
footer a{
color: #555;
}
audio {
margin-left: 20px; /* 與其他元素的間距 */
width: 60%; /* 播放器寬度 */
height: 30px; /* 播放器高度 */
}
audio::-webkit-media-controls-panel {
background-color: rgb(0, 255, 0, 0.4); /* 背景色 */
border-radius: 5px; /* 圓角 */
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
filter: invert(1); /* 反轉按鈕顏色 */
}
/* style for cellphones */
@media (max-width: 768px) {
.header {
position: fixed;
height: 80px;
flex-direction: column;
align-items: flex-start;
padding: 15px;
}
.container {
margin: 1.5rem auto;
padding: 1rem;
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);
word-wrap: break-word; /* Ensures long words or URLs wrap to the next line */
overflow-wrap: break-word; /* Ensures compatibility with modern browsers */
}
body{
background-size: 80%;
background-position: center;
margin: 70px 20px;
}
h1{
margin:1rem auto;
}
}
</style>
</head>
<body>
<div class="header">
<div class="logo">
<a href="https://openski.xyz" style="font-weight: bold;">OpenSkiAI</a>
</div>
<audio controls>
<source src="file.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div class="nav">
<a href="#about">About</a>
<a href="#explore">Explore Vision</a>
<a href="#contact">Contact</a>
</div>
</div>
<h1>Welcome to OpenSkiAI</h1>
<div class="container">
<section id="about">
<h2>Why This Idea?</h2>
<h3>The Inspiration</h3>
<p>
While skiing in Vals, Italy, in December 2024, I encountered a public ski racecourse that allowed anyone with a lift pass to ski around gates and record their performance.
The footage was made available for viewing through the resort’s website.
This sparked an idea: What if AI could analyze this data to give real-time coaching?
</p>
<p>
This question became the foundation of OpenSkiAI—a project to make ski coaching accessible to everyone.
But why stop at skiing? The same principles could apply to any sport or activity that relies on technique and movement.
Snowboarding, golf, tennis, gymnastics, or even swimming could benefit from AI-driven coaching that provides instant, personalised feedback.
</p>
<p>
Beyond sports, this concept could revolutionise instruction on any movement, including the movement of AI.
</p>
<h3>Why Open Source?</h3>
<p>
By creating OpenSkiAI under an open-source license, I aim to ensure that these basic, common-sense ideas are free for everyone to use. The concept is released under a CC0 license—a universal declaration of dedication to the public domain.
This means you don’t need to attribute me or seek permission. You are free to use, adapt, or build upon this idea for yourself, your company, or your inspiration without limitations.
</p>
<h3>Preventing Innovation Barriers</h3>
<p>
In the past, corporations have patented simple concepts—like eBay’s “Make an Offer” button—which stifled innovation and prevented others from building upon them.
By creating OpenSkiAI, I aim to demonstrate how AI can be used to analyze and train any human movement that can be captured on video, not just skiing.
This concept allows ski schools, instructors, or even individuals to train AI models using their own techniques and approaches, tailoring the technology to match their specific needs.
It opens up the possibility for ski instructors to develop tools that align with their teaching styles, preserving diversity in methods while adapting to the limitations and capabilities of AI.
This concept can extend far beyond skiing to benefit countless other sports and physical activities.
</p>
<h2>Who Would Use This App</h2>
<p>This app is designed to be as <strong>user-friendly</strong> and <strong>open-source</strong> as possible, empowering a wide range of users to configure the application in ways that suit their needs. Whether you’re a ski instructor, an individual skier, or part of a ski resort, this app would adapt to your unique requirements, providing insights and AI-driven analysis.</p>
<h3>1. Ski Instructors</h3>
<ul>
<li>Create customized agents for their classes, allowing students to upload videos of their runs.</li>
<li>Receive AI-generated analysis of each student’s performance and provide tailored feedback.</li>
<li>Collaborate with students to track progress and refine techniques.</li>
</ul>
<h3>2. Individual Skiers</h3>
<ul>
<li>Interact directly with their personal AI agent to analyze their runs.</li>
<li>Compare performance with professional skiers and receive actionable advice.</li>
<li>Configure the app independently for personal improvement.</li>
</ul>
<h3>3. Ski Resorts</h3>
<ul>
<li>Enhance their offerings by integrating the app into public ski racecourses.</li>
<li>Provide feedback to users about their runs.</li>
<li>Ensure fair compensation to ski instructors for contributing data to train AI models.</li>
</ul>
</section>
<section id="explore">
<h2>Explore Vision</h2>
<ul>
<li><a href="technologies.html">Technologies</a></li>
<li><a href="apple-lidar-projects.html">Apple LiDAR Projects</a></li>
<li><a href="non-proprietary-lidar.html">Non-Proprietary LiDAR Projects</a></li>
<li><a href="kinect-open-eyes.html">Kinect: The Open Eyes of AI</a></li>
<li><a href="future-technologies.html">Future Technologies for Ski Racing</a></li>
<li><a href="decentralization.html">The Importance of Decentralization</a></li>
<li><a href="whos-creating-lidar.html">Who’s Creating LiDAR?</a></li>
<li><a href="why-nvidia-not-the-way.html">Why NVIDIA Is Not the Way</a></li>
</ul>
</section>
<section id="contact">
<h2>About Me</h2>
<p>
My name is <strong>Jamison Young</strong>. I grew up in the Snowy Mountains of Australia, and I’ve been passionate about skiing for as long as I can remember.
Skiing is often seen as an elite sport, but I believe technology like AI can make it more inclusive. OpenSkiAI is my attempt to bring this vision to life. If you're interested in collaborating, feel free to contact me.
</p>
<ul>
<li><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></li>
<li><strong>WorkAway Project:</strong> <a href="https://www.workaway.info/en/host/195933766431" target="_blank">Join Me on WorkAway</a></li>
<li><strong>GitHub Project:</strong> <a href="https://github.com/jam2ja/OpenSkiAI" target="_blank">Explore the GitHub Repository</a></li>
</ul>
</section>
</div>
<footer>
<p>This page is licensed under <a href="https://creativecommons.org/publicdomain/zero/1.0/" target="_blank">Creative Commons CC0</a>.</p>
<p>Prior Art Statement: This concept and its details are publicly documented under a <a href="copyright-statement.html"target="_blank">Prior Art Statement</a> to ensure openness and accessibility.</p>
<p>The website is designed by <a href="https://github.com/Since-1998" target="_blank">Since Chiu</a></p>
</footer>
</body>
</html>