Quantcast
Channel: OpenCV Q&A Forum - Latest question feed
Viewing all articles
Browse latest Browse all 19555

Assertion failed while using findEssentialMat()

$
0
0
I using findEssentialMat() function so I can later recover the relative pose (translation and rotation) between two following frames of a webcam with recoverPose(). However, I get an asserion failed error: OpenCV Error: Assertion failed(!fixedType() && !fixedSize()) in create, file /home/patrchri/opencv/modules/core/src/matrix.cpp, line 2297 To be more specific, I have written the following in a while loop which reads the following frames : vector kpointsframe1; vector kpointsframe2; vector pointsframe1; vector pointsframe2; vector velocityvect; vector status; vector err; Size winSize = Size(21,21); TermCriteria termcrit = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS,30,0.01); Mat Essential,R,T; capture.read(frame1); capture.read(frame2); undistort(frame1,frame1undist,CameraMatrix,distCoeffs); undistort(frame2,frame2undist,CameraMatrix,distCoeffs); cvtColor(frame1undist,frame1gray,CV_BGR2GRAY); cvtColor(frame2undist,frame2gray,CV_BGR2GRAY); //goodFeaturesToTrack(frame1gray,corners,500,qualityLevel,minDistance,Mat(),blockSize,useHarrisDetector); FAST(frame1gray,kpointsframe1,THRESHOLD_DIFFERENCE,false,FastFeatureDetector::TYPE_9_16); for(int i=0;i

Viewing all articles
Browse latest Browse all 19555

Trending Articles