为什么我使用时总是收到此错误cvIntegral()
if ((image = cvLoadImage(filename,1))==0){
return -1;//if there is something wrong exit with -1
}
image2 = cvCreateImage(cvSize(image->width++,image->height++),IPL_DEPTH_8U,1);
cvIntegral(image, image2, NULL,NULL);
cvReleaseImage(&image);//release image and exit
cvReleaseImage(&image2);//release image and exit
return 0;
这是错误
OpenCV 错误:在 cvIntegral 文件 /build/buildd/opencv-2.3.1/modules/ 中断言失败(sum.data == sum0.data && sqsum.data == sqsum0.data && tilted.data ==tilted0.data) imgproc/src/sumpixels.cpp,第 306 行在抛出 'cv::Exception'
what() 实例后终止调用:/build/buildd/opencv-2.3.1/modules/imgproc/src/sumpixels.cpp:306:错误:(-215) sum.data == sum0.data && sqsum.data == sqsum0.data && 倾斜.data == 函数 cvIntegral 中的倾斜0.data