Subscript indices must either be real positive integers or logicals?
1 次查看(过去 30 天)
显示 更早的评论
Why did i get this error?
ref = imread('TID2008\reference_images\I01.BMP');
A = imread('TID2008\distorted_images\I01_01_1.bmp');
peaksnr = psnr(A, ref);
Subscript indices must either be real positive integers or logicals
回答(1 个)
Jan
2018-1-23
编辑:Jan
2018-1-23
A bold guess: You have redefined one of the used symbols "imread" or "psnr" by an array. Check this:
which imread -all
which psnr -all
If one of does not reply the wanted function on top, use clear to remove the shadowing array and use a different name for it.
Note that it would be useful, if you post a copy of the complete error message. This would narrow down the possible number of problems.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!