find_shape_model参数介绍
时间: 2023-08-03 22:56:38 浏览: 256
形状匹配find_scaled_shape_model
5星 · 资源好评率100%
find_shape_model是一个函数,主要用于在图像中查找特定形状的模型。它的参数如下:
1. image:待查找的输入图像。
2. templ:要查找的模板图像。
3. max_score_thresh:最大得分阈值,如果得分低于此值,匹配将被拒绝。
4. min_score_thresh:最小得分阈值,如果得分高于此值,则可以将其添加到匹配结果中。
5. orientation_weight:控制旋转不变性的权重。
6. scale_weight:控制尺度不变性的权重。
7. model_update:模型更新标志,如果为true,则更新模型。
8. search_method:搜索方法,可以是“MultiScale”或“SingleScale”。
9. template_coords:模板的坐标,用于指定模板的位置。
10. template_scale:模板的缩放比例。
11. template_orientation:模板的方向。
12. num_scales:用于指定搜索尺度的数量。
13. scale_factor:用于指定搜索尺度的因子。
14. angle_step:用于指定旋转角度的步长。
注意:这些参数可能会因OpenCV版本和具体函数实现而有所不同。
阅读全文