Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "SNIPER-mxnet"]
path = SNIPER-mxnet
url = git@github.com:mahyarnajibi/SNIPER-mxnet.git
url = https://github.com/mahyarnajibi/SNIPER-mxnet
11 changes: 11 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
opencv-python
Cython
matplotlib
numpy
scipy
pyyaml
EasyDict
protobuf
argparse
scikit-image
tqdm
10 changes: 10 additions & 0 deletions scripts/compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
echo 'Compiling NMS module...'
(cd lib/nms; python setup_linux.py build_ext --inplace)
echo 'Compiling bbox module...'
(cd lib/bbox; python setup_linux.py build_ext --inplace)
#echo 'Compiling chips module...'
#(cd lib/chips; python setup.py)
echo 'Compiling coco api...'
(cd lib/dataset/pycocotools; python setup_linux.py build_ext --inplace)
echo 'All Done!'