aymericdamien / TensorFlow-Examples

TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2)
Other
43.42k stars 14.93k forks source link

Process finished with exit code -1073741795 (0xC000001D) #285

Open bwangamd opened 5 years ago

bwangamd commented 5 years ago

when i run the following code in pycharm, an exception occurs, when i run in terminal command line, the python is stopped and exited. it seems the bold line which make the compile failed.

Process finished with exit code -1073741795 (0xC000001D)

import face_recognition

encodings = []

filename1 = "catherine.jpg" image1 = face_recognition.load_image_file(filename1) print(image1) encoding1 = face_recognition.face_encodings(image1)[0] print("bobo",encoding1) encodings.append(encoding1) print(encodings)

filename2 = "william.jpg" image2 = face_recognition.load_image_file(filename2) encoding2 = face_recognition.face_encodings(image2)[0] encodings.append(encoding2) print(encodings)

Javedbbcc commented 3 years ago

Same Issue