File size: 1,303 Bytes
d0ba07f
 
 
 
 
 
 
416a1c0
 
d0ba07f
 
8b5c4f1
d0ba07f
 
 
 
 
 
8b5c4f1
d0ba07f
 
 
 
 
 
8b5c4f1
416a1c0
 
 
d0ba07f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import gradio as gr
from registry import registry

def create_filter_controls():
    controls = {}
    for filter_name in registry.filters:
        params = registry.params_map.get(filter_name, {})
        with gr.Group(visible=filter_name == "Original") as group: # Create group here
            filter_controls_list = []
            for param_name, config in params.items():
                if config['type'] == int:
                    slider = gr.Slider(
                        minimum=1,
                        maximum=100,
                        value=config['default'],
                        label=param_name.replace('_', ' ').title()
                    )
                elif config['type'] == float:
                    slider = gr.Slider(
                        minimum=0.1,
                        maximum=10.0,
                        step=0.1,
                        value=config['default'],
                        label=param_name.replace('_', ' ').title()
                    )
                filter_controls_list.append(slider)
            controls[filter_name] = group # Store the group
            for control in filter_controls_list: # Add controls to the group
                group.children = group.children + [control] if group.children else [control]
    return controls