# Detection **Repository Path**: chenxingyusean/detection ## Basic Information - **Project Name**: Detection - **Description**: This is a detection project out of caffe - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-07-01 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Detection This is a detection project out of caffe # Useage ```bash cd ~/Documents git clone git@git.oschina.net:chenxingyusean/detection.git git clone git@git.oschina.net:chenxingyusean/ssd.git # use ssd caffe as external package cd ssd git checkout ssd make -j8 make py make test -j8 mkdir cmake_build && cd cmake_build cmake .. -DBUILD_SHARED_LIB=ON cmake . -DCMAKE_BUILD_TYPE=Debug # switch to debug make -j 12 && make install # installs by default to build_dir/install cmake . -DCMAKE_BUILD_TYPE=Release # switch to release make -j 12 && make install # doesn’t overwrite debug install\ # make the project cd ../Detection mkdir build && cd build cmake .. make cd .. # copy your data to ./data and modify ./data/list.txt # copy your *.caffemodel and deploy.prototxt to ./model ./detection.sh ```