├── README.markdown ├── colormaps └── README.md ├── eigenfaces ├── CMakeLists.txt ├── README.markdown ├── at.txt ├── include │ ├── eigenfaces.hpp │ └── helper.hpp └── src │ ├── eigenfaces.cpp │ ├── helper.cpp │ └── main.cpp ├── lbp ├── CMakeLists.txt ├── LICENSE ├── histogram.cpp ├── histogram.hpp ├── lbp.cpp ├── lbp.hpp └── main.cpp ├── lda ├── CMakeLists.txt ├── README.markdown ├── at.txt ├── include │ ├── decomposition.hpp │ ├── fisherfaces.hpp │ ├── helper.hpp │ └── subspace.hpp └── src │ ├── fisherfaces.cpp │ ├── helper.cpp │ ├── main.cpp │ └── subspace.cpp ├── machinelearning ├── CMakeLists.txt ├── doc │ ├── bib │ │ └── machinelearning.bib │ ├── img │ │ ├── ann │ │ │ ├── mlp.png │ │ │ └── neuron.png │ │ ├── bivar.png │ │ ├── eval │ │ │ ├── 2x.png │ │ │ ├── sin10x.png │ │ │ └── tan10x.png │ │ ├── helloopencv.png │ │ └── svm │ │ │ ├── input_space.pdf │ │ │ ├── input_space.svg │ │ │ ├── input_space2.pdf │ │ │ ├── input_space2.svg │ │ │ ├── margin.pdf │ │ │ ├── margin.svg │ │ │ ├── svm_bennett.pdf │ │ │ └── svm_laechele.pdf │ ├── machinelearning.pdf │ ├── machinelearning.tex │ └── section │ │ ├── data.tex │ │ ├── evaluation.tex │ │ ├── installation.tex │ │ ├── introduction.tex │ │ ├── mlp.tex │ │ └── svm.tex └── main.cpp └── misc ├── CMakeLists.txt ├── img └── hand.jpg ├── pca_demo.cpp ├── skin_color.cpp └── tan_triggs.cpp /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/README.markdown -------------------------------------------------------------------------------- /colormaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/colormaps/README.md -------------------------------------------------------------------------------- /eigenfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/CMakeLists.txt -------------------------------------------------------------------------------- /eigenfaces/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/README.markdown -------------------------------------------------------------------------------- /eigenfaces/at.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/at.txt -------------------------------------------------------------------------------- /eigenfaces/include/eigenfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/include/eigenfaces.hpp -------------------------------------------------------------------------------- /eigenfaces/include/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/include/helper.hpp -------------------------------------------------------------------------------- /eigenfaces/src/eigenfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/src/eigenfaces.cpp -------------------------------------------------------------------------------- /eigenfaces/src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/src/helper.cpp -------------------------------------------------------------------------------- /eigenfaces/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/eigenfaces/src/main.cpp -------------------------------------------------------------------------------- /lbp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/CMakeLists.txt -------------------------------------------------------------------------------- /lbp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/LICENSE -------------------------------------------------------------------------------- /lbp/histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/histogram.cpp -------------------------------------------------------------------------------- /lbp/histogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/histogram.hpp -------------------------------------------------------------------------------- /lbp/lbp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/lbp.cpp -------------------------------------------------------------------------------- /lbp/lbp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/lbp.hpp -------------------------------------------------------------------------------- /lbp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lbp/main.cpp -------------------------------------------------------------------------------- /lda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/CMakeLists.txt -------------------------------------------------------------------------------- /lda/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/README.markdown -------------------------------------------------------------------------------- /lda/at.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/at.txt -------------------------------------------------------------------------------- /lda/include/decomposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/include/decomposition.hpp -------------------------------------------------------------------------------- /lda/include/fisherfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/include/fisherfaces.hpp -------------------------------------------------------------------------------- /lda/include/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/include/helper.hpp -------------------------------------------------------------------------------- /lda/include/subspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/include/subspace.hpp -------------------------------------------------------------------------------- /lda/src/fisherfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/src/fisherfaces.cpp -------------------------------------------------------------------------------- /lda/src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/src/helper.cpp -------------------------------------------------------------------------------- /lda/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/src/main.cpp -------------------------------------------------------------------------------- /lda/src/subspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/lda/src/subspace.cpp -------------------------------------------------------------------------------- /machinelearning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/CMakeLists.txt -------------------------------------------------------------------------------- /machinelearning/doc/bib/machinelearning.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/bib/machinelearning.bib -------------------------------------------------------------------------------- /machinelearning/doc/img/ann/mlp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/ann/mlp.png -------------------------------------------------------------------------------- /machinelearning/doc/img/ann/neuron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/ann/neuron.png -------------------------------------------------------------------------------- /machinelearning/doc/img/bivar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/bivar.png -------------------------------------------------------------------------------- /machinelearning/doc/img/eval/2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/eval/2x.png -------------------------------------------------------------------------------- /machinelearning/doc/img/eval/sin10x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/eval/sin10x.png -------------------------------------------------------------------------------- /machinelearning/doc/img/eval/tan10x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/eval/tan10x.png -------------------------------------------------------------------------------- /machinelearning/doc/img/helloopencv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/helloopencv.png -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/input_space.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/input_space.pdf -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/input_space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/input_space.svg -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/input_space2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/input_space2.pdf -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/input_space2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/input_space2.svg -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/margin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/margin.pdf -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/margin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/margin.svg -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/svm_bennett.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/svm_bennett.pdf -------------------------------------------------------------------------------- /machinelearning/doc/img/svm/svm_laechele.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/img/svm/svm_laechele.pdf -------------------------------------------------------------------------------- /machinelearning/doc/machinelearning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/machinelearning.pdf -------------------------------------------------------------------------------- /machinelearning/doc/machinelearning.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/machinelearning.tex -------------------------------------------------------------------------------- /machinelearning/doc/section/data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/section/data.tex -------------------------------------------------------------------------------- /machinelearning/doc/section/evaluation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/section/evaluation.tex -------------------------------------------------------------------------------- /machinelearning/doc/section/installation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/section/installation.tex -------------------------------------------------------------------------------- /machinelearning/doc/section/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/section/introduction.tex -------------------------------------------------------------------------------- /machinelearning/doc/section/mlp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/section/mlp.tex -------------------------------------------------------------------------------- /machinelearning/doc/section/svm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/doc/section/svm.tex -------------------------------------------------------------------------------- /machinelearning/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/machinelearning/main.cpp -------------------------------------------------------------------------------- /misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/misc/CMakeLists.txt -------------------------------------------------------------------------------- /misc/img/hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/misc/img/hand.jpg -------------------------------------------------------------------------------- /misc/pca_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/misc/pca_demo.cpp -------------------------------------------------------------------------------- /misc/skin_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/misc/skin_color.cpp -------------------------------------------------------------------------------- /misc/tan_triggs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytefish/opencv/HEAD/misc/tan_triggs.cpp --------------------------------------------------------------------------------