Spaces:
Running
Running
Update index.js
Browse files
index.js
CHANGED
@@ -46,12 +46,12 @@ async function detect(img) {
|
|
46 |
|
47 |
status.textContent = 'Analysing...';
|
48 |
// To-Do #2 객체 탐지를 위한 오브젝트에 threshold를 0.5, percentage를 true로 지정하고 그 결과를 output에 저장하십시오
|
49 |
-
const output = detector(
|
50 |
threshold:0.5,
|
51 |
percentage: true,
|
52 |
// threshold 값을 지정하고 쉼표를 붙이시오
|
53 |
// percentage 지정
|
54 |
-
);
|
55 |
status.textContent = '';
|
56 |
output.forEach(renderBox);
|
57 |
}
|
|
|
46 |
|
47 |
status.textContent = 'Analysing...';
|
48 |
// To-Do #2 객체 탐지를 위한 오브젝트에 threshold를 0.5, percentage를 true로 지정하고 그 결과를 output에 저장하십시오
|
49 |
+
const output = await detector({
|
50 |
threshold:0.5,
|
51 |
percentage: true,
|
52 |
// threshold 값을 지정하고 쉼표를 붙이시오
|
53 |
// percentage 지정
|
54 |
+
});
|
55 |
status.textContent = '';
|
56 |
output.forEach(renderBox);
|
57 |
}
|