UserWarning: The default mode, 'constant', will be changed to 'reflect'
生活随笔
收集整理的這篇文章主要介紹了
UserWarning: The default mode, 'constant', will be changed to 'reflect'
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
問題:UserWarning: The default mode, 'constant', will be changed to 'reflect' in skimage 0.15.
? warn("The default mode, 'constant', will be changed to 'reflect' in "
skimage.transform.resize(image, output_shape, order=1, mode=None, cval=0, clip=True,preserve_range=False)
這是一個圖片重新塑造尺寸大小的函數,和OpenCV中的resize差不多。?
mode參數解釋:
mode : {'constant', 'edge', 'symmetric', 'reflect', 'wrap'}, optionalPoints outside the boundaries of the input are filled accordingto the given mode. Modes match the behaviour of `numpy.pad`. Thedefault mode is 'constant'.輸入邊界之外的點按照所給定的模式進行填充,模式匹配“numpy.pad”的行為,默認模式是“constant”。
解決辦法:
使用警告(userwarning)中說,默認模式將會被改變為“reflect”,所以,在函數進行參數設置時,直接將mode設置為constant就可以了。即:
將resize(ima, (IMG_SIZE, IMG_SIZE))改為
resize(ima, (IMG_SIZE, IMG_SIZE), mode='constant')
?
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的UserWarning: The default mode, 'constant', will be changed to 'reflect'的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LaTeX对公式字体加粗
- 下一篇: C++数组指针不能自增1/自减1