├── .gitignore ├── Doxyfile ├── LICENSE ├── Makefile.in ├── README ├── best_faster.tree ├── configure ├── configure.ac ├── cvd_fast.cc ├── cvd_fast.h ├── detectors.cc ├── detectors.h ├── documentation.h ├── dog.cc ├── dog.h ├── extract_FAST_features.cc ├── extract_fast_n_features.cc ├── extract_features.cc ├── extract_features.cfg ├── fast_N_features.cc ├── fast_tree_to_C_score_bsearch ├── fast_tree_to_cxx_score_bsearch ├── fast_tree_to_cxx_score_iterate ├── fast_tree_to_matlab_score_bsearch ├── fast_tree_to_python_score_bsearch ├── fast_trees └── FAST_trees.tar.bz2 ├── faster_bytecode.cc ├── faster_bytecode.h ├── faster_detector.cc ├── faster_detector.h ├── faster_tree.cc ├── faster_tree.h ├── gvars_vector.h ├── harrislike.cc ├── harrislike.h ├── image_warp.cc ├── learn_detector.cc ├── learn_detector.cfg ├── learn_detector_orig.cxx ├── learn_fast_tree.cc ├── load_data.cc ├── load_data.h ├── makedist.sh ├── offsets.cc ├── offsets.h ├── susan.cc ├── susan.h ├── susan.patch ├── svector.h ├── tag └── fn.h ├── test_repeatability.cc ├── test_repeatability.cfg ├── utility.h ├── varprintf ├── LICENSE ├── Makefile ├── README.md ├── printf.cc └── varprintf.h ├── warp_to_png.cc └── warp_to_png.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/README -------------------------------------------------------------------------------- /best_faster.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/best_faster.tree -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/configure.ac -------------------------------------------------------------------------------- /cvd_fast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/cvd_fast.cc -------------------------------------------------------------------------------- /cvd_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/cvd_fast.h -------------------------------------------------------------------------------- /detectors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/detectors.cc -------------------------------------------------------------------------------- /detectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/detectors.h -------------------------------------------------------------------------------- /documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/documentation.h -------------------------------------------------------------------------------- /dog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/dog.cc -------------------------------------------------------------------------------- /dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/dog.h -------------------------------------------------------------------------------- /extract_FAST_features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/extract_FAST_features.cc -------------------------------------------------------------------------------- /extract_fast_n_features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/extract_fast_n_features.cc -------------------------------------------------------------------------------- /extract_features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/extract_features.cc -------------------------------------------------------------------------------- /extract_features.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/extract_features.cfg -------------------------------------------------------------------------------- /fast_N_features.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_N_features.cc -------------------------------------------------------------------------------- /fast_tree_to_C_score_bsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_tree_to_C_score_bsearch -------------------------------------------------------------------------------- /fast_tree_to_cxx_score_bsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_tree_to_cxx_score_bsearch -------------------------------------------------------------------------------- /fast_tree_to_cxx_score_iterate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_tree_to_cxx_score_iterate -------------------------------------------------------------------------------- /fast_tree_to_matlab_score_bsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_tree_to_matlab_score_bsearch -------------------------------------------------------------------------------- /fast_tree_to_python_score_bsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_tree_to_python_score_bsearch -------------------------------------------------------------------------------- /fast_trees/FAST_trees.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/fast_trees/FAST_trees.tar.bz2 -------------------------------------------------------------------------------- /faster_bytecode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/faster_bytecode.cc -------------------------------------------------------------------------------- /faster_bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/faster_bytecode.h -------------------------------------------------------------------------------- /faster_detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/faster_detector.cc -------------------------------------------------------------------------------- /faster_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/faster_detector.h -------------------------------------------------------------------------------- /faster_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/faster_tree.cc -------------------------------------------------------------------------------- /faster_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/faster_tree.h -------------------------------------------------------------------------------- /gvars_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/gvars_vector.h -------------------------------------------------------------------------------- /harrislike.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/harrislike.cc -------------------------------------------------------------------------------- /harrislike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/harrislike.h -------------------------------------------------------------------------------- /image_warp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/image_warp.cc -------------------------------------------------------------------------------- /learn_detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/learn_detector.cc -------------------------------------------------------------------------------- /learn_detector.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/learn_detector.cfg -------------------------------------------------------------------------------- /learn_detector_orig.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/learn_detector_orig.cxx -------------------------------------------------------------------------------- /learn_fast_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/learn_fast_tree.cc -------------------------------------------------------------------------------- /load_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/load_data.cc -------------------------------------------------------------------------------- /load_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/load_data.h -------------------------------------------------------------------------------- /makedist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/makedist.sh -------------------------------------------------------------------------------- /offsets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/offsets.cc -------------------------------------------------------------------------------- /offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/offsets.h -------------------------------------------------------------------------------- /susan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/susan.cc -------------------------------------------------------------------------------- /susan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/susan.h -------------------------------------------------------------------------------- /susan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/susan.patch -------------------------------------------------------------------------------- /svector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/svector.h -------------------------------------------------------------------------------- /tag/fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/tag/fn.h -------------------------------------------------------------------------------- /test_repeatability.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/test_repeatability.cc -------------------------------------------------------------------------------- /test_repeatability.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/test_repeatability.cfg -------------------------------------------------------------------------------- /utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/utility.h -------------------------------------------------------------------------------- /varprintf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/varprintf/LICENSE -------------------------------------------------------------------------------- /varprintf/Makefile: -------------------------------------------------------------------------------- 1 | CXX=g++-5 -std=c++14 2 | CXXFLAGS=-g -ggdb 3 | 4 | 5 | all: printF 6 | -------------------------------------------------------------------------------- /varprintf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/varprintf/README.md -------------------------------------------------------------------------------- /varprintf/printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/varprintf/printf.cc -------------------------------------------------------------------------------- /varprintf/varprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/varprintf/varprintf.h -------------------------------------------------------------------------------- /warp_to_png.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/warp_to_png.cc -------------------------------------------------------------------------------- /warp_to_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edrosten/fast-er/HEAD/warp_to_png.h --------------------------------------------------------------------------------