Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement gaussian _ filter.m , use hsize = 5 , sigma = 2 , and save the image as gaussian _ 5 . jpg Please

Implement gaussian_filter.m, use hsize =5, sigma =2, and save the image as gaussian_5.jpg
Please do this in MatLab using the pseudocode below. Gaussian Filter needs to be used.
guassian_filter.m
function output = gaussian_filter(img, hsize, sigma)
H = fspecial('gaussian', hsize, sigma);
% YOUR CODE HERE
end
lab03.m
%% Gaussian filter
hsize =5; sigma =2;
img_gaussian = gaussian_filter(img, hsize, sigma);
figure, imshow(img_gaussian);
imwrite(img_gaussian, 'gaussian_5.jpg');

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

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions

Question

Theyre selling a well designed machine.

Answered: 1 week ago

Question

how does an increased rent expense affect equity

Answered: 1 week ago