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

centercrop

centercrop(img: np.ndarray) -> np.ndarray

  • 説明:入力画像に対してセンタークロップ処理を行います。

  • 引数

    • img (np.ndarray):センタークロップ処理を行う入力画像。
  • 返り値

    • np.ndarray:クロップ後の画像。
  • import docsaidkit as D

    img = D.imread('lena.png')
    img = D.imresize(img, [128, 256])
    crop_img = D.centercrop(img)

    緑色の枠がセンタークロップされた領域を示しています。

    centercrop