imdecode
-
說明:將圖像字節串解碼為 NumPy 圖像數組。
-
參數
- byte_ (
bytes
):要解碼的圖像字節串。
- byte_ (
-
傳回值
- np.ndarray:解碼後的圖像數組。
-
範例
import capybara as cb
img = cb.imread('lena.png')
encoded_bytes = cb.imencode(img, IMGTYP=cb.IMGTYP.PNG)
decoded_img = cb.imdecode(encoded_bytes)