File size: 1,710 Bytes
20f7338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st

def home():
    st.markdown("""

        # Image Organizer Web App

        A web application using face recognition in Python with Streamlit.

        ## Introduction

        This project utilizes the face recognition Python module to build a web app powered by Streamlit. It allows users to organize images using face recognition.

        ## Features

        - Face detection, recognition and image organizer
        - Streamlit for a user-friendly web interface

        ## Installation

        1. Clone the repository:

        ```bash
        git clone https://github.com/CrimsonREwind/image-organizer-web-app.git
        cd image-organizer-web-app
        ```

        2. Install dependencies:

        ```bash
        pip install -r requirements.txt
        ```

        3. Run the Streamlit app:

        ```bash
        streamlit run app.py
        ```

        Visit `http://localhost:8501` in your browser to access the web app.

        ## Usage

        - Open the web app in your browser.
        - You can use register page to register your face in database
        - You can use add page to add images to be organized under registered face
        - You can use show page to see organized images

        ## Contributing

        Feel free to contribute to the project! If you find bugs, have feature requests, or want to improve the code, follow these steps:

        1. Fork the repository.
        2. Create a new branch: `git checkout -b feature/bugfix-your-feature`.
        3. Commit your changes: `git commit -m 'Add some feature'`.
        4. Push to the branch: `git push origin feature/bugfix-your-feature`.
        5. Submit a pull request.

        """)