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