基于模板的图像拼接_图像拼接算法模板匹配-CSDN博客
之前的代码在计算模板位置后,高度方向上的值调整时不对。
if height_dst == matchRight_H:
matchRight = imageRight[max_loc[1] - left_height_begin: height_Right, max_loc[0]:width_Right]
elif height_dst < matchRight_H:
matchRight = imageRight[max_loc[1] - left_height_begin: height_Right - 1, max_loc[0]:width_Right]
else:
matchRight = imageRight[max_loc[1] - left_height_begin: height_Right, max_loc[0]:width_Right]
dst_y_start = height_dst - matchRight_H