yoannafrondon 0 Newbie Poster

SOS,SOS,SOS,SOS,SOS,SOS,SOS

hello:
I'm working with opencv and i have a problem with the function cvFindFundamentalMat(...), the code capture a window with a following warning:
//-------------------------------------
Windows has triggered a breakpoint in MySIFT.exe.

This may be due to a corruption of the heap, which indicates a bug in MySIFT.exe or any of the DLLs it has loaded.

This may also be due to the user pressing F12 while MySIFT.exe has focus.

The output window may have more diagnostic information.
//--------------------------------------------------------------

The fragment of my code is:

CvMat* points1 = cvCreateMat(2,l->m_keyDescs.size(),CV_64FC1);
	CvMat* points2 = cvCreateMat(2,l->m_keyDescs.size(),CV_64FC1);
	CvMat* status =cvCreateMat(2,l->m_keyDescs.size(),CV_8UC1);
	CvMat* f_mat = cvCreateMat(3,3,CV_64FC1);
//After filling the matrix, go for next step	
int f = cvFindFundamentalMat( points1,points2,f_mat,CV_FM_RANSAC,1.0,0.99,status );

-----------------------------------------------------------------------------

What that this happening here?
Why that shows me the windows?

Don't domine much the english languaje, pardon me the grammaticals errors. I speaks Spanish.
Thanks, please help me.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.