updates
Browse files
home.py
CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
|
|
3 |
def home():
|
4 |
st.markdown("""
|
5 |
|
6 |
-
# Face Recognition
|
7 |
|
8 |
A web application using face recognition in Python with Streamlit.
|
9 |
|
@@ -21,8 +21,8 @@ This project utilizes the face recognition Python module to build a web app powe
|
|
21 |
1. Clone the repository:
|
22 |
|
23 |
```bash
|
24 |
-
git clone https://github.com/
|
25 |
-
cd
|
26 |
```
|
27 |
|
28 |
2. Install dependencies:
|
@@ -46,15 +46,5 @@ Visit `http://localhost:8501` in your browser to access the web app.
|
|
46 |
- You can use login page to see if user is registered or not
|
47 |
- All the activities like login, register will be stored in log file
|
48 |
|
49 |
-
## Contributing
|
50 |
-
|
51 |
-
Feel free to contribute to the project! If you find bugs, have feature requests, or want to improve the code, follow these steps:
|
52 |
-
|
53 |
-
1. Fork the repository.
|
54 |
-
2. Create a new branch: `git checkout -b feature/bugfix-your-feature`.
|
55 |
-
3. Commit your changes: `git commit -m 'Add some feature'`.
|
56 |
-
4. Push to the branch: `git push origin feature/bugfix-your-feature`.
|
57 |
-
5. Submit a pull request.
|
58 |
-
|
59 |
|
60 |
""")
|
|
|
3 |
def home():
|
4 |
st.markdown("""
|
5 |
|
6 |
+
# Face Recognition Application
|
7 |
|
8 |
A web application using face recognition in Python with Streamlit.
|
9 |
|
|
|
21 |
1. Clone the repository:
|
22 |
|
23 |
```bash
|
24 |
+
git clone https://github.com/prabakarankannan/face-recog.git
|
25 |
+
cd face-recog
|
26 |
```
|
27 |
|
28 |
2. Install dependencies:
|
|
|
46 |
- You can use login page to see if user is registered or not
|
47 |
- All the activities like login, register will be stored in log file
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
""")
|