91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用numpy實現矩陣的翻轉與旋轉

發布時間:2021-06-03 17:45:36 來源:億速云 閱讀:310 作者:Leah 欄目:開發技術

使用numpy實現矩陣的翻轉與旋轉?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

numpy.flip(m, axis=None)

Reverse the order of elements in an array along the given axis.

The shape of the array is preserved, but the elements are reordered.

把m在axis維度進行切片,并把這個維度的index進行顛倒

示例

隨機生成一個二維數組

import  numpy as np
a=np.random.randint(1,9,size=9).reshape((3,3))

[[5 8 6]
[3 1 7]
[8 7 8]]

axis=0:上下翻轉,意味著把行看成整體,行的順序發生顛倒,每一行的元素不發生改變

print(np.flip(a,axis=0))

[[8 7 8]
[3 1 7]
[5 8 6]]

axis=1:左右翻轉,意味著把列看成整體,列的順序發生顛倒,每一列的元素不發生改變

print(np.flip(a,axis=1))

[[6 8 5]
[7 1 3]
[8 7 8]]

Numpy矩陣的旋轉

使用skimage.io讀出來的圖片是numpy.darray格式,掌握numpy矩陣的旋轉與翻轉,可實現數據增廣(data augmentation)。

可用rot90函數實現,例子如下:

import numpy as np
mat = np.array([[1,3,5],
                [2,4,6],
                [7,8,9]
                ])
print mat, "# orignal"
mat90 = np.rot90(mat, 1)
print mat90, "# rorate 90 <left> anti-clockwise"
mat90 = np.rot90(mat, -1)
print mat90, "# rorate 90 <right> clockwise"
mat180 = np.rot90(mat, 2)
print mat180, "# rorate 180 <left> anti-clockwise"
mat270 = np.rot90(mat, 3)
print mat270, "# rorate 270 <left> anti-clockwise"

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西乌| 普定县| 乐都县| 玛纳斯县| 凌海市| 民乐县| 云安县| 新余市| 龙泉市| 呼图壁县| 辉县市| 灵璧县| 辛集市| 陵水| 灵宝市| 东辽县| 台北县| 郎溪县| 湛江市| 甘洛县| 安义县| 桃园市| 于都县| 昌宁县| 阿合奇县| 高雄市| 武威市| 东兰县| 宣威市| 牟定县| 皋兰县| 道孚县| 镇江市| 南皮县| 蓬溪县| 怀远县| 萨迦县| 闵行区| 措勤县| 山西省| 奉节县|