// NanoTrack // Link to original inference code: https://github.com/HonglinChu/NanoTrack // Link to original training repo: https://github.com/HonglinChu/SiamTrackers/tree/master/NanoTrack // backBone model: https://github.com/HonglinChu/SiamTrackers/blob/master/NanoTrack/models/onnx/nanotrack_backbone_sim.onnx // headNeck model: https://github.com/HonglinChu/SiamTrackers/blob/master/NanoTrack/models/onnx/nanotrack_head_sim.onnx #include #include #include #include #include #include using namespace cv; using namespace cv::dnn; const char *keys = "{ help h | | Print help message }" "{ input i | | Full path to input video folder, the specific camera index. (empty for camera 0) }" "{ backbone | backbone.onnx | Path to onnx model of backbone.onnx}" "{ headneck | headneck.onnx | Path to onnx model of headneck.onnx }" "{ backend | 0 | Choose one of computation backends: " "0: automatically (by default), " "1: Halide language (http://halide-lang.org/), " "2: Intel's Deep Learning Inference Engine (https://software.intel.com/openvino-toolkit), " "3: OpenCV implementation, " "4: VKCOM, " "5: CUDA }," "{ target | 0 | Choose one of target computation devices: " "0: CPU target (by default), " "1: OpenCL, " "2: OpenCL fp16 (half-float precision), " "3: VPU, " "4: Vulkan, " "6: CUDA, " "7: CUDA fp16 (half-float preprocess) }" ; static int run(int argc, char** argv) { // Parse command line arguments. CommandLineParser parser(argc, argv, keys); if (parser.has("help")) { parser.printMessage(); return 0; } std::string inputName = parser.get("input"); std::string backbone = parser.get("backbone"); std::string headneck = parser.get("headneck"); int backend = parser.get("backend"); int target = parser.get("target"); Ptr tracker; try { TrackerNano::Params params; params.backbone = samples::findFile(backbone); params.neckhead = samples::findFile(headneck); params.backend = backend; params.target = target; tracker = TrackerNano::create(params); } catch (const cv::Exception& ee) { std::cerr << "Exception: " << ee.what() << std::endl; std::cout << "Can't load the network by using the following files:" << std::endl; std::cout << "backbone : " << backbone << std::endl; std::cout << "headneck : " << headneck << std::endl; return 2; } const std::string winName = "NanoTrack"; namedWindow(winName, WINDOW_AUTOSIZE); // Open a video file or an image file or a camera stream. VideoCapture cap; if (inputName.empty() || (isdigit(inputName[0]) && inputName.size() == 1)) { int c = inputName.empty() ? 0 : inputName[0] - '0'; std::cout << "Trying to open camera #" << c << " ..." << std::endl; if (!cap.open(c)) { std::cout << "Capture from camera #" << c << " didn't work. Specify -i=