gpt4 book ai didi

android - Android 上矢量 OpenCV 的问题

转载 作者:行者123 更新时间:2023-12-02 17:50:17 25 4
gpt4 key购买 nike

我正在尝试从这里实现代码:http://docs.opencv.org/doc/tutorials/features2d/feature_flann_matcher/feature_flann_matcher.html#feature-flann-matcher

进入安卓应用。我添加了根据本教程编译的非自由模块:http://web.guohuiwang.com/technical-notes/sift_surf_opencv_android

但我在以下方面遇到错误:

for 
( int i = 0; i < descriptors_object.rows; i++ )
{ if( matches[i].distance < 3*min_dist )
{ good_matches.push_back( matches[i]); }
}

Field 'distance' could not be resolved
Invalid arguments ' // for push_back



任何想法如何解决它?

最佳答案

我也遇到过类似的 jni 问题。我不知道为什么会发生这种情况,但这似乎有效。

DMatch match;
match = matches[i];
if( match.distance < 3*min_dist )
{ good_matches.push_back( match); }

这会奏效。我收到了类似的矢量索引错误。

关于android - Android 上矢量 <DMatch> OpenCV 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23584569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com