Hiiii...I found trouble in dividing the image into different scale space and smoothing it by gaussian filter

조회 수: 6 (최근 30일)
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

댓글을 달려면 로그인하십시오.

답변 (1개)

Anand
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));

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by