C++ version codebase for Recurrent Scale Approximation for Object Detection in CNN published at ICCV 2017, [arXiv]. The codebase was written according to the [matlab version code]. There is no training code provided in matlab version project,so, here we just offer test code.
Ensure opencv,Eigen and cuda have been installed.
git clone https://github.com/QiangXie/RSA-for-object-detection-cpp-version.git
mkdir bin && mkdir third_party
cd third_party
git clone https://github.com/sciencefans/CaffeMex_v2.git
cp Makefile.config.example Makefile.config
make all -j32
4.modify Makefile to customize your own config, and compile RSA for object detection c++ version code
cd RSA-for-object-detection-cpp-version
make
./bin/demo
190ms per image with TitanX,compare with Matlab version has a wide gap,still in progress.