File size: 7,242 Bytes
a02f385
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45067dd
a02f385
 
 
 
 
7e37478
 
 
 
 
a02f385
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3a2c2e3
 
775c70f
 
 
 
 
 
a02f385
 
 
3a2c2e3
 
 
a02f385
 
 
 
 
3a2c2e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a02f385
3a2c2e3
 
 
 
 
 
 
 
 
 
 
 
 
a02f385
 
 
3a2c2e3
a02f385
3a2c2e3
 
 
 
 
 
 
 
 
a02f385
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import streamlit as st
from PIL import Image
import face_recognition
from utils.levels import complete_level, render_page, initialize_level
from utils.login import get_login
import os
import uuid
from utils.login import initialize_login

initialize_login()
initialize_level()

LEVEL = 2


def step2_page():
    st.header("Face Detection and Creating your own known-faces database")

    st.write(
        """
        ### How it works?
        Face detection is the process of identifying and locating human faces within an image or video frame. 
        It is a fundamental step in many computer vision applications, including face recognition, facial expression analysis, and augmented reality.
        """
    )

    st.image(
        "https://user-images.githubusercontent.com/31125521/42756818-0a41edaa-88fe-11e8-9033-8cd141b0fa09.gif",
        use_column_width=True,
    )

    st.write(
        """
        In simple terms, here's how face detection works:

        1. **Image Preparation**: The input image is initially preprocessed to enhance its quality and improve the chances of detecting faces accurately. This may involve resizing, grayscale conversion, or contrast adjustments.

        2. **Feature Extraction**: The face detection algorithm analyzes the image to identify distinctive features that are commonly found in human faces. These features can include the presence of eyes, nose, mouth, and other facial characteristics.

        3. **Classification or Regression**: Once the features are extracted, the algorithm employs a trained model to classify or regressively predict whether each region of the image contains a face or not. This model is typically trained using machine learning techniques on large datasets of labeled face and non-face samples.

        4. **Face Localization**: If a face is detected, the algorithm determines the position and size of the face within the image. This information is usually represented as a bounding box that encloses the detected face region.

        5. **Post-processing**: After initial detection, post-processing steps may be performed to refine the results. These steps could involve filtering out false positives or adjusting the size and position of the detected face regions to align them more accurately.
        """

    )


    img_dir = os.path.join(".sessions", get_login()["username"], "known_faces")
    os.makedirs(img_dir, exist_ok=True)
    st.write(
        """
        ### Creating your own known-faces database
        Now it's time to collect and name the identified faces to create our known-faces data base for our face recognition model. 
        But remember, we should always ask for permission before taking someone's picture. We can use a smartphone or a digital camera to capture pictures, and it's important to take pictures of different people. This will help our application to have a good known-faces database!
        """
    )
    st.info("Who is taking the picture?")
    face_name = st.text_input('Specify name to save it in the known-face database', "This is a placeholder", key="name")
    input_type = st.radio("Select the Input Type", ["Image", "Camera"])

    if input_type == "Camera":
        picture = st.camera_input("Take a picture")
    else:
        picture = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg"])
    if picture:
        image = face_recognition.load_image_file(picture)
        st.image(image)
        my_bar = st.progress(0, text="Detecting faces in given images...")
        for i in range(100):
            my_bar.progress(i, text="Detecting faces in given images...")

        # Find all the faces in the image using the default HOG-based model.
        # This method is fairly accurate, but not as accurate as the CNN model and not GPU accelerated.
        # See also: find_faces_in_picture_cnn.py
        face_locations = face_recognition.face_locations(image)
        my_bar.progress(100, text="Algorithm found {} face(s) in this photograph.".format(len(face_locations)))

        if len(face_locations) <= 0:
            st.error("No faces have been detected, please upload a valid/ clear photo!")
        elif len(face_locations) > 1:
            st.info("More than one face has been detected, please identify each face by providing a name.")
            cols = st.columns(len(face_locations))
            for i in range(len(face_locations)):
                col = cols[i]
                face = face_locations[i]
                # display faces
                with col:
                    # Print the location of each face in this image
                    top, right, bottom, left = face
                    # You can access the actual face itself like this:
                    face_image = image[top:bottom, left:right]
                    pil_image = Image.fromarray(face_image)
                    col.image(pil_image, use_column_width=True)
                    face_name = st.text_input('Who is this?',
                                              "This is a placeholder", key="text_" + str(i))
                    if st.button("Save", key="button_" + str(i)):
                        img_name = str(uuid.uuid4()) + f"_{face_name}_{i}" + ".jpg"
                        img_path = os.path.join(img_dir, img_name)
                        if os.path.exists(img_path):
                            st.error("Face already added!")
                        else:
                            pil_image.save(img_path)
                            st.success("Face added successfully!")

        else:
            st.info("Your face is identified successfully!")
            face = face_locations[0]
            # display faces
            # Print the location of each face in this image
            top, right, bottom, left = face
            # You can access the actual face itself like this:
            face_image = image[top:bottom, left:right]
            pil_image = Image.fromarray(face_image)
            st.image(pil_image, use_column_width="auto")
            st.write(face_name)
            if st.button("Save", key="button"):
                img_name = str(uuid.uuid4()) + f"_{face_name}_0" + ".jpg"
                img_path = os.path.join(img_dir, img_name)
                if os.path.exists(img_path):
                    st.error("Face already added!")
                else:
                    pil_image.save(img_path)
                    st.success("Face added successfully!")

    st.write("Now lets see your known-faces database!")
    images = os.listdir(img_dir)
    if len(images) <= 0:
        st.error("No faces have been added yet.")
    else:
        cols = st.columns(len(images))
        for i, img in enumerate(images):
            face_name = img.split("_")[1]
            cols[i].image(os.path.join(img_dir, img), use_column_width="auto")
            cols[i].write(face_name)

    if st.button("Clear All"):
        for img in images:
            os.remove(os.path.join(img_dir, img))
        st.success("All images cleared!")
        st.experimental_rerun()

    st.info("If you are satisfied with your images, click on the button below to complete this level.")
    if st.button("Complete"):
        complete_level(LEVEL)


render_page(step2_page, LEVEL)