1957

无聊蛋疼的1957写的低端博客
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2014年1月31日

摘要: Local Binary Pattern确实够简单。。。先写个代码在这儿,空了再弄#include #include #include using namespace std;using namespace cv;void LBP(const Mat& src , Mat& dst) { int rows =src.rows; int cols = src.cols; auto expand = [&](int x , int y) { int dx[] = {-1,-1,-1,0,1,1,1,0}; int dy[] = {-1,0,1,... 阅读全文

posted @ 2014-01-31 00:18 1957 阅读(562) 评论(0) 推荐(0)