opencv android版模板查找
private void test() {
Mat image = bitmapToMat(BitmapFactory.decodeResource(getResources(), R.mipmap.orgin_img));
Mat template = bitmapToMat(BitmapFactory.decodeResource(getResources(), R.mipmap.target_img));
int resultCols = image.cols() - template.cols() + 1;
int resultRows = image.rows() - template.