''Error using reshape: To RESHAPE the number of elements must not change''
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Touhidul islam
am 27 Dez. 2017
Kommentiert: Image Analyst
am 12 Okt. 2019
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 Kommentare
Akzeptierte Antwort
Image Analyst
am 27 Dez. 2017
Use this:
[rows, columns, numberOfColorChannels] = size(I);
F = reshape(I, rows*columns, numberOfColorChannels);
5 Kommentare
marie lasz
am 12 Okt. 2019
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
am 12 Okt. 2019
The image array called "message" is most likely color. Use rgb2gray() to cast it to gray scale.
Weitere Antworten (1)
Benjamin Kraus
am 27 Dez. 2017
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.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!