7

我尝试了这些命令:

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);

怎么了?

4

2 回答 2

18

您收到该错误是因为您创建了一个名为“size”的变量,它隐藏了内置函数 SIZE。MATLAB 没有调用函数来计算numberOfBlobs,而是尝试使用结构作为索引来索引变量blobMeasurements(这不起作用,如错误消息所示)。

一般来说,你不应该给一个变量或函数一个已经存在的函数的名字(除非你知道你在做什么)。只需将代码中的变量名称更改为“size”以外的名称,发出命令clear size以从工作区中清除旧的 size 变量,然后重新运行代码。

于 2012-04-09T01:18:54.630 回答
1

您的错误消息告诉您错误在numberOfBlobs = size(blobMeasurements, 1);. subsindex最有可能用于size(..., 1)访问这些元素。

我假设这blobMeasurements是一个结构数组(或单个结构),该操作未完全定义。

为什么不像length以前那样使用命令?这在您的代码中稍早一些。

于 2012-04-08T08:30:15.550 回答