lihaowei1999

Results 1 issues of lihaowei1999

In `func_2d.util.random_click`, the clicked point is generated as: ``` def random_click(mask, point_label = 1): max_label = max(set(mask.flatten())) if round(max_label) == 0: point_label = round(max_label) indices = np.argwhere(mask == max_label) return...