hi
i need to make
"To perform the blurring process on Pear a rotationally symmetric Gaussian lowpass filter of size 20 with standard deviation 10 is used. One object in each image is blurred"
and this code i made it but doesnt work
%n= imread('peppers.png');
%H = fspecial('disk',5);
%blu = imfilter(n,H,'replicate');
%k=rgb2gray(blu);
%imwrite(im2uint8(k),'H:\Animals\a51.jpg');
i need image have tow object one is focue and other not or
the left side is blurring and the right is not plzzzzzzzzzz help
thanks
Gaussian lowpass filtervery important
Page 1 of 1
3 Replies - 4659 Views - Last Post: 04 July 2012 - 10:59 PM
Replies To: Gaussian lowpass filter
#2
Re: Gaussian lowpass filter
Posted 23 April 2009 - 10:01 PM
might help if you tell us what language you are using...
#3
Re: Gaussian lowpass filter
Posted 24 April 2009 - 12:20 AM
I use matlab to blurryng imge frome left side or right side
#4
Re: Gaussian lowpass filter
Posted 04 July 2012 - 10:59 PM
blackflower, on 22 April 2009 - 10:30 PM, said:
hi
i need to make
"To perform the blurring process on Pear a rotationally symmetric Gaussian lowpass filter of size 20 with standard deviation 10 is used. One object in each image is blurred"
and this code i made it but doesnt work
%n= imread('peppers.png');
%H = fspecial('disk',5);
%blu = imfilter(n,H,'replicate');
%k=rgb2gray(blu);
%imwrite(im2uint8(k),'H:\Animals\a51.jpg');
i need image have tow object one is focue and other not or
the left side is blurring and the right is not plzzzzzzzzzz help
thanks
i need to make
"To perform the blurring process on Pear a rotationally symmetric Gaussian lowpass filter of size 20 with standard deviation 10 is used. One object in each image is blurred"
and this code i made it but doesnt work
%n= imread('peppers.png');
%H = fspecial('disk',5);
%blu = imfilter(n,H,'replicate');
%k=rgb2gray(blu);
%imwrite(im2uint8(k),'H:\Animals\a51.jpg');
i need image have tow object one is focue and other not or
the left side is blurring and the right is not plzzzzzzzzzz help
thanks
in matlab this code works:
n= imread('pulverulenta_grayscale.jpg');
H = fspecial('disk',5);
blu = imfilter(n,H,'replicate');
imshow(blu);
make sure that gaussian low pass filter works for just garscale image.
if you have color image then first convert it into grayscale by using rgb2gray
Regards:
Syed Ahsan
Page 1 of 1
|
|

New Topic/Question
Reply




MultiQuote




|