Merge pull request #5379 from sturkmen72:patch-9

This commit is contained in:
Alexander Alekhin 2015-09-23 10:15:03 +00:00
commit 6f04385a0e

View File

@ -1909,7 +1909,8 @@ static void showSaveDialog(CvWindow* window)
if (GetSaveFileName(&ofn))
{
cv::Mat tmp; cv::flip(cv::Mat(sz.cy, sz.cx, CV_8UC(channels), data), tmp, 0);
cv::Mat tmp;
cv::flip(cv::Mat(sz.cy, sz.cx, CV_8UC(channels), data, (sz.cx * channels + 3) & -4), tmp, 0);
cv::imwrite(szFileName, tmp);
}
}