Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -33,22 +33,11 @@ predictor = DefaultPredictor(cfg)
|
|
33 |
|
34 |
def segment_buildings(im):
|
35 |
|
36 |
-
|
37 |
-
im = np.array(im)
|
38 |
-
|
39 |
-
# Ensure that the image has shape H x W x C (height x width x channels)
|
40 |
-
if im.shape[-1] == 4: # If it has 4 channels (RGBA), remove the alpha channel
|
41 |
-
im = im[:, :, :3]
|
42 |
-
|
43 |
outputs = predictor(im)
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
out_im = v.draw_instance_predictions(outputs["instances"].to("cpu")).get_image()
|
48 |
-
|
49 |
-
# Convert the output image back to PIL Image
|
50 |
-
out_im = Image.fromarray(out_im)
|
51 |
-
return out_im
|
52 |
|
53 |
# gradio components
|
54 |
"""
|
|
|
33 |
|
34 |
def segment_buildings(im):
|
35 |
|
36 |
+
im = cv2.imread(im)
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
outputs = predictor(im)
|
38 |
+
v = Visualizer(im[:, :, ::-1], MetadataCatalog.get(cfg.DATASETS.TRAIN[0]), scale=1.2)
|
39 |
+
out = v.draw_instance_predictions(outputs["instances"].to("cpu"))
|
40 |
+
return Image.fromarray(np.uint8(out.get_image())).convert('RGB')
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
# gradio components
|
43 |
"""
|