shape_based_matching icon indicating copy to clipboard operation
shape_based_matching copied to clipboard

特征点个数和stride有没有一个动态自动搜索的方法?

Open xinsuinizhuan opened this issue 4 years ago • 2 comments

针对不同的模板,都得试好几个特这点个数? 我使用如下来经验值来做,但是不是很好: num_features 模型特征值个数(模板图图最小边的3分之一,同时不能小于20): int minlenth = std::min(tempmat.rows, tempmat.cols); m_num_feature = std::min(minlenth/3,20);

xinsuinizhuan avatar Aug 09 '21 06:08 xinsuinizhuan

类似于halcon的接口,只设置旋转角度范围和变化尺度,缩放范围和变化尺度,没有设置特征点个数的接口

xinsuinizhuan avatar Aug 09 '21 06:08 xinsuinizhuan

自己写一个接口嘛

wly2020-robot avatar Oct 12 '21 09:10 wly2020-robot