detectSURFFeatures(img)
matlab でバイナリ イメージを使用しようとすると適切なポイントが得られるのに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{:});