Spaces:
Running
on
Zero
Running
on
Zero
File size: 514 Bytes
c1e6a45 fd05616 c1e6a45 fd05616 c1e6a45 fd05616 c1e6a45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
from pixelize_processor import create_pixelize_tab
# Import other processing interfaces as needed
# from other_processor import create_other_tab
# Create main Gradio interface
with gr.Blocks(title="Image Processing Suite") as demo:
gr.Markdown("# Image Processing Suite")
# Create tabs for different processing functions
create_pixelize_tab()
# Add more tabs as needed
# create_other_tab()
# Launch the interface
if __name__ == "__main__":
demo.launch(share=True) |