Skip to content

Commit a3fcaaa

Browse files
authored
Update detection.py
1 parent e54dbaa commit a3fcaaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Body Detection/detection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
gray_img = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
1919

2020
# Detect the full body
21-
faces = body_cascade.detectMultiScale(gray_img, 1.5, 1)
21+
faces = body_cascade.detectMultiScale(gray_img, 1.1, 1)
2222

2323
#display rectangle
2424
for (x, y, w, h) in faces:

0 commit comments

Comments
 (0)