如果您想使用Python將矩陣轉換為圖像,那么您來到了正確的地方!
# 導入必要的庫: import numpy as np from PIL import Image # 創建隨機矩陣 matrix = np.random.randint(0, 255, size=(64, 64)) # 定義矩陣尺寸并創建一個空的圖像 width = matrix.shape[1] height = matrix.shape[0] img = Image.new('RGB', (width, height), color='white') # 循環遍歷矩陣的每個元素,并將其轉換為顏色后寫入圖像 for y in range(height): for x in range(width): color = (matrix[y][x], matrix[y][x], matrix[y][x]) img.putpixel((x, y), color) # 保存圖像 img.save('matrix.jpg')
這是一個簡單但強大的代碼段,可將矩陣轉換為JPEG格式的圖像。該代碼庫中的NumPy庫用于創建矩陣,Pillow庫(先前稱為PIL)用于創建和保存圖像。
如果您有任何問題或疑問,請隨時在評論部分中留言。