【发布时间】:2014-04-15 22:55:59
【问题描述】:
我有以下代码行:
x=ginput(1);
y=ginput(1);
limits = [x(1) x(2) abs(x(1)-y(1)) abs(x(2)-y(2))]
boxPoints = detectSURFFeatures(boxImage, 'MetricThreshold',100,'ROI',limits);
这会产生以下错误:
Error using detectSURFFeatures>parseInputs (line 100)
Argument 'ROI' did not match any valid parameter of the parser.
我在 matlab R2013a 上
根据http://www.mathworks.com/help/vision/ref/detectsurffeatures.html#namevaluepairarguments
据我所知,这应该是完全有效的。知道这里发生了什么吗?
【问题讨论】:
标签: matlab computer-vision roi matlab-cvst