Uniform Circular LBP face recognition implementation

怎甘沉沦 提交于 2019-12-03 07:13:08

I don't know about python but most probably your code is broken.

My advice is, follow these 2 links, and try to port one of the C++ codes to python. First link also contains some information about LBP.

http://www.bytefish.de/blog/local_binary_patterns/

https://github.com/berak/uniform-lbp

And one other thing I can say, you said you are resizing images into 200x200. Why are you doing that? As far as I know AT&T images are smaller than that, your are just making images bigger but I don't think it is going to help you, moreover it may have a negative effect in performance.

I will say some things try them

(1) ROC Curve is drawn between False Acceptance Rate and False Rejection Rate.

False Acceptance is fine but it should be Genuine rejection rate in the above description and not Genuine acceptance rate.

Check to what parameters the curve is being drawn. I can't help u much with the code. I don't know Python.

(2) If you are not getting better result, please check whether LBP works efficiently for the problem you trying to solve. LBP is mainly used for Texture analysis.

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