1. ホーム
  2. matlab

[解決済み] MATLAB のエラーです。関数 'subsindex' はクラス 'struct' の値に対して定義されていません。

2022-02-09 15:41:32

質問

以下のコマンドを試してみました。

im=imread('untitled_test1.jpg');
im1=rgb2gray(im);
im1=medfilt2(im1,[15 15]);
BW = edge(im1,'sobel'); 

msk=[0 0 0 0 0;
 0 1 1 1 0;
 0 1 1 1 0;
 0 1 1 1 0;
 0 0 0 0 0;];
B=conv2(double(BW),double(msk));

Ibw = im2bw(B);
CC = bwconncomp(Ibw); %Ibw is my binary image
stats = regionprops(CC,'pixellist');

% pass all over the stats
for i=1:length(stats),
size = length(stats(i).PixelList);
% check only the relevant stats (the black ellipses)
if size >150 && size < 600 
    % fill the black pixel by white    

    x = round(mean(stats(i).PixelList(:,2)));
    y = round(mean(stats(i).PixelList(:,1)));
    Ibw = imfill(Ibw, [x, y]);

else
    Ibw([CC.PixelIdxList{i}]) = false;
end;
end;

(ここで、別のコマンドラインがありますが、問題はそのせいではないようです)

labeledImage = bwlabel(binaryImage, 8);     % Label each blob so we can make measurements of it
blobMeasurements = regionprops(labeledImage, Ibw, 'all');   
numberOfBlobs = size(blobMeasurements, 1); 

このようなエラーメッセージが表示されました。

??? Error using ==> subsindex
Function 'subsindex' is not defined for values of class 'struct'.

Error in ==> test2 at 129
numberOfBlobs = size(blobMeasurements, 1);

何が問題なのか?

どうすればいいですか?

このエラーが発生するのは、あなたが作成した 変数 という名前の、組み込みの 機能 SIZE . を呼び出す代わりに 機能 を計算するために numberOfBlobs の代わりに、MATLAB は インデックス という構造を使って変数を作成します。 blobMeasurements をインデックスとして使用します (エラーメッセージが示すように、これはうまくいきません)。

一般に、変数や関数に、すでに存在する関数の名前を付けてはいけません(ただし 何をやっているかわかっている ). コード内の変数名を "size" 以外のものに変更し、コマンドを発行します。 clear size を実行して、ワークスペースから古いサイズの変数を消去し、コードを再実行します。