Code covered by the BSD License
-
D=FastHessian_BuildDerivative...
-
Iout=affine_warp(Iin,M,mode)
Affine transformation function (Rotation, Translation, Resize)
-
PaintSURF(I, ipts)
This function PaintSURF will display the image with the found Interest points
-
ResponseLayerData=FastHessian...
% [ResponseLayerData] = FastHessian_ResponseLayer( width,height,step,filter )
-
SurfDescriptor_DecribeInteres...
This function SurfDescriptor_DecribeInterestPoints will ..
-
[ipts, np]=FastHessian_interp...
This function FastHessian_interpolateExtremum will ..
-
an=FastHessian_getLaplacian(a...
-
an=FastHessian_getResponse(a,...
-
an=FastHessian_isExtremum(r, ...
This function FastHessian_isExtremum will ..
-
an=IntegralImage_BoxIntegral(...
Get integer coordinates
-
an=IntegralImage_HaarX(row, c...
This function IntegralImage_HaarX will ..
-
an=IntegralImage_HaarY(row, c...
This function IntegralImage_HaarY will ..
-
descriptor=SurfDescriptor_Get...
This function SurfDescriptor_GetDescriptor will ..
-
example3.m
Example 3, Affine registration
-
ipts=FastHessian_getIpoints(F...
filter index map
-
ipts=OpenSurf(img,Options)
This function OPENSURF, is an implementation of SURF (Speeded Up Robust
-
orientation=SurfDescriptor_Ge...
This function SurfDescriptor_GetOrientation will ..
-
pic=IntegralImage_IntegralIma...
This function IntegralImage_IntegralImage will ..
-
responseMap=FastHessian_build...
Calculate responses for the first 4 FastHessianData.octaves:
-
rl=FastHessian_buildResponseL...
This function FastHessian_buildResponseLayer will ..
-
example2.m
-
View all files
from
OpenSURF (including Image Warp)
by Dirk-Jan Kroon
SURF (Speeded Up Robust Features) image feature point detection / matching, as in SIFT
|
| ResponseLayerData=FastHessian_ResponseLayer(width, height, step, filter)
% This function FastHessian_ResponseLayer will ..
|
function ResponseLayerData=FastHessian_ResponseLayer(width, height, step, filter)
% This function FastHessian_ResponseLayer will ..
%
% [ResponseLayerData] = FastHessian_ResponseLayer( width,height,step,filter )
%
% inputs,
% width :
% height :
% step :
% filter :
%
% outputs,
% ResponseLayerData :
%
% Function is written by D.Kroon University of Twente (July 2010)
width=floor(width);
height=floor(height);
step=floor(step);
filter=floor(filter);
ResponseLayerData.width = width;
ResponseLayerData.height = height;
ResponseLayerData.step = step;
ResponseLayerData.filter = filter;
ResponseLayerData.responses = zeros(width * height,1);
ResponseLayerData.laplacian = zeros(width * height,1);
|
|
Contact us at files@mathworks.com