1 | initial version |
This is how you can find your code: 1) find out in which module your function is (google for cv::matchTemplate brings you to the docu): http://docs.opencv.org/modules/imgproc/doc/object_detection.html
-> we are in imgproc
2) go to the OpenCV git at https://github.com/Itseez/opencv/tree/master/ 3) now look in modules/imgproc/src 4) find your code at https://github.com/Itseez/opencv/blob/master/modules/imgproc/src/templmatch.cpp
2 | No.2 Revision |
This is how you can find your code:
code:
1) find out in which module your function is (google for cv::matchTemplate brings you to the docu): http://docs.opencv.org/modules/imgproc/doc/object_detection.html
-> we are in imgproc
2) go to the OpenCV git at https://github.com/Itseez/opencv/tree/master/
https://github.com/Itseez/opencv/tree/master/
3) now look in modules/imgproc/src
modules/imgproc/src
4) find your code at https://github.com/Itseez/opencv/blob/master/modules/imgproc/src/templmatch.cpp