Hiiii...I found trouble in dividing the image into different scale space and smoothing it by gaussian filter
Show older comments
I want to apply SIFT algorithm in image for the detection of forgery but i m not able how to code the gaussian function in different scale space....plz help me
3 Comments
Image Analyst
on 14 Mar 2013
Why not use SURF? It's faster and it's included in the Computer Vision System Toolbox.
Parul Mishra
on 5 Apr 2013
Anand
on 11 Apr 2013
Please clarify...
Answers (1)
Anand
on 21 Mar 2013
If you don't have the Computer Vision System Toolbox and want to compute the scale space, why don't you just do the smoothing yourself.
For each sigma corresponding to a different scale, you can convolve the image with a gaussian filter using the imfilter function.
im_sigma = imfilter(im,fspecial('gaussian',hsize,sigma));
Categories
Find more on Image Category Classification 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!