Constructor
| 38 | |
| 39 | // Constructor |
| 40 | CVTracker::CVTracker(std::string processInfoJson, ProcessingController &processingController) |
| 41 | : processingController(&processingController), json_interval(false){ |
| 42 | SetJson(processInfoJson); |
| 43 | start = 1; |
| 44 | end = 1; |
| 45 | lostCount = 0; |
| 46 | } |
| 47 | |
| 48 | // Set desirable tracker method |
| 49 | cv::Ptr<OPENCV_TRACKER_TYPE> CVTracker::selectTracker(std::string trackerType){ |
nothing calls this directly
no outgoing calls
no test coverage detected