首页 > 代码库 > 得到LBP特征值图

得到LBP特征值图

// 得到 LBP纹理特征值图
// 参数:
// src 为单通道灰度图
// dst 为目标图
// 返回值:
// 返回ture 表示运行正常
// 返回false 表示运行出错
bool GetLBPFeatureImage(IplImage *src, IplImage *dst)
{
	if (! src || ! dst) return false;

	// 获取图像信息
	const int height = src->height;
	const int width  = src->width;
	const int widthStep = src->widthStep;
	const int channels  = src->nChannels;  // 通道数
	const uchar * data  = http://www.mamicode.com/(uchar *)src->imageData;>

得到LBP特征值图