what happens if i increase the kernel to 5x5 or to 7x7?is there anyway to write that in matlab code.?
조회 수: 3 (최근 30일)
이전 댓글 표시
i am trying to do a programming for what happens when we increase a kernel to 5x5 or to 7x7. please let me know how to do the matlab programming
댓글 수: 7
채택된 답변
Image Analyst
2013년 3월 5일
For example, to create median filtered images:
filtered5x5Image = medfilt2(grayImage, [5, 5]);
filtered7x7Image = medfilt2(grayImage, [7, 7]);
Call imshow() to display the results.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Red에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!