我使用的是detectMSERFeatures
函數的Matlab 2014b版本,用於獲取圖像的特徵,但是這個函數給出錯誤,請大家幫忙。Error使用Matlab的detectMSERFeatures函數
代碼:
colorImage = imread('handicapSign.jpg');
I = rgb2gray(colorImage);
% Detect MSER regions.
[mserRegions, mserConnComp] = detectMSERFeatures(I, ...
'RegionAreaRange',[200 8000],'ThresholdDelta',4);
figure
imshow(I)
錯誤:
Error using detectMSERFeatures
Too many output arguments, please help.
'which('detectMSERFeatures')'產生了什麼?有可能你的路徑上有一個名爲'detectMSERFeatures.m'的文件,這個文件掩蓋了MATLAB自己的功能。 – Suever
你正在使用哪個版本的MATLAB?我認爲第二個輸出參數是在16a中引入的。 – Navan
我正在使用R2014b Matlab版本。 @Navan –