필터 지우기
필터 지우기

Applying smoothing to image

조회 수: 16 (최근 30일)
Michel Joge
Michel Joge 2020년 6월 8일
댓글: Image Analyst 2021년 5월 30일
How can I apply smoothing to the image with 3*3 filter mask without Image Processing Tool Box (Manually)

채택된 답변

Image Analyst
Image Analyst 2020년 6월 8일
Is it gray scale or color? And this seems to be the hot topic of the month. There are so many threads lately on manually computing blurring or filtering of images with nested for loops - just search for them. I'm attaching my demo.
  댓글 수: 1
Michel Joge
Michel Joge 2020년 6월 9일
It is gray scale color. Thank you for attaching a demo!

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Rik
Rik 2020년 6월 8일
A convolution may be what you need.
mask=rand(3,3);mask=mask/sum(mask(:));
IM=uint8(randi(255,100,100));
IM2=convn(IM,mask,'same');

magramane khadidja
magramane khadidja 2021년 5월 28일
how smoothing image for done by filling up the small regions and dilating the boundary of the thresholded image?
  댓글 수: 7
magramane khadidja
magramane khadidja 2021년 5월 30일
@Image Analyst yes i want
Image Analyst
Image Analyst 2021년 5월 30일
@magramane khadidja, it's still showing you as not having posted a question of your own (in a new thread like I asked). Where is it? What's the link? Over there, give your code with the functions I listed, and attach your image.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by