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/tutorials/features2d/akaze_tracking/akaze_tracking.html#akazetracking
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.