Blur and anonymize faces with OpenCV and Python Blur and anonymize faces with OpenCV and Python In the first part of this tutorial, we’ll briefly discuss what face blurring is and how we can use ...
import blur_detector import cv2 if __name__ == '__main__': img = cv2.imread('image_name', 0) blur_map = blur_detector.detectBlur(img, downsampling_factor=4, num ...