Spaces:
Build error
Build error
Commit
·
5b0f9d5
1
Parent(s):
2c52661
Update extract_landmarks.py
Browse files- 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 |
-
|
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"
|