日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

UserWarning: The default mode, 'constant', will be changed to 'reflect'

發布時間:2024/7/23 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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'的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。