メインコンテンツまでスキップ

imdecode

imdecode(byte_: bytes) -> Union[np.ndarray, None]

  • 説明:画像のバイト文字列を解凍して NumPy 画像配列に変換します。

  • 引数

    • byte_ (bytes):解凍する画像のバイト文字列。
  • 返り値

    • 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)