You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to blur/anonymize a person's faces in a video and as a first step I am using your face detection code.
For this purpose cv2.GaussianBlur() can be used but I don't know how to use this function in yoloface.py.
Can you please help me how can I add this blur face functionality with your code?
The text was updated successfully, but these errors were encountered:
Hi, you can find useful tutorials on youtube on this, the main idea is to get the output of the model which is (x,y) coordinates for the face bounding box and feed it to cv2.GaussianBlur().
Good luck.
Thanks, @sthanhng for sharing your amazing work.
I want to blur/anonymize a person's faces in a video and as a first step I am using your face detection code.
For this purpose
cv2.GaussianBlur()
can be used but I don't know how to use this function in yoloface.py.Can you please help me how can I add this blur face functionality with your code?
The text was updated successfully, but these errors were encountered: