Integration object detection using Latent SVM. Sample was added.
authorValentina Kustikova <no@email>
Sat, 9 Oct 2010 11:36:06 +0000 (11:36 +0000)
committerValentina Kustikova <no@email>
Sat, 9 Oct 2010 11:36:06 +0000 (11:36 +0000)
commitfbfccffbaa04f2ac45c10d6d232bfb5caaf3c77c
treefe01248e6f0ea73d64a399f961eb23bfa29a9556
parenta22f74c362c8fd51b1bb37c37fb0b130b563e82b
Integration object detection using Latent SVM. Sample was added.
24 files changed:
modules/objdetect/CMakeLists.txt
modules/objdetect/include/opencv2/objdetect/objdetect.hpp
modules/objdetect/src/_distancetransform.h [new file with mode: 0644]
modules/objdetect/src/_error.h [new file with mode: 0644]
modules/objdetect/src/_fft.h [new file with mode: 0644]
modules/objdetect/src/_latentsvm.h [new file with mode: 0644]
modules/objdetect/src/_lsvmparser.h [new file with mode: 0644]
modules/objdetect/src/_matching.h [new file with mode: 0644]
modules/objdetect/src/_resizeimg.h [new file with mode: 0644]
modules/objdetect/src/_routine.h [new file with mode: 0644]
modules/objdetect/src/_types.h [new file with mode: 0644]
modules/objdetect/src/distancetransform.cpp [new file with mode: 0644]
modules/objdetect/src/featurepyramid.cpp [new file with mode: 0644]
modules/objdetect/src/fft.cpp [new file with mode: 0644]
modules/objdetect/src/latentsvm.cpp [new file with mode: 0644]
modules/objdetect/src/latentsvmdetector.cpp [new file with mode: 0644]
modules/objdetect/src/lsvmparser.cpp [new file with mode: 0644]
modules/objdetect/src/matching.cpp [new file with mode: 0644]
modules/objdetect/src/precomp.hpp
modules/objdetect/src/resizeimg.cpp [new file with mode: 0644]
modules/objdetect/src/routine.cpp [new file with mode: 0644]
samples/c/000028.jpg [new file with mode: 0644]
samples/c/cat.xml [new file with mode: 0644]
samples/c/latentsvmdetect.cpp [new file with mode: 0644]