mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-18 17:14:26 +03:00
Change blur settings
This commit is contained in:
parent
6a05e791c8
commit
96de78c5ea
@ -83,12 +83,12 @@ class GenAIClient:
|
||||
|
||||
for x, y, w, h in face_data:
|
||||
roi = image[y : y + h, x : x + w]
|
||||
roi = cv2.GaussianBlur(roi, (23, 23), 30)
|
||||
roi = cv2.blur(roi, (30, 30), 0)
|
||||
image[y : y + h, x : x + w] = roi
|
||||
|
||||
for x, y, w, h in face_profile_data:
|
||||
roi = image[y : y + h, x : x + w]
|
||||
roi = cv2.GaussianBlur(roi, (23, 23), 30)
|
||||
roi = cv2.blur(roi, (30, 30), 0)
|
||||
image[y : y + h, x : x + w] = roi
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user