Aircraft Detection 1.0
|
#include <opencv2/opencv.hpp>
#include <vector>
Go to the source code of this file.
Functions | |
std::vector< cv::Point > | templateMatching (const cv::Mat &src_img) |
Performs template matching on a source image using pre-loaded average planes. | |
std::vector< cv::Point > templateMatching | ( | const cv::Mat & | src_img | ) |
Performs template matching on a source image using pre-loaded average planes.
This function loads a set of average planes and performs multi-threaded template matching on the source image. It returns the coordinates of all matched points found in the image.
[in] | src_img | The source image in which to perform template matching. |
cv::Point
objects representing the coordinates of all matched points.loadAvgPlanes
to load the average planes from the predefined directory. matchTemplateMultiThreaded
to perform multi-threaded template matching.