OpenCV SURF function is not implemented

前端 未结 4 629
予麋鹿
予麋鹿 2020-12-01 09:48

When I try to run the sample find_obj.cpp or any OpenCV SURF program I get the following error in command prompt while executing the code. The project builds wi

4条回答
  •  执笔经年
    2020-12-01 10:43

    It's not a bug. SURF is located in nonfree module. To use it you should initialize nonfree module:

        #include  
        ... 
        cv::initModule_nonfree();
    

提交回复
热议问题