Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Apply the h function in this code to an image and send it as a report with the matlab code and the results: clc clear

Apply the h function in this code to an image and send it as a report with the matlab code and the results:
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);
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');

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Demystified

Authors: Andrew Oppel

1st Edition

0072253649, 9780072253641

More Books

Students also viewed these Databases questions

Question

Salary (if known)

Answered: 1 week ago