필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
message=reshape(message(Mn*Mc,1)./256);
this following error will always apear:
to reshape an image the number of elements must not change

채택된 답변

Image Analyst
Image Analyst 2016년 4월 5일
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);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by