remove warning: uninitialized variable

pull/300/head
Kurnianggoro 10 years ago
parent eb0c67065d
commit 14a618c15c
  1. 2
      modules/tracking/src/multiTracker.cpp

@ -78,7 +78,7 @@ namespace cv {
// add a set of objects to be tracked
bool MultiTracker::add(const String& trackerType, const Mat& image, std::vector<Rect2d> boundingBox){
// status of the tracker addition
bool stat;
bool stat=false;
// add tracker for all input objects
for(unsigned i =0;i<boundingBox.size();i++){

Loading…
Cancel
Save