|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <sstream> |
|
|
|
|
|
#include <chrono> |
|
|
#include <iomanip> |
|
|
#include "include/sde_predictor.h" |
|
|
|
|
|
using namespace paddle_infer; |
|
|
|
|
|
namespace PaddleDetection { |
|
|
|
|
|
|
|
|
void SDEPredictor::LoadModel(const std::string& det_model_dir, |
|
|
const std::string& reid_model_dir, |
|
|
const std::string& run_mode) { |
|
|
throw "Not Implement"; |
|
|
} |
|
|
|
|
|
void SDEPredictor::Preprocess(const cv::Mat& ori_im) { throw "Not Implement"; } |
|
|
|
|
|
void SDEPredictor::Postprocess(const cv::Mat dets, |
|
|
const cv::Mat emb, |
|
|
MOTResult* result) { |
|
|
throw "Not Implement"; |
|
|
} |
|
|
|
|
|
void SDEPredictor::Predict(const std::vector<cv::Mat> imgs, |
|
|
const double threshold, |
|
|
MOTResult* result, |
|
|
std::vector<double>* times) { |
|
|
throw "Not Implement"; |
|
|
} |
|
|
|
|
|
} |
|
|
|