Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1142,9 +1142,9 @@ if __name__ == "__main__":
|
|
1142 |
inputs=[
|
1143 |
input_image,
|
1144 |
paper_size,
|
1145 |
-
0.02,
|
1146 |
-
'mm',
|
1147 |
-
'Off',
|
1148 |
output_options
|
1149 |
],
|
1150 |
outputs=[dxf_file, output_image, outlines_image, mask_image, scale_info]
|
|
|
1142 |
inputs=[
|
1143 |
input_image,
|
1144 |
paper_size,
|
1145 |
+
gr.Number(value=0.02, visible=False), # Create hidden components
|
1146 |
+
gr.Textbox(value='mm', visible=False),
|
1147 |
+
gr.Textbox(value='Off', visible=False),
|
1148 |
output_options
|
1149 |
],
|
1150 |
outputs=[dxf_file, output_image, outlines_image, mask_image, scale_info]
|