我就廢話不多說了,大家還是直接看**吧!
import time
import numpy as np
import cv2
#方法一
start = time.time()
for i in range(1000):
canvas = np.zeros((1080,1920,3), np.uint8)
canvas[:,:,0] = 113
cicbwnanvas[:,:,1] = 207
canvas[:,:,2] = 250
end = time.time()
print ("方法一(切片賦值)時間:",end-start)
cv2.imwrite("test1.png",can程式設計客棧vas)
#方法二
start = time.time()
for i in range(1000):
canvas = np.zeros((1080,1920,3), np.uint8)
cv2.rectangle(canvas, (0, 0), (1920, 1080), (113,207,250), thickness=-1)
end = time.time()
print ("方法二(opencv顏色填充)時間:",end-start)
cv2.imwrite("test2.png",canvas)
#方法三
start = time.time()
for i in range(1000):
canvas = np.ones([1080,1920,3])*[113,207,250]
end = time.time()
print ("方法三(矩陣乘法)時間:",end-start)
cv2.imwrite("test3.png",canvas)
# #方法四
start = time.time()
for i in range(1000):
canvas = np.zeros((1080,1920,3), np.uint8)
for i in range(1080):
for j in range(1920):
canvas[i][j] = [113,207,250]
end = time.time()
print ("方法四(迴圈遍歷賦值)時間:",end-start)
cv2.imwrite("test4.png",canvas)
結果方法一(切片賦值)時間: 6.554100275039673
方法二(opencv顏色填充)時間: 3.6737191677093506
方法三(矩陣乘法)時間: 74.28376317024231
方法四(迴圈遍歷賦值)時間: 3245.07548809051504
補充知識:規則多邊形顏色填充(python)
以規則八邊型為例:
import matplotlib.pyplot as plt
import numpy as np
# 設定八邊形頂點座標
x = [0, 0, 5, 10, 15, icbwn15, 10, 5]
y = [5, 10, 15, 15, 10, 5, 0, 0]
# 通過呼叫 fill() 函式 完成繪製八邊形
#www.cppcns.com 引數 x 和 y 是用來繪製封閉區域頂點的有序座標集
# 引數 color 用來指定封閉區域的填充顏色
plt.fill(x, icbwny, color="green")
# 為了視覺化效果更好,使用函式 xlim() 和 ylim() 完成多邊型在整個座標軸中的相對位置調整(可自行刪除對比效果)
plt.xlim(-1, 17)
plt.ylim(-1, 17)
# 使用 xticks() 和 yticks() 調整刻度線的顯示位置
# np.arange(起始座標,結束座標,座標間隔)
plt.xticks(np.arange(0, 16, 5))
plt.yticks(np.arange(0, 16, 5))
# 呼叫 show() 函式展示圖形的繪製效果
plt.show()
本文標題: python填充任意顏色,不同演算法時間差異分析說明
本文位址:
python 資料填充
一,用指定的數值填充 df.fillna 0 用0填充空值 df.fillna df.mean 用均值填充空值 二,用周圍的值來填補缺失值 df.fillna method bfill,limited 1 其中bfill back fill 即使用缺失值後面的資料填充 method 引數的取值 pa...
python缺失值填充
對於特徵值缺失的一種常見的方法就是可以用固定值來填充。data 分數 data 分數 fillna 1 對於數值型的特徵,其缺失值也可以用未缺失資料的均值填充。data 分數 data 分數 fillna data 分數 mean 與均值類似,可以用未缺失資料的眾數來填充缺失值。data 分數 da...
怎樣將Excel包含某字元的單元格填充顏色
在處理資料的時候,xmyanke想將excel中包含某字元的單元格填充藍色,比較容易看清,弄了好一陣子都沒完成,最後試用條件格式處理了一下,終於實現了。比如要將a1到a12區間包含數字1的單元格填充成藍色,點選a1按shift鍵再點選a12選中a1 a12區間所有單元格,在選單欄中選 格式 條件格式...