No need to check vector size before clear()
authorAndy Maloney <asmaloney@gmail.com>
Sun, 3 Feb 2013 00:00:41 +0000 (19:00 -0500)
committerAndy Maloney <asmaloney@gmail.com>
Sun, 3 Feb 2013 00:00:41 +0000 (19:00 -0500)
modules/contrib/src/chamfermatching.cpp

index 881606a..17d06b3 100644 (file)
@@ -930,15 +930,13 @@ void ChamferMatcher::Template::show() const
 void ChamferMatcher::Matching::addTemplateFromImage(Mat& templ, float scale)
 {
     Template* cmt = new Template(templ, scale);
-    if(templates.size() > 0)
-        templates.clear();
+    templates.clear();
     templates.push_back(cmt);
     cmt->show();
 }
 
 void ChamferMatcher::Matching::addTemplate(Template& template_){
-    if(templates.size() > 0)
-        templates.clear();
+    templates.clear();
     templates.push_back(&template_);
 }
 /**