How to smooth the edges
이전 댓글 표시


I tried many methods but neither gives me a smooth shape like this.
Anyone else have any idea how to approach this kind of problem?
Thanks in advance.
댓글 수: 2
Image Analyst
2016년 2월 17일
Huh? Your "this" looks way more craggy and jagged and tortuous than the "original picture". Did you reverse them?
Younes Nejahi
2016년 2월 18일
채택된 답변
추가 답변 (1개)
Brattv
2016년 2월 17일
Hi,
Did you try to convert to gray and use imgaussfilt?
G = imread('YourImage.png');
grayIm = rgb2gray(G);
test = imgaussfilt(grayIm,4);
imshow(test)
The last parameter in imgaussfilt is the standard deviation. The higher the more blurred.

카테고리
도움말 센터 및 File Exchange에서 Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
