Related to this question and this discussion.
Unfortunately, my input images are in 2D grayscale. Although my image processing script is still working fine, my IPython console is full of repeating warnings. Can anyone help me:
It is not clear how to do it (at least for a beginner like me). Thanks!
version: scikit-image 0.17.2
To turn off the warnings, you can add the following lines:
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
before you run the function in question.