├── ALL.pro ├── Makefile ├── README.md ├── bin ├── libVOCHOG.so ├── libVOCHOG.so.0 ├── libVOCHOG.so.0.7 ├── libVOCHOG.so.0.7.0 └── test ├── examples └── test │ ├── Makefile │ ├── main.cpp │ ├── main.o │ └── test.pro ├── person_and_bike_006.png ├── prepare_profiling_env.sh └── src ├── HOGDefines.h ├── HOGUtils.cu ├── HOGUtils.h ├── Makefile ├── VOCHOG.pro ├── get_cells.cu ├── get_cells.h ├── get_features.cu ├── get_features.h ├── global.h ├── gpu_trace.h ├── process.cpp ├── process.h ├── test_gpu_trace.cu ├── timer.cu ├── timer.h ├── voc_hog.cpp └── voc_hog.h /ALL.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = subdirs 3 | 4 | SUBDIRS = src \ 5 | examples/test 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/README.md -------------------------------------------------------------------------------- /bin/libVOCHOG.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/bin/libVOCHOG.so -------------------------------------------------------------------------------- /bin/libVOCHOG.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/bin/libVOCHOG.so.0 -------------------------------------------------------------------------------- /bin/libVOCHOG.so.0.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/bin/libVOCHOG.so.0.7 -------------------------------------------------------------------------------- /bin/libVOCHOG.so.0.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/bin/libVOCHOG.so.0.7.0 -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/bin/test -------------------------------------------------------------------------------- /examples/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/examples/test/Makefile -------------------------------------------------------------------------------- /examples/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/examples/test/main.cpp -------------------------------------------------------------------------------- /examples/test/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/examples/test/main.o -------------------------------------------------------------------------------- /examples/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/examples/test/test.pro -------------------------------------------------------------------------------- /person_and_bike_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/person_and_bike_006.png -------------------------------------------------------------------------------- /prepare_profiling_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/prepare_profiling_env.sh -------------------------------------------------------------------------------- /src/HOGDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/HOGDefines.h -------------------------------------------------------------------------------- /src/HOGUtils.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/HOGUtils.cu -------------------------------------------------------------------------------- /src/HOGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/HOGUtils.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/VOCHOG.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/VOCHOG.pro -------------------------------------------------------------------------------- /src/get_cells.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/get_cells.cu -------------------------------------------------------------------------------- /src/get_cells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/get_cells.h -------------------------------------------------------------------------------- /src/get_features.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/get_features.cu -------------------------------------------------------------------------------- /src/get_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/get_features.h -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/global.h -------------------------------------------------------------------------------- /src/gpu_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/gpu_trace.h -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/process.h -------------------------------------------------------------------------------- /src/test_gpu_trace.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/test_gpu_trace.cu -------------------------------------------------------------------------------- /src/timer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/timer.cu -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/timer.h -------------------------------------------------------------------------------- /src/voc_hog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/voc_hog.cpp -------------------------------------------------------------------------------- /src/voc_hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hushell/CUHOG/HEAD/src/voc_hog.h --------------------------------------------------------------------------------