函数原型: void cv::normalize(InputArry src,InputOutputArray dst,double alpha=1,double beta=0,int norm_type=NORM_L2,int dtype=-1,InputArray mark=noArry()) 2.函数作用 归一化数据.该函数分为范围归一化与数据值归一化.(Normalizes the norm or value range of an array.) 3.参数说明 src …
OpenCV has function matchTemplate to easily do the template matching. But its accuracy can only reach pixel level, to achieve subpixel accuracy, need to do some calculations. Here i use a method to make template matching reach subpixel. First use mat…