Face recognition - Python

為{幸葍}努か 提交于 2019-12-05 18:20:43

I don't believe that you have modified the order that the images are stored in w compared to in images, therefore, the idx from np.argmin(d) should be the same index of the images list, so

images[idx]

should be the image you want.

Of course,

images[idx].shape

will give (1800,) because it's still flattened. If you want to unflatten it, you can do:

images[idx].reshape(90,90)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!