Results 21 comments of Andrei

Hello! Need to replace: ``` face_img = crop_and_pad(face_img, crop_rect) face_mask = crop_and_pad(face_mask, crop_rect) ``` to: ``` face_img, _ = crop_and_pad(face_img, crop_rect) face_mask, _ = crop_and_pad(face_mask, crop_rect) ```