Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -62,12 +62,18 @@ def segment_image(input_image, text_input):
|
|
62 |
|
63 |
for i, mask_dict in enumerate(masks):
|
64 |
mask_data = (mask_dict['segmentation'] * 255).astype(np.uint8)
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
x, y, w, h = map(int, mask_dict['bbox'])
|
68 |
cropped_region = segmented_region[y:y+h, x:x+w]
|
69 |
|
70 |
-
# Convert
|
71 |
_, buffer = cv2.imencode(".png", cropped_region)
|
72 |
segmented_image_base64 = base64.b64encode(buffer).decode()
|
73 |
|
@@ -84,7 +90,6 @@ def segment_image(input_image, text_input):
|
|
84 |
return segmented_regions
|
85 |
|
86 |
|
87 |
-
|
88 |
# def segment_image(input_image, text_input):
|
89 |
# image_bytes = base64.b64decode(input_image)
|
90 |
# image = Image.open(BytesIO(image_bytes))
|
|
|
62 |
|
63 |
for i, mask_dict in enumerate(masks):
|
64 |
mask_data = (mask_dict['segmentation'] * 255).astype(np.uint8)
|
65 |
+
|
66 |
+
# Create a mask with the same shape as the original image
|
67 |
+
mask = np.zeros_like(image)
|
68 |
+
mask[:, :] = mask_data[:, :, np.newaxis]
|
69 |
+
|
70 |
+
# Apply the mask to the original image
|
71 |
+
segmented_region = cv2.bitwise_and(image, mask)
|
72 |
|
73 |
x, y, w, h = map(int, mask_dict['bbox'])
|
74 |
cropped_region = segmented_region[y:y+h, x:x+w]
|
75 |
|
76 |
+
# Convert to base64 image
|
77 |
_, buffer = cv2.imencode(".png", cropped_region)
|
78 |
segmented_image_base64 = base64.b64encode(buffer).decode()
|
79 |
|
|
|
90 |
return segmented_regions
|
91 |
|
92 |
|
|
|
93 |
# def segment_image(input_image, text_input):
|
94 |
# image_bytes = base64.b64decode(input_image)
|
95 |
# image = Image.open(BytesIO(image_bytes))
|