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.

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

채택된 답변

Dima Lisin
Dima Lisin 2015년 4월 8일
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
Sushant Hiwale
Sushant Hiwale 2015년 4월 10일
편집: Sushant Hiwale 2015년 4월 10일
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,:);
Sushant Hiwale
Sushant Hiwale 2015년 4월 10일
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) ;

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by