Commit 14a618c1 authored by Kurnianggoro's avatar Kurnianggoro

remove warning: uninitialized variable

parent eb0c6706
...@@ -78,7 +78,7 @@ namespace cv { ...@@ -78,7 +78,7 @@ namespace cv {
// add a set of objects to be tracked // add a set of objects to be tracked
bool MultiTracker::add(const String& trackerType, const Mat& image, std::vector<Rect2d> boundingBox){ bool MultiTracker::add(const String& trackerType, const Mat& image, std::vector<Rect2d> boundingBox){
// status of the tracker addition // status of the tracker addition
bool stat; bool stat=false;
// add tracker for all input objects // add tracker for all input objects
for(unsigned i =0;i<boundingBox.size();i++){ for(unsigned i =0;i<boundingBox.size();i++){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment