imdilate
-
説明:膨張操作:指定された構造要素を使用して元の画像を膨張させます。この構造要素は、最大値を取るピクセルの近隣の形状を決定します。マルチチャネル画像の場合、各チャネルは個別に処理されます。
-
引数
- img (
np.ndarray):入力画像。 - ksize (
Union[int, Tuple[int, int]]):構造要素のサイズ。デフォルトは (3, 3)。 - kstruct (
MORPH):要素の形状。"MORPH.CROSS","MORPH.RECT","MORPH.ELLIPSE"のいずれか。デフォルトは"MORPH.RECT"。
- img (
-
例
import numpy as np
import capybara as cb
img = np.array([[0, 0, 0, 0, 0],
[0, 1, 1, 1, 0],
[0, 1, 1, 1, 0],
[0, 1, 1, 1, 0],
[0, 0, 0, 0, 0]], dtype=np.uint8)
dilated_img = cb.imdilate(img, ksize=3, kstruct='RECT')
# Kernel will be like this:
# >>> np.array([[1, 1, 1],
# [1, 1, 1],
# [1, 1, 1]], dtype=np.uint8)
# After dilation, the image will be like this:
# >>> np.array([[1, 1, 1, 1, 1],
# [1, 1, 1, 1, 1],
# [1, 1, 1, 1, 1],
# [1, 1, 1, 1, 1],
# [1, 1, 1, 1, 1]], dtype=np.uint8)