【发布时间】:2013-11-13 12:41:30
【问题描述】:
为什么每当我尝试在 matlab 中将detectSURFFeatures(img) 与二进制图像一起使用时会给我正确的分数,但每当我将detectMSERFeatures(img) 与相同的二进制图像一起使用时
都会给我错误而不是指向一些有效区域?
错误:
Error using detectMSERFeatures
Expected input number 1, I, to be one of these types:
uint8, int16, uint16, single, double
Instead its type was logical.
Error in detectMSERFeatures>parseInputs (line 75)
validateattributes(I,{'uint8', 'int16', 'uint16', ...
Error in detectMSERFeatures (line 64)
[Iu8, params] = parseInputs(I,varargin{:});
【问题讨论】:
标签: matlab image-processing matlab-cvst mser