Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -58,13 +58,7 @@ def image_to_base64(image):
|
|
58 |
|
59 |
|
60 |
# Define the Gradio interfaces
|
61 |
-
|
62 |
-
fn=crop_face,
|
63 |
-
inputs="text",
|
64 |
-
outputs="text",
|
65 |
-
title="Face Cropper",
|
66 |
-
description="Input a base64 encoded image to get a base64 encoded cropped face."
|
67 |
-
)
|
68 |
|
69 |
base64_converter_interface = gr.Interface(
|
70 |
fn=image_to_base64,
|
@@ -74,5 +68,13 @@ base64_converter_interface = gr.Interface(
|
|
74 |
description="Upload an image to convert it to a Base64 encoded string."
|
75 |
)
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
if __name__ == "__main__":
|
78 |
-
gr.TabbedInterface([face_crop_interface, base64_converter_interface], ["
|
|
|
58 |
|
59 |
|
60 |
# Define the Gradio interfaces
|
61 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
base64_converter_interface = gr.Interface(
|
64 |
fn=image_to_base64,
|
|
|
68 |
description="Upload an image to convert it to a Base64 encoded string."
|
69 |
)
|
70 |
|
71 |
+
face_crop_interface = gr.Interface(
|
72 |
+
fn=crop_face,
|
73 |
+
inputs="text",
|
74 |
+
outputs="text",
|
75 |
+
title="Face Cropper",
|
76 |
+
description="Input a base64 encoded image to get a base64 encoded cropped face."
|
77 |
+
)
|
78 |
+
|
79 |
if __name__ == "__main__":
|
80 |
+
gr.TabbedInterface([face_crop_interface, base64_converter_interface], ["Convert to Base64","Crop Face"]).launch()
|