Commit fc0b9970 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #5223 from ilya-lavrenov:warpaffine_valgrind

parents a00b37d2 f100cdb6
......@@ -1420,6 +1420,8 @@ TEST(Imgproc_cvWarpAffine, regression)
IplImage* src = cvCreateImage(cvSize(100, 100), IPL_DEPTH_8U, 1);
IplImage* dst = cvCreateImage(cvSize(100, 100), IPL_DEPTH_8U, 1);
cvZero(src);
float m[6];
CvMat M = cvMat( 2, 3, CV_32F, m );
int w = src->width;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment