Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import numpy as np | |
| import torch | |
| import torch.nn.functional as F | |
| import os | |
| import cv2 | |
| import pathlib | |
| from load_models import PPC_SAM | |
| # device = 'cuda' if torch.cuda.is_available() else 'cpu' | |
| device = "cpu" | |
| H = 512 | |
| W = 512 | |
| threshold_ppc = 0.5 | |
| threshold_sam = 0 | |
| test_example_dir = pathlib.Path("./examples") | |
| test_examples = [str(test_example_dir / x) for x in sorted(os.listdir(test_example_dir))] | |
| default_example = test_examples[0] | |
| # ----------------------------------------------------------------------------- | |
| # Model initialization functions | |
| # ----------------------------------------------------------------------------- | |
| def load_model(device = "cuda"): | |
| exp = PPC_SAM(device=device) | |
| return exp | |
| # ----------------------------------------------------------------------------- | |
| # PPC-SAM help functions | |
| # ----------------------------------------------------------------------------- | |
| import os | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from PIL import Image | |
| def visualize_and_save_binary_mask(mask, save_dir, file_name_prefix): | |
| """ | |
| Visualize and save a binary mask. | |
| Parameters: | |
| - mask (np.array): The binary mask to save and visualize, with shape (H, W) or (H, W, 3). | |
| - save_dir (str): Directory where the images will be saved. | |
| - file_name_prefix (str): Prefix for the saved file names. | |
| Saves the following image: | |
| - mask: "{file_name_prefix}_mask.png" | |
| - colored mask: "{file_name_prefix}_mask_colored.png" (if mask is grayscale) | |
| """ | |
| if isinstance(mask, np.ndarray): | |
| # Check if mask is RGB (3 channels) | |
| if len(mask.shape) == 3 and mask.shape[2] == 3: | |
| mask_image = Image.fromarray(mask) | |
| else: | |
| # Ensure mask is binary (0 and 1) and convert to 0 and 255 | |
| mask = (mask > 0).astype(np.uint8) * 255 | |
| mask_image = Image.fromarray(mask) | |
| else: | |
| mask_image = mask | |
| # Ensure the save directory exists | |
| os.makedirs(save_dir, exist_ok=True) | |
| # Save the binary mask or RGB mask | |
| mask_image.save(os.path.join(save_dir, f"{file_name_prefix}_mask.png")) | |
| print(f"Mask images saved in {save_dir}") | |
| # ----------------------------------------------------------------------------- | |
| # Vizualization functions | |
| # ----------------------------------------------------------------------------- | |
| def _get_overlay(img, lay, const_color="l_blue"): | |
| """ | |
| Helper function for preparing overlay | |
| """ | |
| assert lay.ndim==2, "Overlay must be 2D, got shape: " + str(lay.shape) | |
| if img.ndim == 2: | |
| img = np.repeat(img[...,None], 3, axis=-1) | |
| assert img.ndim==3, "Image must be 3D, got shape: " + str(img.shape) | |
| if const_color == "blue": | |
| const_color = 255*np.array([0, 0, 1]) | |
| elif const_color == "green": | |
| const_color = 255*np.array([0, 1, 0]) | |
| elif const_color == "red": | |
| const_color = 255*np.array([1, 0, 0]) | |
| elif const_color == "l_blue": | |
| const_color = np.array([31, 119, 180]) | |
| elif const_color == "orange": | |
| const_color = np.array([255, 127, 14]) | |
| else: | |
| raise NotImplementedError | |
| x,y = np.nonzero(lay) | |
| for i in range(img.shape[-1]): | |
| img[x,y,i] = const_color[i] | |
| return img | |
| def image_overlay(img, mask=None, scribbles=None, contour=False, alpha=0.5): | |
| """ | |
| Overlay the ground truth mask and scribbles on the image if provided | |
| """ | |
| # assert img.ndim == 2, "Image must be 2D, got shape: " + str(img.shape) | |
| # output = np.repeat(img[...,None], 3, axis=-1) | |
| output = img | |
| if mask is not None: | |
| assert mask.ndim == 2, "Mask must be 2D, got shape: " + str(mask.shape) | |
| if contour: | |
| contours = cv2.findContours((mask[...,None]>0.5).astype(np.uint8), cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE) | |
| cv2.drawContours(output, contours[0], -1, (0, 255, 0), 2) | |
| else: | |
| mask_overlay = _get_overlay(img, mask) | |
| mask2 = 0.5*np.repeat(mask[...,None], 3, axis=-1) | |
| output = cv2.convertScaleAbs(mask_overlay * mask2 + output * (1 - mask2)) | |
| if scribbles is not None: | |
| pos_scribble_overlay = _get_overlay(output, scribbles[0,...], const_color="green") | |
| cv2.addWeighted(pos_scribble_overlay, alpha, output, 1 - alpha, 0, output) | |
| neg_scribble_overlay = _get_overlay(output, scribbles[1,...], const_color="red") | |
| cv2.addWeighted(neg_scribble_overlay, alpha, output, 1 - alpha, 0, output) | |
| return output | |
| def viz_pred_mask(img, mask=None, point_coords=None, point_labels=None, bbox_coords=None, seperate_scribble_masks=None, binary=True): | |
| """ | |
| Visualize image with clicks, scribbles, predicted mask overlaid | |
| """ | |
| assert isinstance(img, np.ndarray), "Image must be numpy array, got type: " + str(type(img)) | |
| if mask is not None: | |
| if isinstance(mask, torch.Tensor): | |
| mask = mask.cpu().numpy() | |
| if binary and mask is not None: | |
| mask = 1*(mask > 0.5) | |
| out = image_overlay(img, mask=mask, scribbles=seperate_scribble_masks) | |
| H,W = img.shape[:2] | |
| marker_size = min(H,W)//100 | |
| if point_coords is not None: | |
| for i,(col,row) in enumerate(point_coords): | |
| if point_labels[i] == 1: | |
| cv2.circle(out,(col, row), marker_size, (0,255,0), -1) | |
| else: | |
| cv2.circle(out,(col, row), marker_size, (255,0,0), -1) | |
| if bbox_coords is not None: | |
| for i in range(len(bbox_coords)//2): | |
| cv2.rectangle(out, bbox_coords[2*i], bbox_coords[2*i+1], (255,165,0), marker_size) | |
| if len(bbox_coords) % 2 == 1: | |
| cv2.circle(out, tuple(bbox_coords[-1]), marker_size, (255,165,0), -1) | |
| return out.astype(np.uint8) | |
| # ----------------------------------------------------------------------------- | |
| # Collect scribbles | |
| # ----------------------------------------------------------------------------- | |
| def get_scribbles(seperate_scribble_masks, last_scribble_mask, scribble_img): | |
| """ | |
| Record scribbles | |
| """ | |
| assert isinstance(seperate_scribble_masks, np.ndarray), "seperate_scribble_masks must be numpy array, got type: " + str(type(seperate_scribble_masks)) | |
| if scribble_img is not None: | |
| # Only use first layer | |
| color_mask = scribble_img.get('layers')[0] | |
| positive_scribbles = 1.0*(color_mask[...,1] > 128) | |
| negative_scribbles = 1.0*(color_mask[...,0] > 128) | |
| seperate_scribble_masks = np.stack([positive_scribbles, negative_scribbles], axis=0) | |
| last_scribble_mask = None | |
| return seperate_scribble_masks, last_scribble_mask | |
| def get_predictions(input_img, click_coords, click_labels, bbox_coords, seperate_scribble_masks, | |
| low_res_mask, img_features, multimask_mode): | |
| """ | |
| Make predictions | |
| """ | |
| box = None | |
| if len(bbox_coords) == 1: | |
| gr.Error("Please click a second time to define the bounding box") | |
| box = None | |
| elif len(bbox_coords) == 2: | |
| box = torch.Tensor(bbox_coords).flatten()[None,None,...].int().to(device) # B x n x 4 | |
| if seperate_scribble_masks is not None: | |
| scribble = torch.from_numpy(seperate_scribble_masks)[None,...].to(device) | |
| else: | |
| scribble = None | |
| #--------------------------# | |
| # visualize_and_save_binary_mask(input_img, './output', 'example_rgb_mask') | |
| image = input_img | |
| box = box.squeeze(0) if box != None else None | |
| points_coords = torch.Tensor([click_coords]).int().to(device) if len(click_coords)>0 else None | |
| points_labels = torch.Tensor([click_labels]).int().to(device) if len(click_labels)>0 else None | |
| #--------------------------# | |
| prompts = dict( | |
| image=image, | |
| point_coords=points_coords, | |
| point_labels=points_labels, | |
| scribble=scribble, | |
| mask_input=low_res_mask.to(device) if low_res_mask is not None else None, | |
| boxes=box, | |
| ) | |
| masks, img_features, low_res_mask = predictor.predict([prompts], multimask_ouput=multimask_mode) | |
| return masks.cpu(), img_features, low_res_mask | |
| def refresh_predictions(input_img, output_img, click_coords, click_labels, bbox_coords, brush_label, | |
| scribble_img, seperate_scribble_masks, last_scribble_mask, | |
| best_mask, low_res_mask, img_features, binary_checkbox, multimask_mode): | |
| # Record any new scribbles | |
| seperate_scribble_masks, last_scribble_mask = get_scribbles( | |
| seperate_scribble_masks, last_scribble_mask, scribble_img | |
| ) | |
| # Make prediction | |
| stacked_masks, img_features, low_res_mask = get_predictions( | |
| input_img, click_coords, click_labels, bbox_coords, seperate_scribble_masks, low_res_mask, img_features, multimask_mode | |
| ) | |
| # Update input visualizations | |
| # --------------------------------------# | |
| if len(stacked_masks.shape) == 3 and stacked_masks.shape[0] == 3: | |
| best_mask = stacked_masks[0] | |
| input_img_copy = [] | |
| for i in range(1, stacked_masks.shape[0]): | |
| input_img_copy.append(input_img.copy()) | |
| # --------------------------------------# | |
| mask_to_viz = best_mask.numpy() | |
| click_input_viz = viz_pred_mask(input_img, mask_to_viz, click_coords, click_labels, bbox_coords, seperate_scribble_masks, binary_checkbox) | |
| empty_channel = np.zeros(input_img.shape[:2]).astype(np.uint8) | |
| full_channel = 255*np.ones(input_img.shape[:2]).astype(np.uint8) | |
| gray_mask = (255*mask_to_viz).astype(np.uint8) | |
| bg = viz_pred_mask(input_img, mask_to_viz, click_coords, click_labels, bbox_coords, None, binary_checkbox) | |
| old_scribbles = scribble_img.get('layers')[0] | |
| scribble_mask = 255*(old_scribbles > 0).any(-1) | |
| scribble_input_viz = { | |
| "background": np.stack([bg[...,i] for i in range(3)]+[full_channel], axis=-1), | |
| ["layers"][0]: [np.stack([ | |
| (255*seperate_scribble_masks[1]).astype(np.uint8), | |
| (255*seperate_scribble_masks[0]).astype(np.uint8), | |
| empty_channel, | |
| scribble_mask | |
| ], axis=-1)], | |
| "composite": np.stack([click_input_viz[...,i] for i in range(3)]+[empty_channel], axis=-1), | |
| } | |
| mask_img = 255*(mask_to_viz[...,None].repeat(axis=2, repeats=3)>threshold_sam) if binary_checkbox else mask_to_viz[...,None].repeat(axis=2, repeats=3) | |
| out_viz = [ | |
| viz_pred_mask(input_img, mask_to_viz, point_coords=None, point_labels=None, bbox_coords=None, seperate_scribble_masks=None, binary=binary_checkbox), | |
| mask_img, | |
| ] | |
| for i in range(1, stacked_masks.shape[0]): | |
| mask = stacked_masks[i].numpy() | |
| mask_img = 255*(mask[...,None].repeat(axis=2, repeats=3)>threshold_sam) if binary_checkbox else mask_to_viz[...,None].repeat(axis=2, repeats=3) | |
| tmp_viz = viz_pred_mask(input_img_copy[i-1], mask, point_coords=None, point_labels=None, bbox_coords=None, seperate_scribble_masks=None, binary=binary_checkbox) | |
| out_viz.append(tmp_viz) | |
| out_viz.append(mask_img) | |
| return click_input_viz, scribble_input_viz, out_viz, best_mask, low_res_mask, img_features, seperate_scribble_masks, last_scribble_mask | |
| def get_select_coords(input_img, brush_label, bbox_label, best_mask, low_res_mask, | |
| click_coords, click_labels, bbox_coords, | |
| seperate_scribble_masks, last_scribble_mask, scribble_img, img_features, | |
| output_img, binary_checkbox, multimask_mode, autopredict_checkbox, evt: gr.SelectData): | |
| """ | |
| Record user click and update the prediction | |
| """ | |
| # Record click coordinates | |
| if bbox_label: | |
| bbox_coords.append(evt.index) | |
| elif brush_label in ['Positive (green)', 'Negative (red)']: | |
| click_coords.append(evt.index) | |
| click_labels.append(1 if brush_label=='Positive (green)' else 0) | |
| else: | |
| raise TypeError("Invalid brush label: {brush_label}") | |
| # Only make new prediction if not waiting for additional bounding box click | |
| if (len(bbox_coords) % 2 == 0) and autopredict_checkbox: | |
| click_input_viz, scribble_input_viz, output_viz, best_mask, low_res_mask, img_features, seperate_scribble_masks, last_scribble_mask = refresh_predictions( | |
| input_img, output_img, click_coords, click_labels, bbox_coords, brush_label, | |
| scribble_img, seperate_scribble_masks, last_scribble_mask, | |
| best_mask, low_res_mask, img_features, binary_checkbox, multimask_mode | |
| ) | |
| return click_input_viz, scribble_input_viz, output_viz, best_mask, low_res_mask, img_features, click_coords, click_labels, bbox_coords, seperate_scribble_masks, last_scribble_mask | |
| else: | |
| click_input_viz = viz_pred_mask( | |
| input_img, best_mask, click_coords, click_labels, bbox_coords, seperate_scribble_masks, binary_checkbox | |
| ) | |
| scribble_input_viz = viz_pred_mask( | |
| input_img, best_mask, click_coords, click_labels, bbox_coords, None, binary_checkbox | |
| ) | |
| # Don't update output image if waiting for additional bounding box click | |
| return click_input_viz, scribble_input_viz, output_img, best_mask, low_res_mask, img_features, click_coords, click_labels, bbox_coords, seperate_scribble_masks, last_scribble_mask | |
| def undo_click( input_img, brush_label, bbox_label, best_mask, low_res_mask, click_coords, click_labels, bbox_coords, | |
| seperate_scribble_masks, last_scribble_mask, scribble_img, img_features, | |
| output_img, binary_checkbox, multimask_mode, autopredict_checkbox): | |
| """ | |
| Remove last click and then update the prediction | |
| """ | |
| if bbox_label: | |
| if len(bbox_coords) > 0: | |
| bbox_coords.pop() | |
| elif brush_label in ['Positive (green)', 'Negative (red)']: | |
| if len(click_coords) > 0: | |
| click_coords.pop() | |
| click_labels.pop() | |
| else: | |
| raise TypeError("Invalid brush label: {brush_label}") | |
| # Only make new prediction if not waiting for additional bounding box click | |
| if (len(bbox_coords)==0 or len(bbox_coords)==2) and autopredict_checkbox: | |
| click_input_viz, scribble_input_viz, output_viz, best_mask, low_res_mask, img_features, seperate_scribble_masks, last_scribble_mask = refresh_predictions( | |
| input_img, output_img, click_coords, click_labels, bbox_coords, brush_label, | |
| scribble_img, seperate_scribble_masks, last_scribble_mask, | |
| best_mask, low_res_mask, img_features, binary_checkbox, multimask_mode | |
| ) | |
| return click_input_viz, scribble_input_viz, output_viz, best_mask, low_res_mask, img_features, click_coords, click_labels, bbox_coords, seperate_scribble_masks, last_scribble_mask | |
| else: | |
| click_input_viz = viz_pred_mask( | |
| input_img, best_mask, click_coords, click_labels, bbox_coords, seperate_scribble_masks, binary_checkbox | |
| ) | |
| scribble_input_viz = viz_pred_mask( | |
| input_img, best_mask, click_coords, click_labels, bbox_coords, None, binary_checkbox | |
| ) | |
| # Don't update output image if waiting for additional bounding box click | |
| return click_input_viz, scribble_input_viz, output_img, best_mask, low_res_mask, img_features, click_coords, click_labels, bbox_coords, seperate_scribble_masks, last_scribble_mask | |
| # -------------------------------------------------- | |
| with gr.Blocks(theme=gr.themes.Default(text_size=gr.themes.sizes.text_lg)) as demo: | |
| # State variables | |
| seperate_scribble_masks = gr.State(np.zeros((2, H, W), dtype=np.float32)) | |
| last_scribble_mask = gr.State(np.zeros((H, W), dtype=np.float32)) | |
| click_coords = gr.State([]) | |
| click_labels = gr.State([]) | |
| bbox_coords = gr.State([]) | |
| # Load default model | |
| predictor = load_model(device=device) | |
| img_features = gr.State(None) # For SAM models | |
| best_mask = gr.State(None) | |
| low_res_mask = gr.State(None) | |
| gr.HTML("""\ | |
| <h1 style="text-align: center; font-size: 28pt;">PPC-SAM Demo</h1> | |
| """) | |
| with gr.Accordion("Open for instructions!", open=False): | |
| gr.Markdown( | |
| """ | |
| * Select an input image from the examples below or upload your own image through the <b>'Input Image'</b> tab. | |
| * Use the <b>'Points/Boxes'</b> tab to draw <span style='color:green'>positive</span> or <span style='color:red'>negative</span> points and <span style='color:orange'>bounding boxes</span> by placing two points. | |
| * The <b>'Output'</b> tab will show the models' prediction based on your current inputs and the previous prediction. | |
| * The <b>'Output 1, 2'</b> are results of PPC-SAM; <b>'Output 3, 4'</b> are results of SAM-HQ; and <b>'Output 5, 6'</b> are results of SAM. | |
| * The <b>'Clear All Inputs'</b> button will clear all inputs (including points, bounding boxes, and the last prediction). | |
| """ | |
| ) | |
| # Interface ------------------------------------ | |
| with gr.Row(): | |
| model_dropdown = gr.Dropdown( | |
| label="Model", | |
| multiselect=False, | |
| interactive=False, | |
| visible=False | |
| ) | |
| with gr.Row(): | |
| with gr.Column(scale=1): | |
| brush_label = gr.Radio(["Positive (green)", "Negative (red)"], | |
| value="Positive (green)", label="Scribble/Click Label") | |
| bbox_label = gr.Checkbox(value=False, label="Bounding Box (2 points)") | |
| with gr.Column(scale=1): | |
| binary_checkbox = gr.Checkbox(value=True, label="Show binary masks", visible=False) | |
| autopredict_checkbox = gr.Checkbox(value=False, label="Auto-update prediction on clicks", visible=False) | |
| with gr.Accordion("Troubleshooting tips", open=True): | |
| gr.Markdown("1. If you encounter an error try clicking 'Clear All Inputs'.") | |
| gr.Markdown("2. There may be a brief delay on the first click.") | |
| gr.Markdown("3. It takes about 3 minutes to run on the default CPU.") | |
| multimask_mode = gr.Checkbox(value=False, label="Multi-mask mode", visible=False) | |
| with gr.Row(): | |
| display_height = 512 | |
| green_brush = gr.Brush(colors=["#00FF00"], color_mode="fixed", default_size=2) | |
| red_brush = gr.Brush(colors=["#FF0000"], color_mode="fixed", default_size=2) | |
| with gr.Column(scale=1): | |
| scribble_img = gr.ImageEditor( | |
| label="Input", | |
| image_mode="RGB", | |
| brush=green_brush, | |
| type='numpy', | |
| value=default_example, | |
| transforms=(), | |
| sources=(), | |
| show_download_button=True, | |
| # height=display_height, | |
| visible=False | |
| ) | |
| with gr.Tab("Points/Boxes") as click_tab: | |
| click_img = gr.Image( | |
| label="Input", | |
| type='numpy', | |
| value=default_example, | |
| show_download_button=True, | |
| sources=(), | |
| container=True, | |
| # height=display_height-50 | |
| ) | |
| with gr.Tab("Input Image"): | |
| input_img = gr.Image( | |
| label="Input", | |
| image_mode="RGB", | |
| value=default_example, | |
| container=True | |
| # height=display_height | |
| ) | |
| gr.Markdown("To upload your own image: click the `x` in the top right corner to clear the current image, then drag & drop") | |
| with gr.Row(): | |
| undo_click_button = gr.Button("Undo Last Click") | |
| clear_click_button = gr.Button("Clear Points/Boxes", variant="stop") | |
| with gr.Column(scale=1): | |
| with gr.Tab("Output"): | |
| output_img = gr.Gallery( | |
| label='Output', | |
| columns=1, | |
| elem_id="gallery", | |
| preview=True, | |
| object_fit="scale-down", | |
| # height=display_height, | |
| container=True | |
| ) | |
| gr.Markdown("Output 1, 2: PPC-SAM; Output 3, 4: SAM-HQ; Output 5, 6: SAM.") | |
| submit_button = gr.Button("Submit", variant='primary') | |
| clear_all_button = gr.ClearButton([scribble_img], value="Clear All Inputs", variant="stop") | |
| clear_mask_button = gr.Button("Clear Input Mask", visible=False) | |
| # ---------------------------------------------- | |
| # Loading Examples | |
| # ---------------------------------------------- | |
| gr.Examples(examples=test_examples, | |
| inputs=[input_img], | |
| examples_per_page=12, | |
| label='Examples from datasets unseen during training' | |
| ) | |
| # When clear clicks button is clicked | |
| def clear_click_history(input_img): | |
| return input_img, input_img, [], [], [], None, None | |
| clear_click_button.click(clear_click_history, | |
| inputs=[input_img], | |
| outputs=[click_img, scribble_img, click_coords, click_labels, bbox_coords, best_mask, low_res_mask]) | |
| # When clear all button is clicked | |
| def clear_all_history(input_img): | |
| if input_img is not None: | |
| input_shape = input_img.shape[:2] | |
| else: | |
| input_shape = (H, W) | |
| return input_img, input_img, [], [], [], [], np.zeros((2,)+input_shape, dtype=np.float32), np.zeros(input_shape, dtype=np.float32), None, None, None | |
| # def clear_history_and_pad_input(input_img): | |
| # if input_img is not None: | |
| # h,w = input_img.shape[:2] | |
| # if h != w: | |
| # # Pad to square | |
| # pad = abs(h-w) | |
| # if h > w: | |
| # padding = [(0,0), (math.ceil(pad/2),math.floor(pad/2))] | |
| # else: | |
| # padding = [(math.ceil(pad/2),math.floor(pad/2)), (0,0)] | |
| # input_img = np.pad(input_img, padding, mode='constant', constant_values=0) | |
| # return clear_all_history(input_img) | |
| input_img.change(clear_all_history, | |
| inputs=[input_img], | |
| outputs=[click_img, scribble_img, | |
| output_img, click_coords, click_labels, bbox_coords, | |
| seperate_scribble_masks, last_scribble_mask, | |
| best_mask, low_res_mask, img_features | |
| ]) | |
| clear_all_button.click(clear_all_history, | |
| inputs=[input_img], | |
| outputs=[click_img, scribble_img, | |
| output_img, click_coords, click_labels, bbox_coords, | |
| seperate_scribble_masks, last_scribble_mask, | |
| best_mask, low_res_mask, img_features | |
| ]) | |
| # clear previous prediction mask | |
| def clear_best_mask(input_img, click_coords, click_labels, bbox_coords, seperate_scribble_masks): | |
| click_input_viz = viz_pred_mask( | |
| input_img, None, click_coords, click_labels, bbox_coords, seperate_scribble_masks | |
| ) | |
| scribble_input_viz = viz_pred_mask( | |
| input_img, None, click_coords, click_labels, bbox_coords, None | |
| ) | |
| return None, None, click_input_viz, scribble_input_viz | |
| clear_mask_button.click( | |
| clear_best_mask, | |
| inputs=[input_img, click_coords, click_labels, bbox_coords, seperate_scribble_masks], | |
| outputs=[best_mask, low_res_mask, click_img, scribble_img], | |
| ) | |
| # ---------------------------------------------- | |
| # Clicks | |
| # ---------------------------------------------- | |
| click_img.select(get_select_coords, | |
| inputs=[ | |
| input_img, brush_label, bbox_label, best_mask, low_res_mask, click_coords, click_labels, bbox_coords, | |
| seperate_scribble_masks, last_scribble_mask, scribble_img, img_features, | |
| output_img, binary_checkbox, multimask_mode, autopredict_checkbox | |
| ], | |
| outputs=[click_img, scribble_img, output_img, best_mask, low_res_mask, img_features, | |
| click_coords, click_labels, bbox_coords, seperate_scribble_masks, last_scribble_mask], | |
| api_name = "get_select_coords" | |
| ) | |
| submit_button.click(fn=refresh_predictions, | |
| inputs=[input_img, output_img, click_coords, click_labels, bbox_coords, brush_label, | |
| scribble_img, seperate_scribble_masks, last_scribble_mask, | |
| best_mask, low_res_mask, img_features, binary_checkbox, multimask_mode | |
| ], | |
| outputs=[click_img, scribble_img, output_img, best_mask, low_res_mask, img_features, | |
| seperate_scribble_masks, last_scribble_mask], | |
| api_name="refresh_predictions" | |
| ) | |
| undo_click_button.click(fn=undo_click, | |
| inputs=[ | |
| input_img, brush_label, bbox_label, best_mask, low_res_mask, click_coords, | |
| click_labels, bbox_coords, | |
| seperate_scribble_masks, last_scribble_mask, scribble_img, img_features, | |
| output_img, binary_checkbox, multimask_mode, autopredict_checkbox | |
| ], | |
| outputs=[click_img, scribble_img, output_img, best_mask, low_res_mask, img_features, | |
| click_coords, click_labels, bbox_coords, seperate_scribble_masks, last_scribble_mask], | |
| api_name="undo_click" | |
| ) | |
| # ---------------------------------------------- | |
| # Scribbles | |
| # ---------------------------------------------- | |
| def change_brush_color(seperate_scribble_masks, last_scribble_mask, scribble_img, label): | |
| """ | |
| Recorn new scribbles when changing brush color | |
| """ | |
| if label == "Negative (red)": | |
| brush_update = gr.update(brush=red_brush) | |
| elif label == "Positive (green)": | |
| brush_update = gr.update(brush=green_brush) | |
| else: | |
| raise TypeError("Invalid brush color") | |
| return seperate_scribble_masks, last_scribble_mask, brush_update | |
| brush_label.change(fn=change_brush_color, | |
| inputs=[seperate_scribble_masks, last_scribble_mask, scribble_img, brush_label], | |
| outputs=[seperate_scribble_masks, last_scribble_mask, scribble_img], | |
| api_name="change_brush_color" | |
| ) | |
| if __name__ == "__main__": | |
| demo.queue(api_open=False).launch(show_api=False) |