(self)
| 815 | self.saved_labels = [] |
| 816 | |
| 817 | def download_parameters(self): |
| 818 | url = "https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth" |
| 819 | if not os.path.exists(self.model_checkpoint_path): |
| 820 | wget.download(url,out=self.model_checkpoint_path) |
| 821 | |
| 822 | |
| 823 | def show_mask(self, mask: np.ndarray,image: np.ndarray, |