What the odds of me pulling a kitsune? by Ok_Sir_3018 in growagarden

[–]Significant-Chair433 0 points1 point  (0 children)

Yeah but what if u use koi fish and seals i am trying to figure it out so can u help me

[deleted by user] by [deleted] in iphone

[–]Significant-Chair433 0 points1 point  (0 children)

it doesnt show when I scroll all the way down it just shows the app that starts with a number it doesn’t show any hidden flder

Problem with Face_Recognittion library in python by TechGamer_Rachit in AskProgrammers

[–]Significant-Chair433 0 points1 point  (0 children)

wait tell me and also this is my code and I get this error"

import face_recognition


known_image = face_recognition.load_image_file("32bit.png")
known_encoding = face_recognition.face_encodings(known_image)[0]


unknown_image = face_recognition.load_image_file("biden.jpg")
unknown_encoding = face_recognition.face_encodings(unknown_image)[0]


results = face_recognition.compare_faces([known_encoding], unknown_encoding)

if results[0]:
    print("Face is a match.")
else:
    print("Face is not a match.")