How to improve detections per second #106
-
I am getting a not too high detection/execution rate in the terms of 8 detections per second on a mobile device with Qualcomm SDM632. Considerations of my use case:
I tried lowering the detection resolution using the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
not much else comes to mind for the moment i am planning to provide uint quantized models and supporting usage of |
Beta Was this translation helpful? Give feedback.
-
how it works is that mesh detection relies on a box determined from face detection to start with
|
Beta Was this translation helpful? Give feedback.
body
,hand
,object
,face.iris
,face.description
,face.emotion
`face.detector.modelPath = 'blazeface-front.json'
face.detector.skipFrames = 50
face.detector.scoreThreshold = 0.6
you could do it by setting
filter.width
andfilter.height
or even faster (by a tiny bit)you could completely disable
filter
and reduce size of input video to start with by setting constraintsand then initializing video stream using
navigator.mediaDevices.getUserMedia(c…