EAST 學習小函式雜燴(3)

2021-10-04 12:29:22 字數 1182 閱讀 7031

east學習小函式的最後一部分,今天寫這部分的最後一張,這三篇的目的都是讓大家免於在讀 east函式的時候四處查詢,算是方便大家吧,話不多說進入正題。

np.linalg.norm(求範數)

x_norm=np.linalg.norm(x,

ord=

none

, axis=

none

, keepdims=

false

)

np.newaxis()

np.newaxis的作用就是在這一位置增加乙個一維,這一位置指的是np.newaxis所在的位置,比較抽象,需要配合例子理解。

x1 = np.array([1

,2,3

,4,5

])# the shape of x1 is (5,)

x1_new = x1[

:, np.newaxis]

# now, the shape of x1_new is (5, 1)

# array([[1],

# [2],

# [3],

# [4],

# [5]])

x1_new = x1[np.newaxis,:]

# now, the shape of x1_new is (1, 5)

# array([[1, 2, 3, 4, 5]])

numpy.argmin()
>>

> a = np.arange(6)

.reshape(2,

3)>>

> a

array([[

0,1,

2],[

3,4,

5]])

>>

> np.argmin(a)

0>>

> np.argmin(a, axis=0)

array([0

,0,0

])>>

> np.argmin(a, axis=1)

array([0

,0])

np.dot()

dot()返回的是兩個陣列的點積(dot product)

最後這就是eastmodel和icdar用到大多數函式。還是向各位前輩致以誠摯的謝意。

EAST 學習小函式雜燴(2)

今天繼續講解east學習中遇到的小函式。glob.glob 函式 glob模組是最簡單的模組之一,內容非常少。用它可以查詢符合特定規則的檔案路徑名。跟使用windows下的檔案搜尋差不多。查詢檔案只用到三個匹配符 匹配0個或多個字元 匹配單個字元 匹配指定範圍內的字元,如 0 9 匹配數字。pyth...

系統路徑函式應用小雜燴

include shlobj.h 包含標頭檔案 winshellapi hresult winapi shgetspecialfolderlocation hwnd hwndowner,int nfolder,lpitemidlist ppidl 函式宣告 用於根據nfolder的值 獲得系統特殊路...

Python3 函式小練習

1 列印名片程式 輸入姓名,號碼,性別,最後列印出來名片 控制姓名長度為6 20 號碼長度11 性別只能允許輸入男或女 每一樣資訊不允許為空 一 三個迴圈分開寫 deffunc1 while true name input 請輸入姓名,長度6 20 if len name 6and len name...