lyly21 commited on
Commit
37c4bfd
1 Parent(s): 1c4ef84

Update index.js

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