├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── liblinear-1.91 ├── CMakeLists.txt ├── COPYRIGHT ├── README ├── blas.h ├── blas │ ├── Makefile │ ├── blas.h │ ├── blasp.h │ ├── daxpy.c │ ├── ddot.c │ ├── dnrm2.c │ └── dscal.c ├── blasp.h ├── daxpy.c ├── ddot.c ├── dnrm2.c ├── dscal.c ├── heart_scale ├── linear.cpp ├── linear.def ├── linear.h ├── matlab │ ├── Makefile │ ├── README │ ├── libsvmread.c │ ├── libsvmwrite.c │ ├── linear_model_matlab.c │ ├── linear_model_matlab.h │ ├── make.m │ ├── predict.c │ ├── run.m │ └── train.c ├── predict.c ├── python │ ├── Makefile │ ├── README │ ├── liblinear.py │ └── liblinearutil.py ├── tron.cpp └── tron.h └── modules ├── CMakeLists.txt ├── GIECoder ├── CMakeLists.txt ├── GIECoder.xml ├── README.md ├── app │ ├── CMakeLists.txt │ └── conf │ │ ├── GIECoder_caffenet.ini │ │ ├── GIECoder_caffenet_iCW_tuned.ini │ │ ├── GIECoder_googlenet.ini │ │ └── GIECoder_resnet.ini └── src │ ├── CMakeLists.txt │ ├── GIEFeatExtractor.cpp │ ├── GIEFeatExtractor.h │ ├── cudaUtility.h │ └── main.cpp ├── caffeCoder ├── CMakeLists.txt ├── README.md ├── app │ ├── CMakeLists.txt │ └── conf │ │ ├── bvlc_googlenet_trainval.prototxt │ │ ├── bvlc_googlenet_val_cut1000.prototxt │ │ ├── bvlc_googlenet_val_cutpool5.prototxt │ │ ├── bvlc_reference_caffenet_val.prototxt │ │ ├── bvlc_reference_caffenet_val_cutfc6.prototxt │ │ ├── bvlc_reference_caffenet_val_cutfc7.prototxt │ │ ├── caffeCoder_caffenet.ini │ │ ├── caffeCoder_caffenet_iCW_tuned.ini │ │ ├── caffeCoder_googlenet.ini │ │ ├── caffeCoder_resnet.ini │ │ ├── caffenet_iCW_val_cutfc7.prototxt │ │ └── resnet_val.prototxt ├── caffe-version.h.in ├── caffeCoder.xml └── src │ ├── CMakeLists.txt │ ├── CaffeFeatExtractor.hpp │ └── main.cpp ├── linearClassifierModule ├── CMakeLists.txt ├── FindLibSVM.cmake ├── FindLibSVMLin.cmake ├── README.md ├── include │ ├── SVMLinear.h │ ├── SVMNonLin.h │ ├── linearClassifierModule.h │ ├── linearClassifierThread.h │ └── win_dirent.h └── src │ ├── SVMLinear.cpp │ ├── SVMNonLin.cpp │ ├── linearClassifierModule.cpp │ ├── linearClassifierThread.cpp │ └── main.cpp └── sparseCoder ├── CMakeLists.txt ├── README.md ├── app ├── CMakeLists.txt └── conf │ ├── dictionary_bow.ini │ ├── dictionary_sc.ini │ ├── iol_dictionary.ini │ └── sparseCoder.ini └── src ├── CMakeLists.txt ├── DictionaryLearning.cpp ├── DictionaryLearning.h ├── FindSIFTGPU.cmake ├── SiftGPU_Extractor.cpp ├── SiftGPU_Extractor.h └── main.cpp /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/README.md -------------------------------------------------------------------------------- /liblinear-1.91/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/CMakeLists.txt -------------------------------------------------------------------------------- /liblinear-1.91/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/COPYRIGHT -------------------------------------------------------------------------------- /liblinear-1.91/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/README -------------------------------------------------------------------------------- /liblinear-1.91/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas.h -------------------------------------------------------------------------------- /liblinear-1.91/blas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/Makefile -------------------------------------------------------------------------------- /liblinear-1.91/blas/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/blas.h -------------------------------------------------------------------------------- /liblinear-1.91/blas/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/blasp.h -------------------------------------------------------------------------------- /liblinear-1.91/blas/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/daxpy.c -------------------------------------------------------------------------------- /liblinear-1.91/blas/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/ddot.c -------------------------------------------------------------------------------- /liblinear-1.91/blas/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/dnrm2.c -------------------------------------------------------------------------------- /liblinear-1.91/blas/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blas/dscal.c -------------------------------------------------------------------------------- /liblinear-1.91/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/blasp.h -------------------------------------------------------------------------------- /liblinear-1.91/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/daxpy.c -------------------------------------------------------------------------------- /liblinear-1.91/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/ddot.c -------------------------------------------------------------------------------- /liblinear-1.91/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/dnrm2.c -------------------------------------------------------------------------------- /liblinear-1.91/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/dscal.c -------------------------------------------------------------------------------- /liblinear-1.91/heart_scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/heart_scale -------------------------------------------------------------------------------- /liblinear-1.91/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/linear.cpp -------------------------------------------------------------------------------- /liblinear-1.91/linear.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/linear.def -------------------------------------------------------------------------------- /liblinear-1.91/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/linear.h -------------------------------------------------------------------------------- /liblinear-1.91/matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/Makefile -------------------------------------------------------------------------------- /liblinear-1.91/matlab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/README -------------------------------------------------------------------------------- /liblinear-1.91/matlab/libsvmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/libsvmread.c -------------------------------------------------------------------------------- /liblinear-1.91/matlab/libsvmwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/libsvmwrite.c -------------------------------------------------------------------------------- /liblinear-1.91/matlab/linear_model_matlab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/linear_model_matlab.c -------------------------------------------------------------------------------- /liblinear-1.91/matlab/linear_model_matlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/linear_model_matlab.h -------------------------------------------------------------------------------- /liblinear-1.91/matlab/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/make.m -------------------------------------------------------------------------------- /liblinear-1.91/matlab/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/predict.c -------------------------------------------------------------------------------- /liblinear-1.91/matlab/run.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/run.m -------------------------------------------------------------------------------- /liblinear-1.91/matlab/train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/matlab/train.c -------------------------------------------------------------------------------- /liblinear-1.91/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/predict.c -------------------------------------------------------------------------------- /liblinear-1.91/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/python/Makefile -------------------------------------------------------------------------------- /liblinear-1.91/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/python/README -------------------------------------------------------------------------------- /liblinear-1.91/python/liblinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/python/liblinear.py -------------------------------------------------------------------------------- /liblinear-1.91/python/liblinearutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/python/liblinearutil.py -------------------------------------------------------------------------------- /liblinear-1.91/tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/tron.cpp -------------------------------------------------------------------------------- /liblinear-1.91/tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/liblinear-1.91/tron.h -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/GIECoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/CMakeLists.txt -------------------------------------------------------------------------------- /modules/GIECoder/GIECoder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/GIECoder.xml -------------------------------------------------------------------------------- /modules/GIECoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/README.md -------------------------------------------------------------------------------- /modules/GIECoder/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/app/CMakeLists.txt -------------------------------------------------------------------------------- /modules/GIECoder/app/conf/GIECoder_caffenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/app/conf/GIECoder_caffenet.ini -------------------------------------------------------------------------------- /modules/GIECoder/app/conf/GIECoder_caffenet_iCW_tuned.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/app/conf/GIECoder_caffenet_iCW_tuned.ini -------------------------------------------------------------------------------- /modules/GIECoder/app/conf/GIECoder_googlenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/app/conf/GIECoder_googlenet.ini -------------------------------------------------------------------------------- /modules/GIECoder/app/conf/GIECoder_resnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/app/conf/GIECoder_resnet.ini -------------------------------------------------------------------------------- /modules/GIECoder/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/src/CMakeLists.txt -------------------------------------------------------------------------------- /modules/GIECoder/src/GIEFeatExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/src/GIEFeatExtractor.cpp -------------------------------------------------------------------------------- /modules/GIECoder/src/GIEFeatExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/src/GIEFeatExtractor.h -------------------------------------------------------------------------------- /modules/GIECoder/src/cudaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/src/cudaUtility.h -------------------------------------------------------------------------------- /modules/GIECoder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/GIECoder/src/main.cpp -------------------------------------------------------------------------------- /modules/caffeCoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/CMakeLists.txt -------------------------------------------------------------------------------- /modules/caffeCoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/README.md -------------------------------------------------------------------------------- /modules/caffeCoder/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/CMakeLists.txt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/bvlc_googlenet_trainval.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/bvlc_googlenet_trainval.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/bvlc_googlenet_val_cut1000.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/bvlc_googlenet_val_cut1000.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/bvlc_googlenet_val_cutpool5.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/bvlc_googlenet_val_cutpool5.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/bvlc_reference_caffenet_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/bvlc_reference_caffenet_val.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/bvlc_reference_caffenet_val_cutfc6.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/bvlc_reference_caffenet_val_cutfc6.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/bvlc_reference_caffenet_val_cutfc7.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/bvlc_reference_caffenet_val_cutfc7.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/caffeCoder_caffenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/caffeCoder_caffenet.ini -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/caffeCoder_caffenet_iCW_tuned.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/caffeCoder_caffenet_iCW_tuned.ini -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/caffeCoder_googlenet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/caffeCoder_googlenet.ini -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/caffeCoder_resnet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/caffeCoder_resnet.ini -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/caffenet_iCW_val_cutfc7.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/caffenet_iCW_val_cutfc7.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/app/conf/resnet_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/app/conf/resnet_val.prototxt -------------------------------------------------------------------------------- /modules/caffeCoder/caffe-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/caffe-version.h.in -------------------------------------------------------------------------------- /modules/caffeCoder/caffeCoder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/caffeCoder.xml -------------------------------------------------------------------------------- /modules/caffeCoder/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/src/CMakeLists.txt -------------------------------------------------------------------------------- /modules/caffeCoder/src/CaffeFeatExtractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/src/CaffeFeatExtractor.hpp -------------------------------------------------------------------------------- /modules/caffeCoder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/caffeCoder/src/main.cpp -------------------------------------------------------------------------------- /modules/linearClassifierModule/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/CMakeLists.txt -------------------------------------------------------------------------------- /modules/linearClassifierModule/FindLibSVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/FindLibSVM.cmake -------------------------------------------------------------------------------- /modules/linearClassifierModule/FindLibSVMLin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/FindLibSVMLin.cmake -------------------------------------------------------------------------------- /modules/linearClassifierModule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/README.md -------------------------------------------------------------------------------- /modules/linearClassifierModule/include/SVMLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/include/SVMLinear.h -------------------------------------------------------------------------------- /modules/linearClassifierModule/include/SVMNonLin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/include/SVMNonLin.h -------------------------------------------------------------------------------- /modules/linearClassifierModule/include/linearClassifierModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/include/linearClassifierModule.h -------------------------------------------------------------------------------- /modules/linearClassifierModule/include/linearClassifierThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/include/linearClassifierThread.h -------------------------------------------------------------------------------- /modules/linearClassifierModule/include/win_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/include/win_dirent.h -------------------------------------------------------------------------------- /modules/linearClassifierModule/src/SVMLinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/src/SVMLinear.cpp -------------------------------------------------------------------------------- /modules/linearClassifierModule/src/SVMNonLin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/src/SVMNonLin.cpp -------------------------------------------------------------------------------- /modules/linearClassifierModule/src/linearClassifierModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/src/linearClassifierModule.cpp -------------------------------------------------------------------------------- /modules/linearClassifierModule/src/linearClassifierThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/src/linearClassifierThread.cpp -------------------------------------------------------------------------------- /modules/linearClassifierModule/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/linearClassifierModule/src/main.cpp -------------------------------------------------------------------------------- /modules/sparseCoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sparseCoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/README.md -------------------------------------------------------------------------------- /modules/sparseCoder/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/app/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sparseCoder/app/conf/dictionary_bow.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/app/conf/dictionary_bow.ini -------------------------------------------------------------------------------- /modules/sparseCoder/app/conf/dictionary_sc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/app/conf/dictionary_sc.ini -------------------------------------------------------------------------------- /modules/sparseCoder/app/conf/iol_dictionary.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/app/conf/iol_dictionary.ini -------------------------------------------------------------------------------- /modules/sparseCoder/app/conf/sparseCoder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/app/conf/sparseCoder.ini -------------------------------------------------------------------------------- /modules/sparseCoder/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sparseCoder/src/DictionaryLearning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/DictionaryLearning.cpp -------------------------------------------------------------------------------- /modules/sparseCoder/src/DictionaryLearning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/DictionaryLearning.h -------------------------------------------------------------------------------- /modules/sparseCoder/src/FindSIFTGPU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/FindSIFTGPU.cmake -------------------------------------------------------------------------------- /modules/sparseCoder/src/SiftGPU_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/SiftGPU_Extractor.cpp -------------------------------------------------------------------------------- /modules/sparseCoder/src/SiftGPU_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/SiftGPU_Extractor.h -------------------------------------------------------------------------------- /modules/sparseCoder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/himrep/HEAD/modules/sparseCoder/src/main.cpp --------------------------------------------------------------------------------