asdasdasdasd commited on
Commit
5b0f9d5
·
1 Parent(s): 2c52661

Update extract_landmarks.py

Browse files
Files changed (1) hide show
  1. extract_landmarks.py +1 -1
extract_landmarks.py CHANGED
@@ -19,7 +19,7 @@ def detect_track(video):
19
  def extract_landmark(video):
20
  raw_data = detect_track(video)
21
  if len(raw_data) == 0:
22
- pass
23
  else:
24
  np.savetxt(video + ".txt", raw_data, fmt='%1.5f')
25
  path = video + ".txt"
 
19
  def extract_landmark(video):
20
  raw_data = detect_track(video)
21
  if len(raw_data) == 0:
22
+ print("No face detected", video)
23
  else:
24
  np.savetxt(video + ".txt", raw_data, fmt='%1.5f')
25
  path = video + ".txt"