Main Content

모폴로지 연산

팽창, 침식, 재구성 및 기타 모폴로지 연산 수행

모폴로지는 형태에 따라 영상을 처리하는 광범위한 영상 처리 연산 집합입니다. 모폴로지 연산에서는 영상의 각 픽셀이 이웃의 다른 픽셀 값에 따라 조정됩니다. 이웃의 크기와 형태를 선택하여 입력 영상의 특정 형태에 민감한 모폴로지 연산을 생성할 수 있습니다.

함수

모두 확장

imerode영상 침식
imdilate영상 팽창
imopen영상에 모폴로지 열기 연산 수행
imclose영상에 모폴로지 닫기 연산 수행
imtophatTop-hat 필터링
imbothatBottom-hat 필터링
imclearborder영상 테두리에 연결된 밝은 구조물의 표시를 제거함
imkeepborderRetain light structures connected to image border (R2023b 이후)
imfill영상 영역과 구멍 채우기
bwhitmiss이진 적중-비적중 연산
bwmorph이진 영상에 대한 모폴로지 연산
bwmorph3Morphological operations on binary volume
bwperim이진 영상에서 객체의 둘레 찾기
bwskel모든 객체를 2차원 이진 영상 또는 3차원 이진 볼륨의 선으로 축소
bwulterode최종 침식
imreconstruct모폴로지 재구성
imregionalmax국부 최댓값
imregionalmin국부 최솟값
imextendedmax확장 최댓값 변환
imextendedmin확장 최솟값 변환
imhmaxH-maxima 변환
imhminH-minima 변환
imimposeminImpose minima
strel모폴로지 구조 요소
offsetstrelMorphological offset structuring element
conndef연결성 배열 만들기
iptcheckconnCheck validity of connectivity argument
applylutNeighborhood operations on binary images using lookup tables
bwlookup Nonlinear filtering using lookup tables
makelutCreate lookup table for use with bwlookup
bwpackPack binary image
bwunpackUnpack binary image

도움말 항목

모폴로지의 요소

  • 모폴로지 연산의 유형
    가장 기본적인 모폴로지 연산은 팽창과 침식입니다. 팽창과 침식을 결합하여 더욱 특화된 연산을 수행할 수도 있습니다.
  • Morphological Reconstruction
    Morphological reconstruction is used to extract marked objects from an image without changing the object size or shape.
  • Structuring Elements
    A structuring element defines the neighborhood used to process each pixel. A structuring element influences the size and shape of objects to process in the image.
  • Border Padding for Morphology
    Morphological dilation and erosion pad the image border in different ways to avoid border effects.
  • Pixel Connectivity
    Connectivity determines whether a center pixel and adjacent pixels belong to the same object.
  • Lookup Table Operations
    A lookup table is a vector in which each element represents the different permutations of pixels in a neighborhood. Lookup tables are useful for custom erosion and dilation operations.

모폴로지의 응용