-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Labels
Description
Hi, thnaks for your sharing.
When i run the code in matlab2016a with matconvnet beta25, there is always an error:
error using vl_argparse (line 63)
OPTS must be a structure
error vl_argparse (line 160)
opts.(field) = vl_argparse(opts.(field), value,
'merge') ;
error vl_argparse (line 97)
opts = vl_argparse(opts, vertcat(params,values),
varargin{:}) ;
error DCFNet_initialize (line 16)
state = vl_argparse(state, param);
error demo_DCFNet (line 43)
[state, ~] = DCFNet_initialize(im{1}, init_rect, opts);
After a check on the relevant code, the error could be aviod when the code 'state.net =[];' changed to be 'state.net = param.net;' in DCFNet_initialize.m.
Does the error occured because my matconvnet version or something else?
Thanks!