Hiiii...I found trouble in dividing the image into different scale space and smoothing it by gaussian filter
显示 更早的评论
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 个评论
Image Analyst
2013-3-14
Why not use SURF? It's faster and it's included in the Computer Vision System Toolbox.
Parul Mishra
2013-4-5
Anand
2013-4-11
Please clarify...
回答(1 个)
Anand
2013-3-21
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));
类别
在 帮助中心 和 File Exchange 中查找有关 Image Category Classification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!