Hi guys, How to fix bellow error.
When I compiling APP_STD with c++_static. Bellow error has occurred.
error: undefined reference to 'cv::DescriptorMatcher::match(cv::_InputArray const&, cv::_InputArray const&, std::__ndk1::vector<cv::DMatch, std::__ndk1::allocator<cv::DMatch> >&, cv::_InputArray const&) const'
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
Above Error when I called the method.
Ptr<FlannBasedMatcher> matcher = FlannBasedMatcher::create();
vector< DMatch > matches;
matcher->match(objectDescriptor, sceneDescriptor, matches);
If I compiling with gnustl_static, then some methods of the C++ have not solved: copy_if, accumulate, minmax_element,..etc,...