743815e2bf5cb89ab4984f1d63a82aaa52584a6d,examples/facerec_from_webcam_faster.py,,,#,14

Before Change


        face_names = []
        for face_encoding in face_encodings:
            // See if the face is a match for the known face(s)
            match = face_recognition.compare_faces([obama_face_encoding], face_encoding)
            name = "Unknown"

            if match[0]:
                name = "Barack"

            face_names.append(name)

After Change


    obama_face_encoding,
    biden_face_encoding
]
known_face_names = [
    "Barack Obama",
    "Joe Biden"
]

// Initialize some variables
face_locations = []
face_encodings = []
face_names = []
process_this_frame = True

while True:
    // Grab a single frame of video
    ret, frame = video_capture.read()

    // Resize frame of video to 1/4 size for faster face recognition processing
    small_frame = cv2.resize(frame, (0, 0), fx=0.25, fy=0.25)

    // Convert the image from BGR color (which OpenCV uses) to RGB color (which face_recognition uses)
    rgb_small_frame = small_frame[:, :, ::-1]

    // Only process every other frame of video to save time
    if process_this_frame:
        // Find all the faces and face encodings in the current frame of video
        face_locations = face_recognition.face_locations(rgb_small_frame)
        face_encodings = face_recognition.face_encodings(rgb_small_frame, face_locations)

        face_names = []
        for face_encoding in face_encodings:
            // See if the face is a match for the known face(s)
            matches = face_recognition.compare_faces(known_face_encodings, face_encoding)
            name = "Unknown"

            // If a match was found in known_face_encodings, just use the first one.
            if True in matches:
                first_match_index = matches.index(True)
                name = known_face_names[first_match_index]

            face_names.append(name)

    process_this_frame = not process_this_frame
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: ageitgey/face_recognition
Commit Name: 743815e2bf5cb89ab4984f1d63a82aaa52584a6d
Time: 2018-01-26
Author: ageitgey@gmail.com
File Name: examples/facerec_from_webcam_faster.py
Class Name:
Method Name:


Project Name: IBM/AIF360
Commit Name: 1b6587331ec77d295e2261de12e13974b7d1a46a
Time: 2018-10-16
Author: shoffman@ibm.com
File Name: aif360/algorithms/inprocessing/meta_fair_classifier.py
Class Name: MetaFairClassifier
Method Name: fit


Project Name: ageitgey/face_recognition
Commit Name: 743815e2bf5cb89ab4984f1d63a82aaa52584a6d
Time: 2018-01-26
Author: ageitgey@gmail.com
File Name: examples/facerec_from_webcam.py
Class Name:
Method Name: