2023年8月27記錄

2021-10-23 22:08:13 字數 1146 閱讀 2499

1.python cv2 包:

import cv2

img = cv2.imread("imgfile")

cv2.imshow("img_win_name", img)

cv2.waitkey(0) # 無限期等待輸入

cv2.imwrite("write_file_name", img)

2.scikit-image 包

import matplotlib.pyplot as plt

img = plt.imread("img_name")

plt.imshow(img)

3.matplotlib包

import tifffile as tiff

# 將的畫素值放縮到[0,1]之間

def scale_percentile(matrix):

w, h, d = matrix.shape

matrix = np.reshape(matrix, [w * h, d]).astype(np.float64)

# get 2nd and 98th percentile

mins = np.percentile(matrix, 1, axis=0)

maxs = np.percentile(matrix, 99, axis=0) - mins

matrix = (matrix - mins[none, :]) / maxs[none, :]

matrix = np.reshape(matrix, [w, h, d])

matrix = matrix.clip(0, 1)

return matrix

img = tiff.imread("file_name")

tiff.imshow(scale_percentile(img))

其他 :

注釋python:

單行注釋:

# 被注釋的內容
多行注釋:

'''

被注釋的內容

'''

"""

被注釋的內容

"""

《前端》列印功能 2023年8月27日

根據div標籤id拿到div中的區域性內容 bdhtml window.document.body.innerhtml var jubudata document.getelementbyid printcontent innerhtml 把獲取的 區域性div內容賦給body標籤,相當於重置了 b...

os模組 2023年8月16

os.getcwd 獲取當前工作目錄,即當前python指令碼工作的路徑。os.chdir 改變當前指令碼的工作目錄。os.makedirs dirname1 dirname2 可生成多層遞迴目錄 os.removedirs dirname1 若目錄為空,則刪除,並遞迴到上一級目錄,若也為空,則刪除...

2023年2月8日 OJ習題

這類題的常規思路是結構體排序,但是本題由於並沒有多種元素,因此用不著結構體,僅僅是陣列排序就可以 include using namespace std int n,m,o int f 110 bool cmp int a,int b intmain return0 先打表,然後直接些就好了 inc...