From skimage.util import pad

In the Skimage v0.19.2 ,i cannot import name ‘pad’ from ‘skimage.util’.What can i do?

Hi @qin. Thanks for reaching out here. Our pad function was deprecated in favor of NumPy’s pad function and removed in version 0.19.0. You should be able to use NumPy’s pad function as a fully equivalent replacement. You can find related changelog here and pull request here.