Guassian smoothing
12 views (last 30 days)
Show older comments
i have a code for an image for corner detection,ten i have to process guassian smoothing,i performed,but image is not displaying
please help to display the imaage
cs = fast_corner_detect_9(im, 60);
size(im)
image(im/6)
axis image colormap(gray)
hold on
axis off
plot(cs(:,1), cs(:,2), 'r.'),title('Corner Detection')
for guassian smoothing G = fspecial('gaussian',[5 5],2);
Ig = imfilter(?,G,'same');
figure,imshow(uint8(Ig)),title('After Guassian Smoothing')
please tell what should come in place of question mark
0 Comments
Answers (0)
See Also
Categories
Find more on Smoothing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!