# DS **Repository Path**: nastyzcj/DS ## Basic Information - **Project Name**: DS - **Description**: cpp deep_sort: C++ implementation of Simple Online Realtime Tracking with a Deep Association Metric - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-01-09 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README **DS**(~~deepsort cpp version~~) C++ implementation of Simple Online Realtime Tracking with a Deep Association Metric # 1. dependencies component|version -|- eigen|3.3 opencv|- boost|- tensorflow|1.4 # 2. build ./make.sh # 3. prepare data change the var values at [lines160-162 in Main.cpp](https://github.com/oylz/DS/blob/master/Main.cpp#L160TL162): ``` _imgDir = "/home/xyz/code1/xyz/img1/"; // MOT format _rcFile = "/home/xyz/code1/xyz/det/det.txt"; // MOT format _imgCount = 680; // frames count ``` # 4. run ./r.sh # 5.tips tensorflow build: ``` (1) ./configure (2) bazel build -c opt --copt=-mavx --copt=-mavx2 --copt=-mfma --copt=-mfpmath=both --copt=-msse4.2 --config=cuda tensorflow:libtensorflow_cc.so ```