Commit Graph

6 Commits (05ad464f808599e04dc8018ae356ada86f38b44e)

Author SHA1 Message Date
meeki007 05ad464f80
must send a object to const optionsSSDMobileNet
the const maxResults = 5; is not an object
when defin const optionsSSDMobileNet you have to send it objects.
example:
```JS
new faceapi.SsdMobilenetv1Options({ minConfidence: 0.5, maxResults: 3});
```
or rather
```JS
const optionsSSDMobileNet = new faceapi.SsdMobilenetv1Options({ minConfidence: minScore, maxResults: maxResults });
```
2020-12-06 15:12:59 -05:00
meeki007 4fb9d5341e
remove http reff
we are using local folders
2020-12-02 21:15:45 -05:00
meeki007 7a41c1d3a5
Add comments and fix typo
Things I looked up to better understand the example.
add if you think it will help others.
2020-12-02 14:34:43 -05:00
Vladimir Mandic e631131629 removed node-fetch dependency 2020-11-03 15:22:56 -05:00
Vladimir Mandic 7dd8692671 updated node demo 2020-11-03 13:50:14 -05:00
Vladimir Mandic b8f0efb18b removed type from package.json and added nodejs example 2020-11-03 13:41:17 -05:00