VLFeat open source library does not return structure Fq consisting of ellipsoids descriptors and gives error message ??? Attempt to reference field of non-structure array.

I am working on an image retrieval project. It requires The VLFeat open source library which implements popular computer vision algorithms specializing in image understanding and local features extraction and matching. Even after successful implementation of VLFEAT toolbox I get the following error:
??? Attempt to reference field of non-structure array.
Error in ==> gm at 84 locs = fq.f(1:2,:);
fq is a struct with the N query features as returned by VLFEAT: contains of two elements: 1.- fq.f is a 6xN matrix with the ellipsoids descriptors of each detected feature in the query. 2.- fq.d is a MxN matrix with the M-dimensional features descriptors of each detected feature in the query.

 Accepted Answer

It looks like fq is not a struct. Put a breakpoint at that line, and see what it is. My guess is that it may be empty.

3 Comments

Actually, 'fq' is an input parameter to the main function 'gm' which carries out the image retrieval task between query image and the R reference images.
function [similarities]= gm(query_path,reference_paths,fq,fr,matches,K)
I understand that I am attempting to access a field in the variable fq which is not a structure.
I would like to ask you whether the VLFEAT toolbox returns a structure variable consisting of extracted features. The code for VLFEAT has been downloaded from http://www.vlfeat.org/download.html
Thank you for your Time and Effort
I created a structure Fq as follows:
------------------------------------------------------------
im1 = imread('data/oxbuild_lite/all_souls_000002.jpg') ;
[frames1, descrs1] = getFeatures(im1, 'peakThreshold', 0.001) ;
fq = struct('f', {frames1}, 'd', {descrs1})
a=fq.f;
b=fq.d;
-------------------------------------------------------------------------
GETFEATURES Extract feature frames (keypoints) and descriptors.
fq.f: [4x2048 single]
fq.d: [128x2048 single]
and gave it as input to the function 'gm' as an input parameter still the error remains the same.
??? Attempt to reference field of non-structure array.
Error in ==> gm at 84
locs = fq.f(1:2,:);
function [frames, descrs] = getFeatures(im, varargin)
opts.method = 'hessian' ;
opts.affineAdaptation = false ;
opts.orientation = true ;
opts.peakThreshold = 28 / 256^2 ;
opts = vl_argparse(opts, varargin) ;
if size(im,3) > 1, im = rgb2gray(im) ;
end im = im2single(im) ;
[frames, descrs] = vl_covdet(im, ... 'AffineAdaptation', opts.affineAdaptation, ... 'Orientation', opts.orientation, ... 'FirstOctave', 0, ... 'FloatDescriptors', ... 'Method', opts.method, ... 'PeakThreshold', opts.peakThreshold, ... 'Verbose') ;
frames = single(frames) ;

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!