You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if I use the customized parameter like this cd.create_patches(param_dict={'n_segments': [5,10,15]})
it will use the default parameter after the second discovery image
because you use the "pop" function in the _return_superpixels param_dict.pop('n_segments', [15, 50, 80])
The text was updated successfully, but these errors were encountered:
Yes. I also find this problem, so I set a param_dict and copy the value as param_dict_c, and put the copy value to self._return_superpixels(img, method, param_dict_c), so the value will still be the param_dict after the second loop.
Maybe this can help you
if I use the customized parameter like this
cd.create_patches(param_dict={'n_segments': [5,10,15]})
it will use the default parameter after the second discovery image
because you use the "pop" function in the _return_superpixels
param_dict.pop('n_segments', [15, 50, 80])
The text was updated successfully, but these errors were encountered: