Question: i need full report for this code : * only report * clc clear sigma = sqrt ( 2 ) ;x = - 4 :

i need full report for this code :
* only report *
clc clear sigma = sqrt(2);x =-4:0.1:4;y = x;[X,Y]= meshgrid(x,y);Z =(-1/(pi*sigma^4))*(1-(X^2+Y^2)/(2*sigma^2)).*exp(-(X.^2+Y.^2)/(2*sigma^2));h = fspecial('log',[9,9],sigma);h = round(h / abs(min(h(:)))*40);x =-4:1:4;y = x;[X1,Y1]=meshgrid(x,y);image = imread('cat.jpg');filtered_image = imfilter(image, h);subplot(121),mesh(X,Y,Z);set(gca,'fontsize',10);xlim([-4,4]); ylim([-4,4]);xlabel('X'); ylabel('Y');subplot(122),mesh(X1,Y1,h);set(gca,'fontsize',10);xlim([-4,4]); ylim([-4,4]);xlabel('X'); ylabel('Y');% Display the original and filtered imagesfigure;subplot(121), imshow(image), title('Original Image');subplot(122), imshow(filtered_image), title('Filtered Image');

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!