Skip to content

Commit a2788f4

Browse files
Update face_mask_detection_using_cnn.py
1 parent a4f8161 commit a2788f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Face-Mask-Detection/face_mask_detection_using_cnn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def data_set(dir_data):
3535
ymin=int(df1['ymin'][i])
3636
xmax=int(df1['xmax'][i])
3737
ymax=int(df1['ymax'][i])
38-
image=image[ymin:ymax, xmin:xmax]
38+
#image=image[ymin:ymax, xmin:xmax]
3939
try:
4040
# resizing to (70 x 70)
4141
image = cv2.resize(image,(70,70))

0 commit comments

Comments
 (0)