We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326f17e commit 67e2ce5Copy full SHA for 67e2ce5
infer/wsi.py
@@ -732,6 +732,8 @@ def process_wsi_list(self, run_args):
732
wsi_path_list = glob.glob(self.input_dir + "/*")
733
wsi_path_list.sort() # ensure ordering
734
for wsi_path in wsi_path_list[:]:
735
+ if os.path.isdir(wsi_path):
736
+ continue
737
wsi_base_name = pathlib.Path(wsi_path).stem
738
msk_path = "%s/%s.png" % (self.input_mask_dir, wsi_base_name)
739
if self.save_thumb or self.save_mask:
0 commit comments