MANIKANDAN A
commited on
Commit
·
73e907d
1
Parent(s):
32fe836
Update app.py
Browse files
app.py
CHANGED
@@ -1,72 +1,94 @@
|
|
1 |
-
import
|
2 |
-
import os
|
3 |
import streamlit as st
|
4 |
-
import
|
5 |
from PIL import Image
|
6 |
from model import get_caption_model, generate_caption
|
7 |
from googletrans import Translator
|
|
|
8 |
|
|
|
|
|
|
|
|
|
9 |
translator = Translator()
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
pred_caption = generate_caption('tmp.jpg', caption_model)
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
cap_col.markdown(f'<div class="cap-line" style="color: black; background-color: light grey; padding: 5px; margin-bottom: 5px; font-family: \'Palatino Linotype\', \'Book Antiqua\', Palatino, serif;">{c}</div>', unsafe_allow_html=True)
|
38 |
-
cap_col.markdown('</div>', unsafe_allow_html=True)
|
39 |
-
|
40 |
-
st.markdown('<h1 style="text-align:center; font-family:Arial; width:fit-content; font-size:3em; color:black; text-shadow: 2px 2px 4px #000000;">IMAGE CAPTION GENERATOR</h1>', unsafe_allow_html=True)
|
41 |
-
col1, col2 = st.columns(2)
|
42 |
-
|
43 |
-
# Image URL input
|
44 |
-
img_url = st.text_input(label='Enter Image URL')
|
45 |
-
|
46 |
-
# Image upload input
|
47 |
-
img_upload = st.file_uploader(label='Upload Image', type=['jpg', 'png', 'jpeg'])
|
48 |
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
col1.image(img, caption="Input Image", use_column_width=True)
|
57 |
-
img.save('tmp.jpg')
|
58 |
-
predict(col2)
|
59 |
|
60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
-
|
63 |
-
img = img_upload.read()
|
64 |
-
img = Image.open(io.BytesIO(img))
|
65 |
-
img = img.convert('RGB')
|
66 |
-
col1.image(img, caption="Input Image", use_column_width=True)
|
67 |
-
img.save('tmp.jpg')
|
68 |
-
predict(col2)
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
os.remove('tmp.jpg')
|
|
|
1 |
+
import sqlite3
|
|
|
2 |
import streamlit as st
|
3 |
+
from passlib.hash import bcrypt
|
4 |
from PIL import Image
|
5 |
from model import get_caption_model, generate_caption
|
6 |
from googletrans import Translator
|
7 |
+
import requests
|
8 |
|
9 |
+
# Initialize Streamlit app
|
10 |
+
st.set_page_config(page_title="Image Caption Generator", layout="wide")
|
11 |
+
|
12 |
+
# Initialize Translator
|
13 |
translator = Translator()
|
14 |
|
15 |
+
# Function to create the SQLite table if it doesn't exist
|
16 |
+
@st.cache(allow_output_mutation=True)
|
17 |
+
def create_table():
|
18 |
+
with sqlite3.connect("login.db") as conn:
|
19 |
+
cursor = conn.cursor()
|
20 |
+
cursor.execute('''
|
21 |
+
CREATE TABLE IF NOT EXISTS users (
|
22 |
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
23 |
+
username TEXT NOT NULL UNIQUE,
|
24 |
+
password TEXT NOT NULL,
|
25 |
+
email TEXT NOT NULL,
|
26 |
+
role TEXT NOT NULL
|
27 |
+
)
|
28 |
+
''')
|
29 |
|
30 |
+
# Function to handle user signup
|
31 |
+
def signup():
|
32 |
+
st.title("Signup")
|
33 |
+
st.markdown("<p style='font-size: 24px; font-weight: bold; margin-bottom: 20px; text-align: center;'>Signup</p>", unsafe_allow_html=True)
|
34 |
+
st.markdown("<p style='text-align: center;'>Please fill in the details to sign up:</p>", unsafe_allow_html=True)
|
35 |
+
|
36 |
+
new_username = st.text_input("New Username", help="Choose a unique username")
|
37 |
+
new_password = st.text_input("New Password", type="password", help="Password should be at least 8 characters long")
|
38 |
+
new_email = st.text_input("Email", help="Enter a valid email address")
|
39 |
|
40 |
+
if st.button("Signup", style='margin-top: 10px;'):
|
41 |
+
if not new_username or not new_password or not new_email:
|
42 |
+
st.error("All fields are required for signup.")
|
43 |
+
return
|
44 |
|
45 |
+
role = "user"
|
46 |
+
hashed_password = bcrypt.hash(new_password)
|
|
|
47 |
|
48 |
+
try:
|
49 |
+
with sqlite3.connect("login.db") as conn:
|
50 |
+
cursor = conn.cursor()
|
51 |
+
cursor.execute("INSERT INTO users (username, password, email, role) VALUES (?, ?, ?, ?)",
|
52 |
+
(new_username, hashed_password, new_email, role))
|
53 |
+
st.success("Signup successful! You can now login.")
|
54 |
+
st.balloons()
|
55 |
+
except sqlite3.IntegrityError:
|
56 |
+
st.error("Username already exists. Please choose a different username.")
|
57 |
|
58 |
+
# Function to handle user login
|
59 |
+
def login():
|
60 |
+
st.title("Login")
|
61 |
+
st.markdown("<p style='font-size: 24px; font-weight: bold; margin-bottom: 20px; text-align: center;'>Login</p>", unsafe_allow_html=True)
|
62 |
+
st.markdown("<p style='text-align: center;'>Please enter your login details:</p>", unsafe_allow_html=True)
|
63 |
|
64 |
+
username = st.text_input("Username", help="Enter your username")
|
65 |
+
password = st.text_input("Password", type="password", help="Enter your password")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
+
if st.button("Login", style='margin-top: 10px;'):
|
68 |
+
if not username or not password:
|
69 |
+
st.error("Username and password are required for login.")
|
70 |
+
return
|
71 |
+
|
72 |
+
try:
|
73 |
+
with sqlite3.connect("login.db") as conn:
|
74 |
+
cursor = conn.cursor()
|
75 |
+
cursor.execute("SELECT * FROM users WHERE username = ?", (username,))
|
76 |
+
user = cursor.fetchone()
|
77 |
|
78 |
+
if user and bcrypt.verify(password, user[2]):
|
79 |
+
st.success("Login successful!")
|
80 |
+
st.write(f"You are logged in as: {user[1]}")
|
81 |
+
st.image("profile_image_placeholder.jpg", caption="Your Profile Image", width=100)
|
|
|
|
|
|
|
82 |
|
83 |
+
st.session_state.username = username
|
84 |
+
st.session_state.selected_tab = "Generate Caption"
|
85 |
+
st.balloons()
|
86 |
+
else:
|
87 |
+
st.error("Login failed. Invalid username or password.")
|
88 |
+
except sqlite3.OperationalError as e:
|
89 |
+
st.error(f"An error occurred while trying to log in: {e}")
|
90 |
|
91 |
+
# Rest of the code remains the same...
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
+
if __name__ == "__main__":
|
94 |
+
main()
|
|