MANIKANDAN A commited on
Commit
73e907d
·
1 Parent(s): 32fe836

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +76 -54
app.py CHANGED
@@ -1,72 +1,94 @@
1
- import io
2
- import os
3
  import streamlit as st
4
- import requests
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
- @st.cache_resource
12
- def get_model():
13
- return get_caption_model()
 
 
 
 
 
 
 
 
 
 
 
14
 
15
- caption_model = get_model()
 
 
 
 
 
 
 
 
16
 
17
- def translate_caption(caption, target_language='en'):
18
- translated = translator.translate(caption, dest=target_language)
19
- return translated.text
 
20
 
21
- def predict(cap_col):
22
- captions = []
23
- pred_caption = generate_caption('tmp.jpg', caption_model)
24
 
25
- cap_col.markdown('#### Predicted Captions:')
26
- translated_caption = translate_caption(pred_caption, target_language)
27
- captions.append(translated_caption)
 
 
 
 
 
 
28
 
29
- for _ in range(4):
30
- pred_caption = generate_caption('tmp.jpg', caption_model, add_noise=True)
31
- if pred_caption not in captions:
32
- translated_caption = translate_caption(pred_caption, target_language)
33
- captions.append(translated_caption)
34
 
35
- cap_col.markdown('<div class="caption-container">', unsafe_allow_html=True)
36
- for c in captions:
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
- # Language selection dropdown
50
- target_language = st.selectbox('Select Target Language', ['en', 'ta', 'hi', 'es', 'fr', 'zh-cn'], index=0)
 
 
 
 
 
 
 
 
51
 
52
- # Process image and generate captions
53
- if img_url:
54
- img = Image.open(requests.get(img_url, stream=True).raw)
55
- img = img.convert('RGB')
56
- col1.image(img, caption="Input Image", use_column_width=True)
57
- img.save('tmp.jpg')
58
- predict(col2)
59
 
60
- st.markdown('<center style="opacity: 70%">OR</center>', unsafe_allow_html=True)
 
 
 
 
 
 
61
 
62
- elif img_upload:
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
- # Remove temporary image file
71
- if img_url or img_upload:
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()