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