Commit 660a53e0 authored by RafaRuiz's avatar RafaRuiz

Update lkdemo.cpp because of memory leak

In MacOSx x64 it was getting a memory leak even without initializing points:
http://code.opencv.org/issues/4250
parent e6418802
......@@ -61,12 +61,11 @@ int main( int argc, char** argv )
namedWindow( "LK Demo", 1 );
setMouseCallback( "LK Demo", onMouse, 0 );
Mat gray, prevGray, image;
Mat gray, prevGray, image, frame;
vector<Point2f> points[2];
for(;;)
{
Mat frame;
cap >> frame;
if( frame.empty() )
break;
......
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