Filter löschen
Filter löschen

I have a problème when i use the function reshape if you can help me or get me another equal function

1 Ansicht (letzte 30 Tage)
message=reshape(message(Mn*Mc,1)./256);
this following error will always apear:
to reshape an image the number of elements must not change

Akzeptierte Antwort

Image Analyst
Image Analyst am 5 Apr. 2016
What are the rows and columns in the "message" image? Are the number of rows exactly equal to Mn*Mc? If so, then message(Mn*Mc,1) refers to the last pixel in the first column of message. So you're trying to reshape that single value. However, you don't even give any new number of rows and columns. For it to even work, you'd have to have two additional inputs of 1,1 to reshape:
message=reshape(message(Mn*Mc,1)./256, 1, 1);
But reshaping a scalar to be a scalar again will just give the very same scalar value (again, the last value in the first column).
Perhaps do you want to resize the image? Like
newMessage = imresize(message, newRows, newColumns);

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by