我有一个称为grnPixels
size的单元格数组(1 x 40)
,其中每个单独的单元格都有一个M x 1
数字向量数组,其中M
是可变的。我还有一个名为redCentroid
size的向量数组N x 1
。
我想检查中的值是否redCentroid
对应于中的任何值grnPixels
。我已经编写了一个代码,但是这个 Matlab 代码非常慢。我该如何改进呢?
nRedCells = length(propsRed);
nGrnCells = length(propsGrn);
grnPixels = cell(1,nGrnCells);
redCentroid = zeros(nRedCells,1);
matchMemory = zeros(nRedCells,1);
for j = 1:nRedCells
for i = 1:nGrnCells
for n = 1:length(grnPixels{i})
matchment = ismember(redCentroid(j),grnPixels{i}(n));
if matchment == 1
matchMemory(j,1:2) = [j i];
end
continue
end
end
end
样本数据
redCentroid
51756
65031
100996
118055
122055
169853
197175
233860
244415
253822
grnPixels{1}
142
143
100996
167
168
grnPixels{2}
537
538
539
540
541
542
233860
244415
545
546
547
548