boazchung commited on
Commit
b7422b8
1 Parent(s): 53fa0e2

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +3 -3
index.js CHANGED
@@ -44,9 +44,9 @@ async function detect(img) {
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 = '';
 
44
  imageContainer.style.backgroundImage = `url(${img})`;
45
 
46
  status.textContent = 'Analysing...';
47
+ // To-Do #2 객체 탐지를 위한 오브젝트에 threshold를 0.5, percentage를 true로 지정하고 그 결과를 output에 저장하십시오
48
+ const output = ???(
49
+ // threshold 값을 지정하고 쉼표를 붙이시오
50
  // percentage 지정
51
  );
52
  status.textContent = '';