Bug in line function in 2.4.8?
I am running VS2012 c++/cli on Win 8.1 64 bit.
I recently updated my libraries from version 2.4.6 to 2.4.8. Previously, I had a series of functions that called the line function and those were working perfectly (or at least I never saw this problem).
Now, I updated to 2.4.8 and what I thought were simple functions are crashing at run time.
In particular, the following code is causing a crash:
cv::Mat Frame;
Frame = cv::imread("Testfile.png");
cv::line(Frame,cv::Point(0,375),cv::Point(999,375),CV_RGB(200,0,0),1,8,0);
Frame is a Mat that has 1000 columns and 750 rows.
When I run this, I get an error saying "Run Time Check Failure #2 - Stack around the variable 'pt' was corrupted."
It is pointing me to the last line of the function "ThickLine" in the file drawing.cpp.