imtophat
-
説明:トップハット変換:元の画像から開放変換の結果を引いたもの。複数チャンネル画像の場合、各チャンネルは独立して処理されます。この操作は、元の画像より明るい領域(例えば、明点や小さな構造)を抽出し、大きな明るい領域を除去または軽減するのに使用されます。
-
引数
- 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 docsaidkit as D
img = np.array([[1, 1, 1, 0, 0],
[1, 1, 1, 0, 0],
[1, 1, 1, 0, 0],
[0, 0, 1, 1, 0],
[0, 0, 0, 1, 1],
[0, 0, 0, 1, 1]], dtype=np.uint8)
tophat_img = D.imtophat(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 tophat, the image will be like this:
# >>> np.array([[0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0],
# [0, 0, 1, 1, 0],
# [0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0]], dtype=np.uint8)