영상 필터링
컨벌루션과 상관, 미리 정의된 필터와 사용자 지정 필터, 비선형 필터링, 경계 보존 필터
필터링은 영상을 수정하거나 향상시키기 위한 기법입니다. 예를 들어, 영상을 필터링하여 특정 특징을 강조하거나 다른 특징을 제거할 수 있습니다. 필터링으로 구현되는 영상 처리 연산에는 평활화, 선명화, 경계 향상이 포함됩니다.
앱
영상 영역 분석기 | 영상의 연결성분 찾기 및 필터링 |
함수
도움말 항목
공간 영역에서 영상 필터링 시작하기
- 공간 영역에서의 영상 필터링이란?
공간적으로 필터링된 영상에서 각 출력 픽셀의 값은 이웃 입력 픽셀들에 가중치를 적용한 합입니다. 가중치는 컨벌루션 커널 또는 필터라 불리는 행렬에 의해 제공됩니다. - Filter Grayscale and Truecolor (RGB) Images Using imfilter Function
Filter an image with a 5-by-5 averaging filter containing equal weights. - 미리 정의된 필터를 사용하여 영상 필터링하기
영상의 경계와 세부성분을 더 선명하게 표시하는 비선명(unsharp) 마스크 필터라는 일종의 특수 필터를 만듭니다. - imfilter 경계선 채우기 옵션
컨벌루션 또는 상관 커널의 일부가 영상 경계를 벗어나는 경우 영상을 0으로 채우거나 경계선 픽셀을 복제하여 영상 값을 외삽할 수 있습니다.
잡음 제거 필터링
- 잡음 제거
평균화 필터링, 중앙값 필터링, 국소 영상 분산에 기반한 적응 필터링과 같은 기법을 사용하여 영상 잡음을 제거합니다. - 영상에 가우스 평활화 필터 적용하기
여러 강도의 등방성 및 비등방성 가우스 평활화 필터를 사용하여 영상을 흐릿하게 만드는 방법으로 영상 잡음을 줄입니다. - Reduce Noise in Image Gradients
Reduce noise associated with computing image gradients so that features can be more accurately detected.
경계 보존 필터링
- 가이드 영상 필터링이란?
가이드 영상 필터링은 영상에 경계 보존 평활화를 수행합니다. 이 필터링은 가이드 영상이라고 하는 두 번째 영상의 내용을 사용하여 필터링에 영향을 줍니다. - Perform Flash/No-flash Denoising with Guided Filter
Reduce noise in an image while using a guidance image to preserve the sharpness of edges. - Segment Thermographic Image After Edge-Preserving Filtering
Segment a hot object from the background in a thermographic image.
적분 영상 영역 필터링
- Integral Image
Integral images are a quick way to represent images for filtering. In an integral image, the value of each pixel is the summation of the pixels above and to the left of it. - Apply Multiple Filters to Integral Image
Smooth an image by different amounts by applying box filters of varying sizes to the integral image.
주파수 영역 필터링
- Design Linear Filters in the Frequency Domain
You can design filters that modify the frequency content of images. Filtering in the frequency domain is often faster than filtering in the spatial domain. - Specify Desired 2-D Frequency Response Matrix
The 2-D filter design functionsfsamp2
,fwind1
, andfwind2
all create filters based on a desired frequency response magnitude matrix. - Calculate the Frequency Response of a 2-D Filter
Calculate and display the frequency response of a two-dimensional filter using thefreqz2
function.