hlydecker commited on
Commit
d67669b
·
1 Parent(s): 4a62603

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -15
app.py CHANGED
@@ -33,22 +33,11 @@ predictor = DefaultPredictor(cfg)
33
 
34
  def segment_buildings(im):
35
 
36
- # Convert PIL Image to NumPy array
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
- # We can use `Visualizer` to draw the predictions on the image.
46
- v = Visualizer(im, MetadataCatalog.get(cfg.DATASETS.TRAIN[0]), scale=1.2)
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
  """