-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
355 lines (326 loc) ยท 12.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>๐ฌ ์ค๋งํธ ๊ธ์ฐ ๋์ฐ๋ฏธ ๐ญ</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #e0f7fa;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
}
h1 {
text-align: center;
color: #263238;
margin-top: 20px;
margin-bottom: 20px;
}
#container {
position: relative;
width: 640px;
height: 480px;
border: 2px solid #b2ebf2;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: hidden;
}
#webcam {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
}
#canvas {
position: absolute;
top: 0;
left: 0;
z-index: 10;
pointer-events: none;
}
#log-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
width: 640px;
margin-top: 20px;
margin-bottom: 20px;
}
#log {
padding: 15px;
width: 480px;
max-height: 200px;
overflow-y: auto;
background-color: #37474f;
color: #eceff1;
font-family: monospace;
border-radius: 8px;
border: 1px solid #546e7a;
box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
font-size: 14px;
line-height: 1.4;
}
#sound-control {
width: 140px;
padding: 15px;
background-color: #fff;
border: 1px solid #b2ebf2;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
text-align: center;
}
#sound-control button {
padding: 8px 15px;
border: none;
border-radius: 5px;
background-color: #00bcd4;
color: white;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s ease;
}
#sound-control button:hover {
background-color: #00acc1;
}
@media (max-width: 768px) {
body {
padding: 20px;
}
#container, #log-container, #log {
width: 95%;
max-width: 640px;
}
#log-container {
flex-direction: column;
align-items: stretch;
}
#log, #sound-control {
width: 100%;
margin-bottom: 10px;
}
}
</style>
</head>
<body>
<h1>๐ฌ ์ค๋งํธ ๊ธ์ฐ ๋์ฐ๋ฏธ ๐ญ</h1>
<div id="container">
<video id="webcam" autoplay playsinline></video>
<canvas id="canvas" width="640" height="480"></canvas>
</div>
<div id="log-container">
<div id="log"></div>
<div id="sound-control">
<button id="toggleSound">์๋ฆฌ ์๋ฆผ ๋๊ธฐ</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ort.min.js"></script>
<script>
// --- ์ ์ญ ๋ณ์ ---
const alertSound = new Audio('https://hwkims.github.io/ciga/alert_sound.mp3');
let isPlaying = false;
let soundEnabled = true;
let session;
const cigaretteClassId = 0;
// --- HTML ์์ ---
const video = document.getElementById('webcam');
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
const logElement = document.getElementById('log');
const toggleSoundButton = document.getElementById('toggleSound');
// --- ์ด๋ฒคํธ ๋ฆฌ์ค๋ ---
toggleSoundButton.addEventListener('click', toggleSoundAlert);
// --- ํจ์ ---
function toggleSoundAlert() {
soundEnabled = !soundEnabled;
toggleSoundButton.textContent = soundEnabled ? '์๋ฆฌ ์๋ฆผ ๋๊ธฐ' : '์๋ฆฌ ์๋ฆผ ์ผ๊ธฐ';
if (!soundEnabled && isPlaying) {
stopSound();
}
logMessage(soundEnabled ? "๐ ์๋ฆฌ ์๋ฆผ ์ผ์ง" : "๐ ์๋ฆฌ ์๋ฆผ ๊บผ์ง");
}
async function initWebcam() {
try {
const stream = await navigator.mediaDevices.getUserMedia({
video: { width: 640, height: 480 }
});
video.srcObject = stream;
await video.play();
logMessage("๐น ์น์บ ์ค๋น ์๋ฃ.");
} catch (error) {
logMessage(`โ ์น์บ ์ ๊ทผ ์ค๋ฅ: ${error.message}`);
throw error;
}
}
async function loadModel() {
try {
// WebGL ๋์ ๊ธฐ๋ณธ ์คํ ์ ๊ณต์ ์ฌ์ฉ ์๋
session = await ort.InferenceSession.create(
'https://hwkims.github.io/ciga/yolov8_model.onnx',
{ executionProviders: ['wasm'] } // WebGL ๋์ WASM ์ฌ์ฉ
);
logMessage("๐ง ๋ชจ๋ธ ๋ก๋ ์๋ฃ.");
logMessage(`์
๋ ฅ ์ด๋ฆ: ${session.inputNames}`);
logMessage(`์ถ๋ ฅ ์ด๋ฆ: ${session.outputNames}`);
startDetection();
} catch (err) {
logMessage(`โ ๋ชจ๋ธ ๋ก๋ ์คํจ: ${err.message}`);
throw err;
}
}
function preprocessImage(img) {
const tempCanvas = document.createElement('canvas');
tempCanvas.width = 640;
tempCanvas.height = 640;
const tempCtx = tempCanvas.getContext('2d');
tempCtx.drawImage(img, 0, 0, 640, 640);
const imageData = tempCtx.getImageData(0, 0, 640, 640);
const data = imageData.data;
const inputData = new Float32Array(3 * 640 * 640);
for (let i = 0; i < data.length; i += 4) {
const idx = i / 4;
inputData[idx] = data[i] / 255;
inputData[640 * 640 + idx] = data[i + 1] / 255;
inputData[2 * 640 * 640 + idx] = data[i + 2] / 255;
}
return new ort.Tensor('float32', inputData, [1, 3, 640, 640]);
}
async function startDetection() {
if (!session) {
logMessage("โ ์ธ์
์ด ์ด๊ธฐํ๋์ง ์์์ต๋๋ค.");
return;
}
async function detectFrame() {
try {
const tensor = preprocessImage(video);
const feeds = { [session.inputNames[0]]: tensor };
const results = await session.run(feeds);
postprocessAndDraw(results, 640, 480);
} catch (error) {
logMessage(`โ ์ถ๋ก ์ค๋ฅ: ${error.message}`);
}
requestAnimationFrame(detectFrame);
}
detectFrame();
}
function xywh2xyxy(x, y, w, h) {
return [x - w / 2, y - h / 2, x + w / 2, y + h / 2];
}
function nonMaxSuppression(boxes, scores, iouThreshold) {
const candidates = boxes.map((box, i) => [...box, scores[i]]).sort((a, b) => b[4] - a[4]);
const keep = [];
while (candidates.length > 0) {
const current = candidates.shift();
keep.push(current);
for (let i = candidates.length - 1; i >= 0; i--) {
const iou = calculateIoU(current, candidates[i]);
if (iou > iouThreshold) {
candidates.splice(i, 1);
}
}
}
return keep;
}
function calculateIoU(box1, box2) {
const [x1, y1, x2, y2] = box1;
const [x1b, y1b, x2b, y2b] = box2;
const xx1 = Math.max(x1, x1b);
const yy1 = Math.max(y1, y1b);
const xx2 = Math.min(x2, x2b);
const yy2 = Math.min(y2, y2b);
const w = Math.max(0, xx2 - xx1);
const h = Math.max(0, yy2 - yy1);
const intersection = w * h;
const union = (x2 - x1) * (y2 - y1) + (x2b - x1b) * (y2b - y1b) - intersection;
return intersection / union;
}
function postprocessAndDraw(output, width, height) {
ctx.clearRect(0, 0, canvas.width, canvas.height);
let cigaretteDetected = false;
const outputData = output[session.outputNames[0]].data;
const [_, rows, cols] = output[session.outputNames[0]].dims;
const boxes = [];
const scores = [];
for (let i = 0; i < rows; i++) {
const offset = i * cols;
const confidence = outputData[offset + 4];
if (confidence > 0.5) {
const x = outputData[offset];
const y = outputData[offset + 1];
const w = outputData[offset + 2];
const h = outputData[offset + 3];
const classScores = outputData.slice(offset + 5, offset + cols);
const classId = classScores.indexOf(Math.max(...classScores));
if (classId === cigaretteClassId) {
boxes.push(xywh2xyxy(x, y, w, h).map(v => v * width));
scores.push(confidence);
}
}
}
const nmsResult = nonMaxSuppression(boxes, scores, 0.45);
nmsResult.forEach(([x1, y1, x2, y2, score]) => {
drawBoundingBox(x1, y1, x2 - x1, y2 - y1, score, "๐ฌ ๋ด๋ฐฐ");
cigaretteDetected = true;
});
if (cigaretteDetected && !isPlaying && soundEnabled) {
playSound();
logMessage("๐ฌ ๋ด๋ฐฐ ๊ฐ์ง! ๐ญ ๊ฒฝ๊ณ !");
} else if (!cigaretteDetected && isPlaying) {
stopSound();
logMessage("๐ ๊ฐ์ ์ค...");
}
}
function drawBoundingBox(x, y, width, height, confidence, label) {
ctx.beginPath();
ctx.rect(x, y, width, height);
ctx.lineWidth = 2;
ctx.strokeStyle = 'red';
ctx.fillStyle = 'rgba(255, 0, 0, 0.2)';
ctx.stroke();
ctx.fill();
ctx.font = '16px Arial';
ctx.fillStyle = 'red';
ctx.fillText(`${label} ${confidence.toFixed(2)}`, x, y > 10 ? y - 5 : y + 15);
}
function playSound() {
alertSound.loop = true;
alertSound.play().then(() => {
isPlaying = true;
}).catch(error => {
logMessage(`โ ์๋ฆฌ ์ฌ์ ์ค๋ฅ: ${error.message}`);
});
}
function stopSound() {
alertSound.pause();
alertSound.currentTime = 0;
isPlaying = false;
}
function logMessage(message) {
const newLog = document.createElement('div');
newLog.textContent = `[${new Date().toLocaleTimeString()}] ${message}`;
logElement.appendChild(newLog);
logElement.scrollTop = logElement.scrollHeight;
}
// --- ์ด๊ธฐํ ---
window.onload = async () => {
logMessage("๐ ํ์ด์ง ๋ก๋ ์๋ฃ. ์ด๊ธฐํ ์์...");
try {
await initWebcam();
if (typeof ort !== 'undefined') {
await loadModel();
} else {
logMessage("โ onnxruntime-web ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ก๋ ์คํจ");
}
} catch (error) {
logMessage(`โ ์ด๊ธฐํ ์คํจ: ${error.message}`);
}
};
</script>
</body>
</html>