Spaces:
Runtime error
Runtime error
Commit
Β·
0d14c53
1
Parent(s):
56e4869
add tab
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
from pixelize_processor import create_pixelize_tab
|
3 |
-
|
4 |
-
# from other_processor import create_other_tab
|
5 |
|
6 |
# Create main Gradio interface
|
7 |
with gr.Blocks(title="Image Processing Suite") as demo:
|
@@ -9,8 +8,8 @@ with gr.Blocks(title="Image Processing Suite") as demo:
|
|
9 |
|
10 |
# Create tabs for different processing functions
|
11 |
create_pixelize_tab()
|
|
|
12 |
# Add more tabs as needed
|
13 |
-
# create_other_tab()
|
14 |
|
15 |
# Launch the interface
|
16 |
if __name__ == "__main__":
|
|
|
1 |
import gradio as gr
|
2 |
from pixelize_processor import create_pixelize_tab
|
3 |
+
from lut_processor import create_lut_tab
|
|
|
4 |
|
5 |
# Create main Gradio interface
|
6 |
with gr.Blocks(title="Image Processing Suite") as demo:
|
|
|
8 |
|
9 |
# Create tabs for different processing functions
|
10 |
create_pixelize_tab()
|
11 |
+
create_lut_tab()
|
12 |
# Add more tabs as needed
|
|
|
13 |
|
14 |
# Launch the interface
|
15 |
if __name__ == "__main__":
|