我需要在矩阵中存储32位无符号整数.
当我尝试创建矩阵时:
Mat frameV(frameT1.rows-2*R, frameT1.cols-2*R, CV_32UC1 );
Run Code Online (Sandbox Code Playgroud)
这给出了编译错误:
error C2065: 'CV_32UC1' : undeclared identifier
Run Code Online (Sandbox Code Playgroud)
虽然CV_8UC1有效,但我需要CV_32UC1.
我正在使用MSVC 2010和OpenCV 2.4.3.