Replies: 1 comment 4 replies
-
I'll think about it a bit more, but not sure how would that be any faster than using |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can we tracking detected face or/and body movement in multiple sequence frames in-order to GROUP detected faces. Then we do not need to match them later if we found in database.
example:
frame 1: [face group id1, face group id 2], -> bad quality, do .match() and not found in database
frame 2: [face group id1, face group id 2] -> bad quality, do .match() and not found in database
frame 3: [face group id1-nameX, face group id 2-nameY] -> GOOD quality, do .match() and found in database
frame 4: [face group id1-nameX, face group id 2-nameY] -> not need to .match() again
frame 5: [face group id1-nameX, face group id 2-nameY] -> not need to .match() again
Beta Was this translation helpful? Give feedback.
All reactions