"AKAZE and ORB planar tracking" tutorial not run on OpenCV 3.0.0-beta
Hi. I download & install OpenCV 3.0.0-beta a week ago.
OS: win7_x64. MS VC++ 2010 Express.
I try to build tutorial sample
http://docs.opencv.org/trunk/doc/tuto...
I can't run full this sample with OpenCV 3.0.0-beta.
1_ at line 141 my programm crashed & exit without any message.
Stats stats, akaze_stats, orb_stats; Ptr<AKAZE> akaze = AKAZE::create();
// akaze->set("threshold", akaze_thresh);
Ptr<ORB> orb = ORB::create();
orb->setMaxFeatures(stats.keypoints);
I comment line 141.
2_ ORB method not run. I comment it all.
3_ My programm did not write output video file. What extention must have the output video file?
When I output to res.mpeg - file is empty (lenth = 0). Output to res.avi (lenth = 5,54Kb). All 705 frames counted. AKAZE-statistics printed.
May be I make something wrong. Help me, please.
Thanks.
there's been some refactoring lately, removal of 'Algorithm' stuff, i guess you had a unlucky pick there.
akaze->set("threshold", akaze_thresh);
should be :akaze->setThreshold(akaze_thresh);
now.try a fresh
git pull
and a rebuild.