USU-Robosub / Poseidon

USU's third-generation autonomous submarine
http://usub.cs.usu.edu
17 stars 0 forks source link

Add OpenCV template matching to vision library #259

Open madfrog54321 opened 6 years ago

madfrog54321 commented 6 years ago

Using OpenCV template matching the vision library will perform template matching on a streaming source (i.e. video file, webcam).

Requirements

class TemplateMatchingDetector {
public:
  TemplateMatchingDetector(cv::VideoCapture imageStream, cv::Mat templateImage, float sensitivity);
  std::tuple<bool, float, float> update();
}