Update app.py
Browse files
app.py
CHANGED
@@ -75,24 +75,38 @@ def save_to_database(name, roll_no, image_path):
|
|
75 |
|
76 |
def save_image_to_hugging_face(image, name, roll_no):
|
77 |
""" Saves the image locally to the KNOWN_FACES_DIR and uploads it to Hugging Face. """
|
|
|
|
|
|
|
|
|
|
|
78 |
filename = f"{name}_{roll_no}.jpg"
|
79 |
-
local_path = os.path.join(KNOWN_FACES_DIR, filename)
|
80 |
|
81 |
try:
|
82 |
-
# Convert image to RGB if
|
83 |
if image.mode != "RGB":
|
84 |
image = image.convert("RGB")
|
85 |
-
image.save(local_path) # Save image locally to known_faces directory
|
86 |
|
87 |
-
#
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
except Exception as e:
|
91 |
-
st.error(f"Error uploading image
|
92 |
|
93 |
return local_path
|
94 |
|
95 |
|
|
|
96 |
# Initialize the database when the app starts
|
97 |
initialize_database()
|
98 |
|
|
|
75 |
|
76 |
def save_image_to_hugging_face(image, name, roll_no):
|
77 |
""" Saves the image locally to the KNOWN_FACES_DIR and uploads it to Hugging Face. """
|
78 |
+
# Ensure the directory exists
|
79 |
+
if not os.path.exists(KNOWN_FACES_DIR):
|
80 |
+
os.makedirs(KNOWN_FACES_DIR)
|
81 |
+
|
82 |
+
# Construct the local file path
|
83 |
filename = f"{name}_{roll_no}.jpg"
|
84 |
+
local_path = os.path.join(KNOWN_FACES_DIR, filename)
|
85 |
|
86 |
try:
|
87 |
+
# Convert image to RGB if necessary
|
88 |
if image.mode != "RGB":
|
89 |
image = image.convert("RGB")
|
|
|
90 |
|
91 |
+
# Save the image to the known_faces directory
|
92 |
+
image.save(local_path)
|
93 |
+
|
94 |
+
# Upload the saved file to Hugging Face
|
95 |
+
api.upload_file(
|
96 |
+
path_or_fileobj=local_path,
|
97 |
+
path_in_repo=filename,
|
98 |
+
repo_id=REPO_ID,
|
99 |
+
repo_type="space",
|
100 |
+
token=hf_token,
|
101 |
+
)
|
102 |
+
st.success(f"Image saved to {KNOWN_FACES_DIR} and uploaded to Hugging Face as {filename}.")
|
103 |
except Exception as e:
|
104 |
+
st.error(f"Error saving or uploading image: {e}")
|
105 |
|
106 |
return local_path
|
107 |
|
108 |
|
109 |
+
|
110 |
# Initialize the database when the app starts
|
111 |
initialize_database()
|
112 |
|