Adaptive median filter using Embedded MATLAB

버전 1.0.0.1 (75.6 KB) 작성자: Kiran Kintali
This demo shows how to implement an adapative median filter in hardware
다운로드 수: 8.4K
업데이트 날짜: 2016/9/1

라이선스 보기

The attached model implements an adaptive median filter using embedded MATLAB. There are lots of software implementations of median filter available on MATLAB central. However this implementation tries to expose the inherent parallelism in such an adaptive filter and make it suitable for hardware.
It also shows to how to break the image into smaller chunks to stream it into a median filter. The adaptive median filter buffers the data and operates on a region of data to compute a new center pixel of that region; The new pixel is applied on the original image to remove the salt and pepper noise.

In this demo the original image is streamed into the filter processor as a 1x9 column at a time. The processor buffers the data for 9 cycles to form a 9x9 image. For each pixel in the image the algorithm computes the median pixel by working parallely on this region; median is computed for 3x3, 5x5, 7x7 and 9x9 neighbourhood regions around the center pixel. The center pixel is either kept or replaced by one of the median pixel computed from the above regions starting from smallest to largest if it hits the threshold.

인용 양식

Kiran Kintali (2024). Adaptive median filter using Embedded MATLAB (https://www.mathworks.com/matlabcentral/fileexchange/18728-adaptive-median-filter-using-embedded-matlab), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2007b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Vision HDL Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.1

Updated license

1.0.0.0

add to eML category