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
In tile_extraction/filter.py, in line 286, sk_morphology.remove_small_holes is called with the parameter name min_size.
This probably worked for earlier versions of the sk_morphology function, but it now raises an error, as the function now expects the parameter area_threshold, which is probably equivalent with what min_size once meant.
-> filter.py needs to be adapted
The text was updated successfully, but these errors were encountered:
In tile_extraction/filter.py, in line 286,
sk_morphology.remove_small_holes
is called with the parameter namemin_size
.This probably worked for earlier versions of the sk_morphology function, but it now raises an error, as the function now expects the parameter
area_threshold
, which is probably equivalent with whatmin_size
once meant.-> filter.py needs to be adapted
The text was updated successfully, but these errors were encountered: