''Error using reshape: To RESHAPE the number of elements must not change''
1 回表示 (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168192/image.jpeg)
in image one you can say it is showing no error ,but in second image (b.img) it is showing ,error . why this is happening?
0 件のコメント
採用された回答
Image Analyst
2017 年 12 月 27 日
Use this:
[rows, columns, numberOfColorChannels] = size(I);
F = reshape(I, rows*columns, numberOfColorChannels);
5 件のコメント
marie lasz
2019 年 10 月 12 日
hello Bhanveet,
Did you find out the solution of this error? because I am also getting the same error and I am also working on watermarking.
Image Analyst
2019 年 10 月 12 日
The image array called "message" is most likely color. Use rgb2gray() to cast it to gray scale.
その他の回答 (1 件)
Benjamin Kraus
2017 年 12 月 27 日
What is the size of I both before and after calling imresize on the second image? Is one of the images grayscale or black and white? If so, it is possible the third dimension of the image is 1 instead of 3.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!