Commit f0595b82 authored by RafaRuiz's avatar RafaRuiz Committed by Dikay900

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 1e014417
...@@ -60,12 +60,11 @@ int main( int argc, char** argv ) ...@@ -60,12 +60,11 @@ int main( int argc, char** argv )
namedWindow( "LK Demo", 1 ); namedWindow( "LK Demo", 1 );
setMouseCallback( "LK Demo", onMouse, 0 ); setMouseCallback( "LK Demo", onMouse, 0 );
Mat gray, prevGray, image; Mat gray, prevGray, image, frame;
vector<Point2f> points[2]; vector<Point2f> points[2];
for(;;) for(;;)
{ {
Mat frame;
cap >> frame; cap >> frame;
if( frame.empty() ) if( frame.empty() )
break; 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