Spaces:
Runtime error
Runtime error
jens
commited on
Commit
·
c02210d
1
Parent(s):
a68e603
SAM encoding
Browse files
app.py
CHANGED
@@ -33,6 +33,9 @@ with block:
|
|
33 |
with gr.Column():
|
34 |
with gr.Row():
|
35 |
input_image = gr.Image(label='Input', type='pil', source='webcam', tool=None)
|
|
|
|
|
|
|
36 |
masks_annotated_image = gr.AnnotatedImage(label='Segments', height=512)
|
37 |
pcl_figure = gr.Model3D(label="3-D Reconstruction", clear_color=[1.0, 1.0, 1.0, 1.0])
|
38 |
with gr.Column():
|
@@ -77,6 +80,15 @@ with block:
|
|
77 |
return img, point_coords, point_labels
|
78 |
input_image.select(on_input_image_select, [input_image, point_coords, point_labels, point_label_radio], [input_image, point_coords, point_labels], queue=False)
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
def on_click_sam_dencode_btn(inputs):
|
81 |
print("inferencing")
|
82 |
image = inputs[raw_image]
|
|
|
33 |
with gr.Column():
|
34 |
with gr.Row():
|
35 |
input_image = gr.Image(label='Input', type='pil', source='webcam', tool=None)
|
36 |
+
with gr.Column():
|
37 |
+
sam_encode_btn = gr.Button('Encode', variant='primary')
|
38 |
+
sam_encode_status = gr.Label('Not encoded yet')
|
39 |
masks_annotated_image = gr.AnnotatedImage(label='Segments', height=512)
|
40 |
pcl_figure = gr.Model3D(label="3-D Reconstruction", clear_color=[1.0, 1.0, 1.0, 1.0])
|
41 |
with gr.Column():
|
|
|
80 |
return img, point_coords, point_labels
|
81 |
input_image.select(on_input_image_select, [input_image, point_coords, point_labels, point_label_radio], [input_image, point_coords, point_labels], queue=False)
|
82 |
|
83 |
+
def on_click_sam_encode_btn(inputs):
|
84 |
+
print("encoding")
|
85 |
+
# encode image on click
|
86 |
+
sam.encode(inputs[input_image])
|
87 |
+
print("encoding done")
|
88 |
+
return {sam_encode_status: 'Image Encoded!'}
|
89 |
+
|
90 |
+
depth_reconstruction_btn.click(on_click_sam_encode_btn, components, [pcl_figure], queue=False)
|
91 |
+
|
92 |
def on_click_sam_dencode_btn(inputs):
|
93 |
print("inferencing")
|
94 |
image = inputs[raw_image]
|