Error using reshape To RESHAPE the number of elements must not change.

1 回表示 (過去 30 日間)
Mohannad Nasir
Mohannad Nasir 2018 年 10 月 19 日
コメント済み: Guillaume 2018 年 10 月 19 日
how can i fix this error ? Error using reshape To RESHAPE the number of elements must not change.
  2 件のコメント
Stephen23
Stephen23 2018 年 10 月 19 日
編集済み: Stephen23 2018 年 10 月 19 日
"how can i fix this error ?"
Simple: don't try to reshape an array into a size that has a different number of elements.
Adam
Adam 2018 年 10 月 19 日
編集済み: Adam 2018 年 10 月 19 日
Debug your code and you'll easily see where it is going wrong.

サインインしてコメントする。

回答 (2 件)

Guillaume
Guillaume 2018 年 10 月 19 日
LocalMean must have size(V,1)^2 elements for your reshape to work. As the error message tells you, it hasn't. Since we have no idea what V is and thus how LocalMean is related to it, we can't tell you how to fix it.
Clearly, your code is not behaving the way you expect so you should check what it actually does by using the debugger. Step through your code line by line, see where it behaves differently frm what you expected and fix that.
  3 件のコメント
Image Analyst
Image Analyst 2018 年 10 月 19 日
Wow, that's some complicated code. Just simply use conv2() or imfilter(), and not use im2col() and padarray() and all that other stuff and you should be fine. Upload both your images if you still have a problem.
Guillaume
Guillaume 2018 年 10 月 19 日
There's not a single comment in your code so we have no idea what it's trying to do.
I notice that the code you've posted is also different from the one in your screenshot. In particular, you've changed the size of the matrix you're trying to reshape to, so hopefully you've already found one bug. I'm afraid you'll have to find the rest of the bugs yourself. Again, use the debugger.
Considering you're doing some padding on some of the variables used to calculate LocalMean and possibly do some padding on V (no idea what fakepad does) have you check that the padding match?
There's clearly a bug in your calculation of LocalMean since you use the exact same code to calculate Vcol and Bcol (both based on BackgroundMask) so your ColMat is simply Vcol.^2 and Bcol is not needed. Not that this would affect the size of LocalMean.

サインインしてコメントする。


madhan ravi
madhan ravi 2018 年 10 月 19 日
An example to illustrate:
a= rand(4,13) %your vector which needs to be reshaped
numel(a)
reshape(a,m,n) % keep in mind m times n should be equal to numel(a) - meaning number of elements
reshape(a,n,m)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by