2022. 4. 20. 00:30
728x90
Image processing에서 segmentation 과정은 매우 중요한 과정이다. Segmentation accuracy가 높을수록 할 수 있는 일이 많아지기 때문이다.
Segmentation Method
Intensity의 discontinuity와 similarity가 중요하다.
1) Intensity based
- Threshold-based
- Edge-based
- Region-based
2) Information based
3) Data&Learning based
4) Automatic, Semi-automatic, Manual
Threshold-based segmentation
Region-based와 유사하다.
specific intensity value로 thresholding 한다.
Post processing이 필요하기도 하다.
- Morphological filtering - Erosion, Dilation, Opening, Closing
- Region labeling
- Region selection based on information
Region Labeling & Selection
constant intensity를 each separate region에 배치하는 등 다양한 방법으로 region labeling을 할 수 있다. Labeling한 결과를 가지고 ROI를 선택하여 사용한다. Region with seed point나 largest region 등을 선택하는 방법이 있다.
Region Growing
region based segmentation이다. Predefined criteria for growth에 따라 pixel이나 subregion을 큰 region에 group화하는 것이 목표이다.
- Selection of similarity property (- depends on types of image data)
- Formulation of Stopping Rule (- candidate pixel과 pixel grown so far의 likeness를 비교해 그룹화할지 결정한다.)
Intensity, Texture, Color 등의 local 정보를 이용한 group화도 있으며, region growth의 history를 참고해 group화하는 방법도 있다.
'대학교 > 컴퓨터비전' 카테고리의 다른 글
[CS/컴퓨터비전] 6. Object Recognition (0) | 2022.06.11 |
---|---|
[CS/컴퓨터비전] 5. Segmentation (0) | 2022.06.11 |
[CS/컴퓨터비전] 3. Filtering in Frequency Domain (0) | 2022.04.14 |
[CS/컴퓨터비전] 2. Image Filtering (0) | 2022.04.14 |
[CS/컴퓨터비전] 1. Image Intensity (0) | 2022.04.14 |