ValueError: cannot reshape array of size xxx into shape (xxx,xxx,xxx)解决方法
报错:ValueError:cannotreshapearrayofsize149184intoshape(28,28,1)报错原因:由于图片的w,h,c相乘不等于149184所导致的。也就是说这张图片的shape不能是(28,28,1)。解决方法:我输入的图片shape为(224,222,3)所以224*222*3=149184通过opencv去改变图片的size#resize图片大小先将原本的