在Python 中讀取和寫入像素的RGB 值(無需外部庫)
雖然在Python 中獲取像素RGB 值通常涉及利用外部庫例如OpenCV 或scikit-image,可以直接使用Python 圖像庫(PIL) 執行此操作,無需額外下載。
擷取RGB 值:
使用PIL 的Image.open() 方法開啟影像:
<code class="python">import PIL.Image as Image im = Image.open('image.jpg')</code>
<code class="python">pix = im.load()</code>
<code class="python">print(pix[x, y]) # Outputs the RGB tuple of the pixel at (x, y)</code>
設定RGB 值:
<code class="python">new_im = Image.new('RGB', (width, height))</code>
<code class="python">new_pix = new_im.load()</code>載入新影像的像素存取物件:
<code class="python">new_pix[x, y] = (R, G, B) # Sets the RGB tuple for the pixel at (x, y)</code>設定特定像素值:
<code class="python">new_im.save('output.jpg')</code>保存修改後的圖像:
注意:雖然此方法不需要外部庫,但與專用圖像處理庫相比,它在功能和圖像格式支援方面可能存在限制。如果需要更進階的操作,建議探索外部程式庫。
以上是如何在沒有外部函式庫的情況下在 Python 中讀取和寫入像素 RGB 值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!