Subscripted assignment dimension mismatch
18 ビュー (過去 30 日間)
古いコメントを表示
I have the following algorithm and i keep getting an error, can anyone help?
for i = 1:nSlice
D1 = squeeze(IMs(:, :, i));
range = double(max(D1(:)));
norm_im = double(D1)/range;
level = graythresh(norm_im);
new_level = level*c_range;
BW = (D1>new_level);
IM_s(:,:,i) = BW(:); % error line
end
1 件のコメント
Geoff
2012 年 4 月 11 日
Please edit your question and format the code as 'code' (highlight and press the 'code' button on the toolbar. Also, on which line does the error occur?
採用された回答
Geoff
2012 年 4 月 11 日
When you reference BW(:), it turns your matrix into a vector. Just do this:
IM_s(:,:,i) = BW;
Assuming that IM_s(:,:,i) is actually the same dimension as IMs(:,:,i)...
5 件のコメント
Geoff
2012 年 4 月 11 日
So, don't you want them to be the same dimension? I see you have accepted my answer, but have you resolved your problem?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!