1 | initial version |
void surf_detection(Mat img_1,Mat img_2); you cant get out img_2 you only send a copy of img_2 So change function like void surf_detection(Mat img_1,Mat& img_2)
2 | No.2 Revision |
void surf_detection(Mat img_1,Mat img_2);
img_2);
you cant get out img_2 you only send a copy of img_2
So change function like
like
void surf_detection(Mat img_1,Mat& img_2)