Commit e7ac52d1 authored by Ilya Lavrenov's avatar Ilya Lavrenov Committed by Dikay900

fixed "Conditional jump or move depends on uninitialised value" warning

parent 7e26cf56
......@@ -1377,6 +1377,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