摘要:
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)
浙公网安备 33010602011771号