├── .gitignore ├── CMakeLists.txt ├── README.md ├── demo ├── detect_demo.cpp └── edge_demo.cpp ├── matlab ├── acfmat2bin.m └── edgemat2bin.m ├── model ├── acfmodel_caltech.bin └── acfmodel_inria.bin └── src ├── ACFDetector.cpp ├── ACFDetector.h ├── CMakeLists.txt ├── CellArray.cpp ├── CellArray.h ├── EdgeBoxes.cpp ├── EdgeBoxes.h ├── EdgeDetector.cpp ├── EdgeDetector.h ├── bbNms.cpp ├── bbNms.h ├── box.cpp ├── box.h ├── chnsCompute.cpp ├── chnsCompute.h ├── chnsPyramid.cpp ├── chnsPyramid.h ├── convConstMex.h ├── convUtil.cpp ├── convUtil.h ├── global.h ├── gradientMex.h ├── gradientUtil.cpp ├── gradientUtil.h ├── imPad.cpp ├── imPad.h ├── imPadMex.h ├── imResample.cpp ├── imResample.h ├── imResampleMex.h ├── rgbConvert.cpp ├── rgbConvert.h ├── rgbConvertMex.h ├── sse.h ├── wrappers.cpp └── wrappers.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/README.md -------------------------------------------------------------------------------- /demo/detect_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/demo/detect_demo.cpp -------------------------------------------------------------------------------- /demo/edge_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/demo/edge_demo.cpp -------------------------------------------------------------------------------- /matlab/acfmat2bin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/matlab/acfmat2bin.m -------------------------------------------------------------------------------- /matlab/edgemat2bin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/matlab/edgemat2bin.m -------------------------------------------------------------------------------- /model/acfmodel_caltech.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/model/acfmodel_caltech.bin -------------------------------------------------------------------------------- /model/acfmodel_inria.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/model/acfmodel_inria.bin -------------------------------------------------------------------------------- /src/ACFDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/ACFDetector.cpp -------------------------------------------------------------------------------- /src/ACFDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/ACFDetector.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CellArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/CellArray.cpp -------------------------------------------------------------------------------- /src/CellArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/CellArray.h -------------------------------------------------------------------------------- /src/EdgeBoxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/EdgeBoxes.cpp -------------------------------------------------------------------------------- /src/EdgeBoxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/EdgeBoxes.h -------------------------------------------------------------------------------- /src/EdgeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/EdgeDetector.cpp -------------------------------------------------------------------------------- /src/EdgeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/EdgeDetector.h -------------------------------------------------------------------------------- /src/bbNms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/bbNms.cpp -------------------------------------------------------------------------------- /src/bbNms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/bbNms.h -------------------------------------------------------------------------------- /src/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/box.cpp -------------------------------------------------------------------------------- /src/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/box.h -------------------------------------------------------------------------------- /src/chnsCompute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/chnsCompute.cpp -------------------------------------------------------------------------------- /src/chnsCompute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/chnsCompute.h -------------------------------------------------------------------------------- /src/chnsPyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/chnsPyramid.cpp -------------------------------------------------------------------------------- /src/chnsPyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/chnsPyramid.h -------------------------------------------------------------------------------- /src/convConstMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/convConstMex.h -------------------------------------------------------------------------------- /src/convUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/convUtil.cpp -------------------------------------------------------------------------------- /src/convUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/convUtil.h -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/global.h -------------------------------------------------------------------------------- /src/gradientMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/gradientMex.h -------------------------------------------------------------------------------- /src/gradientUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/gradientUtil.cpp -------------------------------------------------------------------------------- /src/gradientUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/gradientUtil.h -------------------------------------------------------------------------------- /src/imPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/imPad.cpp -------------------------------------------------------------------------------- /src/imPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/imPad.h -------------------------------------------------------------------------------- /src/imPadMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/imPadMex.h -------------------------------------------------------------------------------- /src/imResample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/imResample.cpp -------------------------------------------------------------------------------- /src/imResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/imResample.h -------------------------------------------------------------------------------- /src/imResampleMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/imResampleMex.h -------------------------------------------------------------------------------- /src/rgbConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/rgbConvert.cpp -------------------------------------------------------------------------------- /src/rgbConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/rgbConvert.h -------------------------------------------------------------------------------- /src/rgbConvertMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/rgbConvertMex.h -------------------------------------------------------------------------------- /src/sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/sse.h -------------------------------------------------------------------------------- /src/wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/wrappers.cpp -------------------------------------------------------------------------------- /src/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zimpha/EdgeBoxes/HEAD/src/wrappers.h --------------------------------------------------------------------------------