how to rectify the error

1 Ansicht (letzte 30 Tage)
Annie micheal
Annie micheal am 4 Okt. 2017
Kommentiert: Jan am 4 Okt. 2017
i want to obtain the original image which is stored in Makeup_YMU.mat.The YMU images are stored in a matrix YMU_matrix 58500x604 uint8.when i execute the command img=reshape(YMU_matrix(i),[150 130 3]), i get the error,Subscript indices must either be real positive integers or logicals..

Antworten (1)

Walter Roberson
Walter Roberson am 4 Okt. 2017
for ImageNumber = 1 : size(YMU_matrix, 2)
img=reshape(YMU_matrix(:, ImageNumber),[150 130 3]);
...
end
  2 Kommentare
Annie micheal
Annie micheal am 4 Okt. 2017
Thanx a lot.. its working
Jan
Jan am 4 Okt. 2017
@Annie: If this solves your problem, please accept the answer. Thanks.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Image Processing Toolbox 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