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

1 次查看(过去 30 天)
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?

采纳的回答

Image Analyst
Image Analyst 2017-12-27
Use this:
[rows, columns, numberOfColorChannels] = size(I);
F = reshape(I, rows*columns, numberOfColorChannels);
  5 个评论
marie lasz
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
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
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.
  1 个评论
Touhidul islam
Touhidul islam 2017-12-27
1. 256 256. 2. image is attached . GADOimage.jpg 3. what is the difference between 1 & 3 in third dimension of the image. when i will come to know if it is 1 or 3

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by