Open bwangamd opened 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)
Same Issue
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)