当我想将 IpLmage 转换为 mat、opencv 时遇到了一些错误
Posted
技术标签:
【中文标题】当我想将 IpLmage 转换为 mat、opencv 时遇到了一些错误【英文标题】:I met some errors when I want to convert IpLmage to mat, opencv 【发布时间】:2015-06-25 03:30:39 【问题描述】:void LBP(Mat src, IplImage* dst)
int tmp[8] = 0 ;
CvScalar s;
Mat temp = Mat(src.size(), IPL_DEPTH_8U, 1);
uchar *data = (uchar*)src.data;
int step = src.step;
//cout << "step" << step << endl;
for (int i = 1; i<src.size().height - 1; i++)
for (int j = 1; j<src.size().width - 1; j++)
int sum = 0;
if (data[(i - 1)*step + j - 1]>data[i*step + j])
tmp[0] = 1;
else
tmp[0] = 0;
if (data[i*step + (j - 1)]>data[i*step + j])
tmp[1] = 1;
else
tmp[1] = 0;
if (data[(i + 1)*step + (j - 1)]>data[i*step + j])
tmp[2] = 1;
else
tmp[2] = 0;
if (data[(i + 1)*step + j]>data[i*step + j])
tmp[3] = 1;
else
tmp[3] = 0;
if (data[(i + 1)*step + (j + 1)]>data[i*step + j])
tmp[4] = 1;
else
tmp[4] = 0;
if (data[i*step + (j + 1)]>data[i*step + j])
tmp[5] = 1;
else
tmp[5] = 0;
if (data[(i - 1)*step + (j + 1)]>data[i*step + j])
tmp[6] = 1;
else
tmp[6] = 0;
if (data[(i - 1)*step + j]>data[i*step + j])
tmp[7] = 1;
else
tmp[7] = 0;
s.val[0] = (tmp[0] * 1 + tmp[1] * 2 + tmp[2] * 4 + tmp[3] * 8 + tmp[4] * 16 + tmp[5] * 32 + tmp[6] * 64 + tmp[7] * 128);
cvSet2D(dst, i, j, s);
以上是我的本地二进制模式的原始代码,src 是输入矩阵,dst 是输出。现在我想将 void LBP(Mat src, IplImage* dst) 中的 IPLimage 更改为 void LBP(Mat src, mat dst),我尝试了很多方法,但我总是遇到断言失败或其他问题,我认为它可能是cvSet2D(dst, i, j, s)的问题;
这是输入 src 的定义:
Mat Gray_face = Mat(image.size(), image.depth(), 1);
这是我对输出 dst 的定义:
IplImage* lbp_face = cvCreateImage(Gray_face.size(), IPL_DEPTH_8U, 1);
我想将其更改为 mat 并使其适用于我的程序。
这就是我调用 LBP 函数的方式:
LBP(Gray_face, lbp_face);
我对此很陌生,有人可以帮助我吗?非常感谢!
【问题讨论】:
【参考方案1】:确实 cvSet2D 是旧接口。要将点设置为 cv::Mat dst,您可以使用 at()。首先,您首先(重新)将其分配为:
dst.create(src.size(),CV_8U);
然后在你的情况下设置一个价值点:
dst.at<char>(i,j) = (tmp[0] * 1 + tmp[1] * 2 + tmp[2] * 4 + tmp[3] * 8 + tmp[4] * 16 + tmp[5] * 32 + tmp[6] * 64 + tmp[7] * 128);
最后但同样重要的是,如果你想返回结果,你的函数定义应该是:
void LBP(Mat src, Mat & dst);
带有对目的地的引用 (&)。
【讨论】:
以上是关于当我想将 IpLmage 转换为 mat、opencv 时遇到了一些错误的主要内容,如果未能解决你的问题,请参考以下文章
将 OpenCV Mat 转换为数组(可能是 NSArray)