我刚刚完成了Udacity Parallel编程阶段2课程,现在我正在将我学到的知识应用到OpenCV的基本应用程序中,该应用程序将高斯模糊应用于通过网络摄像头传输的恒定图像流。 / p>
我正在将帧加载到Mat
对象中,而在我的循环中我想调用方法gaussian_cpu
,唯一的问题是它需要将uchar4传递给输入和输出参数。如何将Mat
对象转换为uchar4
?
// Keep processing frames - Do CPU First
while(cpu_frames > 0)
{
cout << cpu_frames << "\n";
camera >> frameIn;
gaussian_cpu(frameIn, frameOut, numRows(), numCols(), h_filter__, 9);
imshow("Source", frameIn);
imshow("Dest", frameOut);
// 2ms delay to prevent system from being interrupted whilst drawing the new frame
waitKey(2);
cpu_frames--;
}
我的方法签名看起来像这样:
void gaussian_cpu(
const uchar4* const rgbaImage, // input image from the camera
uchar4* const outputImage, // The image we are writing back for display
size_t numRows, size_t numCols, // Width and Height of the input image (rows/cols)
const float* const filter, // The value of sigma
const int filterWidth // The size of the stencil (3x3) 9
)
我需要使用uchar4,这样我就可以分割通道,进行卷积,然后重新组合通道以返回输出图像。有没有办法做到这一点?
答案 0 :(得分:3)
opencv一般使用bgr,3通道Mats,但基本:
Mat bgra;
cvtColor( frameIn, bgra, CV_BGR2BGRA );
将生成(未使用的)第4个频道。现在你可能需要为你输出memImage:
Mat frameOut( bgra.size(), bgra.type() );
然后你可以将它们输入你的gaussian_cpu():
int filterWidth=5;
float *filter = ... // your job, not mine ;)
gaussian_cpu( (uchar4*)(bgra.data), (uchar4*)(frameOut.data), bgra.rows, bgra.cols, filter, filterWidth );