├── .cv-example ├── .gitignore ├── CT ├── CMakeLists.txt ├── CompressiveTracker.cpp ├── CompressiveTracker.h ├── README.md ├── RunTracker.cpp ├── config.txt └── vot.hpp ├── CppMT ├── .gitignore ├── .travis.yml ├── CMT.cpp ├── CMT.h ├── CMakeLists.txt ├── Consensus.cpp ├── Consensus.h ├── Fusion.cpp ├── Fusion.h ├── LICENSE ├── Matcher.cpp ├── Matcher.h ├── README.md ├── Tracker.cpp ├── Tracker.h ├── common.cpp ├── common.h ├── fastcluster │ ├── fastcluster.cpp │ └── fastcluster.h ├── getopt │ ├── getopt.cpp │ └── getopt.h ├── gui.cpp ├── gui.h ├── logging │ └── log.h ├── main.cpp └── trax.cpp ├── DSST ├── README.md ├── fhog.m ├── get_feature_map.m ├── get_scale_subwindow.m ├── get_subwindow.m ├── gradientMex.cpp ├── sse.hpp ├── vot_tracker_initialize.m ├── vot_tracker_results.m ├── wrapper.m └── wrappers.hpp ├── FragTrack ├── CMakeLists.txt ├── Fragments_Tracker.cpp ├── Fragments_Tracker.h ├── README.md ├── emd.cpp ├── emd.h ├── fragtrack_envelope.cpp ├── setup.txt └── vot.hpp ├── HoughTrack ├── CMakeLists.txt ├── LICENSE ├── README.md ├── code │ ├── capture.cpp │ ├── capture.h │ ├── features.cpp │ ├── features.h │ ├── fern.cpp │ ├── fern.h │ ├── main.cpp │ ├── parameters.cpp │ ├── parameters.h │ ├── utilities.cpp │ ├── utilities.h │ └── vot.hpp └── sample │ └── sample.conf ├── LearnMatch ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── config.txt └── src │ ├── 3rdparty │ └── GraphUtils │ │ ├── GraphUtils.cpp │ │ └── GraphUtils.h │ ├── BinaryDescriptor.h │ ├── BinaryDescriptor.inl │ ├── BinaryUtils.h │ ├── BinaryUtils.inl │ ├── BinaryWeightVector.h │ ├── BinaryWeightVector.inl │ ├── Config.cpp │ ├── Config.h │ ├── Detector.cpp │ ├── Detector.h │ ├── FloatDescriptor.h │ ├── FloatDescriptor.inl │ ├── LinearSVM.cpp │ ├── LinearSVM.h │ ├── Model.cpp │ ├── Model.h │ ├── Prosac.h │ ├── Prosac.inl │ ├── Rect.h │ ├── RobustHomography.cpp │ ├── RobustHomography.h │ ├── Stats.cpp │ ├── Stats.h │ ├── Timer.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Video.cpp │ ├── Video.h │ ├── main.cpp │ └── vot.hpp ├── README.md ├── SCM ├── Affine Sample Functions │ ├── affinePatch.m │ ├── affineSample.m │ ├── affineTrainG.m │ ├── affineTrainL.m │ ├── affparam2geom.m │ ├── affparam2mat.m │ └── warpimg.m ├── README.md ├── demo.m ├── displayResult.m ├── displayResult_sf.m ├── drawbox.m ├── formCodebookL.m ├── interp2.cpp ├── normVector.m ├── scm_challenge.m ├── selectFeature.m ├── spams-matlab │ ├── COPYING │ ├── HOW_TO_INSTALL.txt │ ├── build │ │ ├── displayPatches.m │ │ ├── mexArchetypalAnalysis.m │ │ ├── mexBayer.m │ │ ├── mexCD.m │ │ ├── mexCalcAAt.m │ │ ├── mexCalcXAt.m │ │ ├── mexCalcXY.m │ │ ├── mexCalcXYt.m │ │ ├── mexCalcXtY.m │ │ ├── mexCombinePatches.m │ │ ├── mexConjGrad.m │ │ ├── mexConvFistaFlat.m │ │ ├── mexCountConnexComponents.m │ │ ├── mexCountPathsDAG.m │ │ ├── mexDecompSimplex.m │ │ ├── mexEvalPathCoding.m │ │ ├── mexExtractPatches.m │ │ ├── mexFistaFlat.m │ │ ├── mexFistaGraph.m │ │ ├── mexFistaPathCoding.m │ │ ├── mexFistaTree.m │ │ ├── mexGraphOfGroupStruct.m │ │ ├── mexGroupStructOfString.m │ │ ├── mexIncrementalProx.m │ │ ├── mexInvSym.m │ │ ├── mexL1L2BCD.m │ │ ├── mexLasso.m │ │ ├── mexLassoMask.m │ │ ├── mexLassoWeighted.m │ │ ├── mexNormalize.m │ │ ├── mexOMP.m │ │ ├── mexOMPMask.m │ │ ├── mexProximalFlat.m │ │ ├── mexProximalGraph.m │ │ ├── mexProximalPathCoding.m │ │ ├── mexProximalTree.m │ │ ├── mexReadGroupStruct.m │ │ ├── mexRemoveCyclesGraph.m │ │ ├── mexRidgeRegression.m │ │ ├── mexSOMP.m │ │ ├── mexSimpleGroupTree.m │ │ ├── mexSort.m │ │ ├── mexSparseProject.m │ │ ├── mexStochasticProx.m │ │ ├── mexStructTrainDL.m │ │ ├── mexTrainDL.m │ │ ├── mexTrainDL_Memory.m │ │ ├── mexTreeOfGroupStruct.m │ │ ├── nmf.m │ │ ├── nnsc.m │ │ └── solverPoisson.m │ ├── compile.m │ ├── cpp_library │ │ ├── Makefile.old │ │ ├── cppLasso.cpp │ │ ├── cppspams.h │ │ ├── spams.h │ │ └── test_decomp.cpp │ ├── dags │ │ ├── dag.h │ │ └── mex │ │ │ ├── mexCountConnexComponents.cpp │ │ │ ├── mexCountPathsDAG.cpp │ │ │ └── mexRemoveCyclesGraph.cpp │ ├── data │ │ ├── boat.png │ │ └── lena.png │ ├── decomp │ │ ├── decomp.h │ │ ├── lsqsplx.h │ │ ├── mex │ │ │ ├── mexCD.cpp │ │ │ ├── mexDecompSimplex.cpp │ │ │ ├── mexL1L2BCD.cpp │ │ │ ├── mexLasso.cpp │ │ │ ├── mexLassoMask.cpp │ │ │ ├── mexLassoWeighted.cpp │ │ │ ├── mexOMP.cpp │ │ │ ├── mexOMPMask.cpp │ │ │ ├── mexRidgeRegression.cpp │ │ │ ├── mexSOMP.cpp │ │ │ └── mexSparseProject.cpp │ │ └── projsplx.h │ ├── dictLearn │ │ ├── arch.h │ │ ├── dicts.h │ │ └── mex │ │ │ ├── mexArchetypalAnalysis.cpp │ │ │ ├── mexStructTrainDL.cpp │ │ │ ├── mexTrainDL.cpp │ │ │ └── mexTrainDL_Memory.cpp │ ├── doc │ │ ├── doc_spams.haux │ │ ├── doc_spams.hbbl │ │ ├── doc_spams.htoc │ │ ├── doc_spams.tex │ │ ├── html │ │ │ ├── contents_motif.gif │ │ │ ├── doc_spams.css │ │ │ ├── doc_spams.html │ │ │ ├── doc_spams001.html │ │ │ ├── doc_spams002.html │ │ │ ├── doc_spams003.html │ │ │ ├── doc_spams004.html │ │ │ ├── doc_spams005.html │ │ │ ├── doc_spams006.html │ │ │ ├── doc_spams007.html │ │ │ ├── doc_spams008.html │ │ │ ├── doc_spams009.html │ │ │ ├── index.html │ │ │ ├── next_motif.gif │ │ │ └── previous_motif.gif │ │ ├── macrocss.hva │ │ ├── macros.tex │ │ ├── main.bib │ │ ├── make_release.sh │ │ └── style.css │ ├── get_architecture.m │ ├── image │ │ ├── image.h │ │ └── mex │ │ │ ├── mexCombinePatches.cpp │ │ │ ├── mexConvFista.cpp │ │ │ └── mexExtractPatches.cpp │ ├── linalg │ │ ├── cblas_alt_template.h │ │ ├── cblas_defvar.h │ │ ├── cblas_template.h │ │ ├── linalg.h │ │ ├── list.h │ │ ├── mex │ │ │ ├── mexBayer.cpp │ │ │ ├── mexCalcAAt.cpp │ │ │ ├── mexCalcXAt.cpp │ │ │ ├── mexCalcXY.cpp │ │ │ ├── mexCalcXYt.cpp │ │ │ ├── mexCalcXtY.cpp │ │ │ ├── mexConjGrad.cpp │ │ │ ├── mexInvSym.cpp │ │ │ ├── mexNormalize.cpp │ │ │ └── mexSort.cpp │ │ ├── mexutils.h │ │ ├── misc.h │ │ └── utils.h │ ├── prox │ │ ├── fista.h │ │ ├── groups-graph.h │ │ ├── mex │ │ │ ├── mexEvalPathCoding.cpp │ │ │ ├── mexFistaFlat.cpp │ │ │ ├── mexFistaGraph.cpp │ │ │ ├── mexFistaPathCoding.cpp │ │ │ ├── mexFistaTree.cpp │ │ │ ├── mexGraphOfGroupStruct.cpp │ │ │ ├── mexGroupStructOfString.cpp │ │ │ ├── mexIncrementalProx.cpp │ │ │ ├── mexProximalFlat.cpp │ │ │ ├── mexProximalGraph.cpp │ │ │ ├── mexProximalPathCoding.cpp │ │ │ ├── mexProximalTree.cpp │ │ │ ├── mexReadGroupStruct.cpp │ │ │ ├── mexSimpleGroupTree.cpp │ │ │ ├── mexStochasticProx.cpp │ │ │ └── mexTreeOfGroupStruct.cpp │ │ ├── mexgrouputils.h │ │ ├── project.h │ │ └── surrogate.h │ ├── run_matlab.sh │ ├── src_release │ │ ├── displayPatches.m │ │ ├── mexArchetypalAnalysis.m │ │ ├── mexBayer.m │ │ ├── mexCD.m │ │ ├── mexCalcAAt.m │ │ ├── mexCalcXAt.m │ │ ├── mexCalcXY.m │ │ ├── mexCalcXYt.m │ │ ├── mexCalcXtY.m │ │ ├── mexCombinePatches.m │ │ ├── mexConjGrad.m │ │ ├── mexConvFistaFlat.m │ │ ├── mexCountConnexComponents.m │ │ ├── mexCountPathsDAG.m │ │ ├── mexDecompSimplex.m │ │ ├── mexEvalPathCoding.m │ │ ├── mexExtractPatches.m │ │ ├── mexFistaFlat.m │ │ ├── mexFistaGraph.m │ │ ├── mexFistaPathCoding.m │ │ ├── mexFistaTree.m │ │ ├── mexGraphOfGroupStruct.m │ │ ├── mexGroupStructOfString.m │ │ ├── mexIncrementalProx.m │ │ ├── mexInvSym.m │ │ ├── mexL1L2BCD.m │ │ ├── mexLasso.m │ │ ├── mexLassoMask.m │ │ ├── mexLassoWeighted.m │ │ ├── mexNormalize.m │ │ ├── mexOMP.m │ │ ├── mexOMPMask.m │ │ ├── mexProximalFlat.m │ │ ├── mexProximalGraph.m │ │ ├── mexProximalPathCoding.m │ │ ├── mexProximalTree.m │ │ ├── mexReadGroupStruct.m │ │ ├── mexRemoveCyclesGraph.m │ │ ├── mexRidgeRegression.m │ │ ├── mexSOMP.m │ │ ├── mexSimpleGroupTree.m │ │ ├── mexSort.m │ │ ├── mexSparseProject.m │ │ ├── mexStochasticProx.m │ │ ├── mexStructTrainDL.m │ │ ├── mexTrainDL.m │ │ ├── mexTrainDL_Memory.m │ │ ├── mexTreeOfGroupStruct.m │ │ ├── nmf.m │ │ ├── nnsc.m │ │ └── solverPoisson.m │ ├── start_spams.m │ └── test_release │ │ ├── test_CD.m │ │ ├── test_CalcAAt.m │ │ ├── test_CalcXAt.m │ │ ├── test_CalcXY.m │ │ ├── test_CalcXYt.m │ │ ├── test_CalcXtY.m │ │ ├── test_ConjGrad.m │ │ ├── test_CountConnexComponents.m │ │ ├── test_CountPathsDAG.m │ │ ├── test_EvalPathCoding.m │ │ ├── test_FistaFlat.m │ │ ├── test_FistaGraph.m │ │ ├── test_FistaPathCoding.m │ │ ├── test_FistaTree.m │ │ ├── test_IncrementalProx.m │ │ ├── test_InvSym.m │ │ ├── test_L1L2BCD.m │ │ ├── test_Lasso.m │ │ ├── test_LassoMask.m │ │ ├── test_LassoWeighted.m │ │ ├── test_Normalize.m │ │ ├── test_OMP.m │ │ ├── test_OMPMask.m │ │ ├── test_ProximalFlat.m │ │ ├── test_ProximalGraph.m │ │ ├── test_ProximalPathCoding.m │ │ ├── test_ProximalTree.m │ │ ├── test_RemoveCyclesGraph.m │ │ ├── test_RidgeRegression.m │ │ ├── test_SOMP.m │ │ ├── test_Sort.m │ │ ├── test_SparseProject.m │ │ ├── test_StochasticProx.m │ │ ├── test_StructTrainDL.m │ │ ├── test_TrainDL.m │ │ ├── test_TrainDL_Memory.m │ │ ├── test_all.m │ │ ├── test_archetypalAnalysis.m │ │ ├── test_image.m │ │ ├── test_nmf.m │ │ └── test_solverPoisson.m ├── trackparam.m ├── updateDic.m ├── vgg_argparse.m ├── vgg_kmeans.m ├── vgg_kmiter.cxx └── vot_initialize.m ├── SIR-PF ├── README.md ├── compile.m ├── create_particles.m ├── gausssmooth.m ├── histN_BG.m ├── intHistToHist3D.m ├── intHistToHist5D.m ├── mexImgToIntHist3D.c ├── mexImgToIntHist5D.c ├── mexIntHistToHist3D.c ├── mexIntHistToHist5D.c ├── ndhistogram.c ├── ndhistogram.m ├── ndhistogram_coeff.m ├── resample_particles.m ├── sample_gaussian.m ├── scan_directory.m ├── test_pf.m ├── track.m ├── tracker_pf_initialize.m ├── tracker_pf_update.m ├── update_particles.m ├── vot_tracker_initialize.m ├── vot_tracker_results.m ├── weightedMedian.m ├── weights_hist_particles.m └── wrapper.m ├── STRUCK ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── config.txt ├── sequences │ └── README.txt └── src │ ├── Config.cpp │ ├── Config.h │ ├── Features.cpp │ ├── Features.h │ ├── GraphUtils │ ├── GraphUtils.cpp │ └── GraphUtils.h │ ├── HaarFeature.cpp │ ├── HaarFeature.h │ ├── HaarFeatures.cpp │ ├── HaarFeatures.h │ ├── HistogramFeatures.cpp │ ├── HistogramFeatures.h │ ├── ImageRep.cpp │ ├── ImageRep.h │ ├── Kernels.h │ ├── LaRank.cpp │ ├── LaRank.h │ ├── MultiFeatures.cpp │ ├── MultiFeatures.h │ ├── RawFeatures.cpp │ ├── RawFeatures.h │ ├── Rect.h │ ├── Sample.h │ ├── Sampler.cpp │ ├── Sampler.h │ ├── Tracker.cpp │ ├── Tracker.h │ ├── main.cpp │ └── vot.hpp ├── TLD ├── LICENSE ├── README.md ├── _input │ └── init.txt ├── _output │ └── tld.txt ├── bbox │ ├── bb2pts.m │ ├── bbBR.m │ ├── bbHeight.m │ ├── bbTL.m │ ├── bbWidth.m │ ├── bbX.m │ ├── bbY.m │ ├── bb_burn.m │ ├── bb_center.m │ ├── bb_click.m │ ├── bb_click_move.m │ ├── bb_cluster.m │ ├── bb_cluster_confidence.m │ ├── bb_correct.m │ ├── bb_distance.m │ ├── bb_draw.m │ ├── bb_get_similar.m │ ├── bb_height.m │ ├── bb_hull.m │ ├── bb_isdef.m │ ├── bb_isin.m │ ├── bb_isout.m │ ├── bb_normalize.m │ ├── bb_points.m │ ├── bb_predict.m │ ├── bb_rescale_absolute.m │ ├── bb_rescale_relative.m │ ├── bb_scale.m │ ├── bb_scan.m │ ├── bb_shift_absolute.m │ ├── bb_shift_relative.m │ ├── bb_size.m │ ├── bb_square.m │ ├── bb_width.m │ └── pts2bb.m ├── compile.m ├── img │ ├── cam_record.m │ ├── cam_wait.m │ ├── gt_create.m │ ├── gt_display.m │ ├── img_alloc.m │ ├── img_any2any.m │ ├── img_blur.m │ ├── img_dir.m │ ├── img_get.m │ ├── img_merge_frames.m │ └── img_patch.m ├── initcamera.m ├── mex │ ├── bb_overlap.cpp │ ├── distance.cpp │ ├── fern.cpp │ ├── ii.cpp │ ├── ii2.cpp │ ├── linkagemex.cpp │ ├── lk.backup.cpp │ ├── lk.cpp │ ├── tld.cpp │ ├── tld.h │ └── warp.cpp ├── other │ ├── init_workspace.m │ ├── run_TLD_demo.m │ ├── stabilize.m │ ├── usbclear.m │ ├── usbinit.m │ └── webcam.jpg ├── run_TLD.m ├── test │ ├── test_bb_scan.m │ ├── test_bbox_shift_overlap.m │ ├── test_display_layers.m │ ├── test_face_detector.m │ ├── test_featureGenerata.m │ ├── test_getPatch.m │ ├── test_tmdPatch2Pattern.m │ └── test_webcam.m ├── tld │ ├── tldDemo.m │ ├── tldDetection.m │ ├── tldDisplay.m │ ├── tldExample.m │ ├── tldGenerateAprioriData.m │ ├── tldGenerateFeatures.m │ ├── tldGenerateNegativeData.m │ ├── tldGeneratePositiveData.m │ ├── tldGeneratePositiveData_single_bbox.m │ ├── tldGetPattern.m │ ├── tldGetPattern_fast.m │ ├── tldInit.m │ ├── tldInitDetector.m │ ├── tldInitFirstFrame.m │ ├── tldInitSource.m │ ├── tldLearning.m │ ├── tldLoadAprioriImages.m │ ├── tldMinMaxVar.m │ ├── tldNN.m │ ├── tldPatch2Pattern.m │ ├── tldProcessFrame.m │ ├── tldSaveImages.m │ ├── tldSplitNegativeData.m │ ├── tldTrack.m │ ├── tldTrack_occlusion.2.m │ ├── tldTrack_occlusion.m │ ├── tldTracking.m │ ├── tldTrainNN.m │ ├── tldUpdateDetector.m │ └── tldUpdateDetectorConservative.m ├── tld_challenge.m ├── utils │ ├── idx2id.m │ ├── mat2img.m │ ├── maximize.m │ ├── median2.m │ ├── n2s.m │ ├── ntuples.m │ ├── pseudorandom_indexes.m │ ├── randvalues.m │ ├── repcel.m │ ├── uniquecount.m │ └── vnormp.m └── vot_initialize.m ├── cvbb.py ├── cveval.py ├── cvseq.py ├── cvtrack.py └── qwsEDFT ├── @ChannelEnc1D ├── ChannelEnc1D.m ├── basisMatrix.m ├── centers.m ├── decode.m ├── decodeImg.m ├── encode.m ├── encodeDensity.m ├── encodeImg.m └── setChanConfig.m ├── README.md ├── computeCropParams.m ├── computeStartingPoint.m ├── cos2kernel.m ├── distanceDF5.m ├── distanceDF6.m ├── findTarget.m ├── findTargetHier.m ├── getChannelMeanVar.m ├── getCoherenceCalcObjects.m ├── img2df.m ├── isBorderPixel.m ├── smoothDF.m ├── vot_deinitialize.m ├── vot_initialize.m └── wrapper.m /.cv-example: -------------------------------------------------------------------------------- 1 | /home/georg/Dropbox/common/dotfiles/.cv -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | TLD/compile_impl.m 2 | SCM/Datasets/ 3 | -------------------------------------------------------------------------------- /CT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/CMakeLists.txt -------------------------------------------------------------------------------- /CT/CompressiveTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/CompressiveTracker.cpp -------------------------------------------------------------------------------- /CT/CompressiveTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/CompressiveTracker.h -------------------------------------------------------------------------------- /CT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/README.md -------------------------------------------------------------------------------- /CT/RunTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/RunTracker.cpp -------------------------------------------------------------------------------- /CT/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/config.txt -------------------------------------------------------------------------------- /CT/vot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CT/vot.hpp -------------------------------------------------------------------------------- /CppMT/.gitignore: -------------------------------------------------------------------------------- 1 | cmt 2 | -------------------------------------------------------------------------------- /CppMT/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/.travis.yml -------------------------------------------------------------------------------- /CppMT/CMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/CMT.cpp -------------------------------------------------------------------------------- /CppMT/CMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/CMT.h -------------------------------------------------------------------------------- /CppMT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/CMakeLists.txt -------------------------------------------------------------------------------- /CppMT/Consensus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Consensus.cpp -------------------------------------------------------------------------------- /CppMT/Consensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Consensus.h -------------------------------------------------------------------------------- /CppMT/Fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Fusion.cpp -------------------------------------------------------------------------------- /CppMT/Fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Fusion.h -------------------------------------------------------------------------------- /CppMT/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/LICENSE -------------------------------------------------------------------------------- /CppMT/Matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Matcher.cpp -------------------------------------------------------------------------------- /CppMT/Matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Matcher.h -------------------------------------------------------------------------------- /CppMT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/README.md -------------------------------------------------------------------------------- /CppMT/Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Tracker.cpp -------------------------------------------------------------------------------- /CppMT/Tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/Tracker.h -------------------------------------------------------------------------------- /CppMT/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/common.cpp -------------------------------------------------------------------------------- /CppMT/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/common.h -------------------------------------------------------------------------------- /CppMT/fastcluster/fastcluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/fastcluster/fastcluster.cpp -------------------------------------------------------------------------------- /CppMT/fastcluster/fastcluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/fastcluster/fastcluster.h -------------------------------------------------------------------------------- /CppMT/getopt/getopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/getopt/getopt.cpp -------------------------------------------------------------------------------- /CppMT/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/getopt/getopt.h -------------------------------------------------------------------------------- /CppMT/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/gui.cpp -------------------------------------------------------------------------------- /CppMT/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/gui.h -------------------------------------------------------------------------------- /CppMT/logging/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/logging/log.h -------------------------------------------------------------------------------- /CppMT/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/main.cpp -------------------------------------------------------------------------------- /CppMT/trax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/CppMT/trax.cpp -------------------------------------------------------------------------------- /DSST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/README.md -------------------------------------------------------------------------------- /DSST/fhog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/fhog.m -------------------------------------------------------------------------------- /DSST/get_feature_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/get_feature_map.m -------------------------------------------------------------------------------- /DSST/get_scale_subwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/get_scale_subwindow.m -------------------------------------------------------------------------------- /DSST/get_subwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/get_subwindow.m -------------------------------------------------------------------------------- /DSST/gradientMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/gradientMex.cpp -------------------------------------------------------------------------------- /DSST/sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/sse.hpp -------------------------------------------------------------------------------- /DSST/vot_tracker_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/vot_tracker_initialize.m -------------------------------------------------------------------------------- /DSST/vot_tracker_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/vot_tracker_results.m -------------------------------------------------------------------------------- /DSST/wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/wrapper.m -------------------------------------------------------------------------------- /DSST/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/DSST/wrappers.hpp -------------------------------------------------------------------------------- /FragTrack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/CMakeLists.txt -------------------------------------------------------------------------------- /FragTrack/Fragments_Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/Fragments_Tracker.cpp -------------------------------------------------------------------------------- /FragTrack/Fragments_Tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/Fragments_Tracker.h -------------------------------------------------------------------------------- /FragTrack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/README.md -------------------------------------------------------------------------------- /FragTrack/emd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/emd.cpp -------------------------------------------------------------------------------- /FragTrack/emd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/emd.h -------------------------------------------------------------------------------- /FragTrack/fragtrack_envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/fragtrack_envelope.cpp -------------------------------------------------------------------------------- /FragTrack/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/setup.txt -------------------------------------------------------------------------------- /FragTrack/vot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/FragTrack/vot.hpp -------------------------------------------------------------------------------- /HoughTrack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/CMakeLists.txt -------------------------------------------------------------------------------- /HoughTrack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/LICENSE -------------------------------------------------------------------------------- /HoughTrack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/README.md -------------------------------------------------------------------------------- /HoughTrack/code/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/capture.cpp -------------------------------------------------------------------------------- /HoughTrack/code/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/capture.h -------------------------------------------------------------------------------- /HoughTrack/code/features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/features.cpp -------------------------------------------------------------------------------- /HoughTrack/code/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/features.h -------------------------------------------------------------------------------- /HoughTrack/code/fern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/fern.cpp -------------------------------------------------------------------------------- /HoughTrack/code/fern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/fern.h -------------------------------------------------------------------------------- /HoughTrack/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/main.cpp -------------------------------------------------------------------------------- /HoughTrack/code/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/parameters.cpp -------------------------------------------------------------------------------- /HoughTrack/code/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/parameters.h -------------------------------------------------------------------------------- /HoughTrack/code/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/utilities.cpp -------------------------------------------------------------------------------- /HoughTrack/code/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/utilities.h -------------------------------------------------------------------------------- /HoughTrack/code/vot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/code/vot.hpp -------------------------------------------------------------------------------- /HoughTrack/sample/sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/HoughTrack/sample/sample.conf -------------------------------------------------------------------------------- /LearnMatch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/CMakeLists.txt -------------------------------------------------------------------------------- /LearnMatch/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/LICENSE.txt -------------------------------------------------------------------------------- /LearnMatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/README.md -------------------------------------------------------------------------------- /LearnMatch/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/config.txt -------------------------------------------------------------------------------- /LearnMatch/src/3rdparty/GraphUtils/GraphUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/3rdparty/GraphUtils/GraphUtils.cpp -------------------------------------------------------------------------------- /LearnMatch/src/3rdparty/GraphUtils/GraphUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/3rdparty/GraphUtils/GraphUtils.h -------------------------------------------------------------------------------- /LearnMatch/src/BinaryDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/BinaryDescriptor.h -------------------------------------------------------------------------------- /LearnMatch/src/BinaryDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/BinaryDescriptor.inl -------------------------------------------------------------------------------- /LearnMatch/src/BinaryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/BinaryUtils.h -------------------------------------------------------------------------------- /LearnMatch/src/BinaryUtils.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/BinaryUtils.inl -------------------------------------------------------------------------------- /LearnMatch/src/BinaryWeightVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/BinaryWeightVector.h -------------------------------------------------------------------------------- /LearnMatch/src/BinaryWeightVector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/BinaryWeightVector.inl -------------------------------------------------------------------------------- /LearnMatch/src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Config.cpp -------------------------------------------------------------------------------- /LearnMatch/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Config.h -------------------------------------------------------------------------------- /LearnMatch/src/Detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Detector.cpp -------------------------------------------------------------------------------- /LearnMatch/src/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Detector.h -------------------------------------------------------------------------------- /LearnMatch/src/FloatDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/FloatDescriptor.h -------------------------------------------------------------------------------- /LearnMatch/src/FloatDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/FloatDescriptor.inl -------------------------------------------------------------------------------- /LearnMatch/src/LinearSVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/LinearSVM.cpp -------------------------------------------------------------------------------- /LearnMatch/src/LinearSVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/LinearSVM.h -------------------------------------------------------------------------------- /LearnMatch/src/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Model.cpp -------------------------------------------------------------------------------- /LearnMatch/src/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Model.h -------------------------------------------------------------------------------- /LearnMatch/src/Prosac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Prosac.h -------------------------------------------------------------------------------- /LearnMatch/src/Prosac.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Prosac.inl -------------------------------------------------------------------------------- /LearnMatch/src/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Rect.h -------------------------------------------------------------------------------- /LearnMatch/src/RobustHomography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/RobustHomography.cpp -------------------------------------------------------------------------------- /LearnMatch/src/RobustHomography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/RobustHomography.h -------------------------------------------------------------------------------- /LearnMatch/src/Stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Stats.cpp -------------------------------------------------------------------------------- /LearnMatch/src/Stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Stats.h -------------------------------------------------------------------------------- /LearnMatch/src/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Timer.h -------------------------------------------------------------------------------- /LearnMatch/src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Utils.cpp -------------------------------------------------------------------------------- /LearnMatch/src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Utils.h -------------------------------------------------------------------------------- /LearnMatch/src/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Video.cpp -------------------------------------------------------------------------------- /LearnMatch/src/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/Video.h -------------------------------------------------------------------------------- /LearnMatch/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/main.cpp -------------------------------------------------------------------------------- /LearnMatch/src/vot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/LearnMatch/src/vot.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/README.md -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/affinePatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/affinePatch.m -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/affineSample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/affineSample.m -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/affineTrainG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/affineTrainG.m -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/affineTrainL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/affineTrainL.m -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/affparam2geom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/affparam2geom.m -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/affparam2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/affparam2mat.m -------------------------------------------------------------------------------- /SCM/Affine Sample Functions/warpimg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/Affine Sample Functions/warpimg.m -------------------------------------------------------------------------------- /SCM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/README.md -------------------------------------------------------------------------------- /SCM/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/demo.m -------------------------------------------------------------------------------- /SCM/displayResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/displayResult.m -------------------------------------------------------------------------------- /SCM/displayResult_sf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/displayResult_sf.m -------------------------------------------------------------------------------- /SCM/drawbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/drawbox.m -------------------------------------------------------------------------------- /SCM/formCodebookL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/formCodebookL.m -------------------------------------------------------------------------------- /SCM/interp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/interp2.cpp -------------------------------------------------------------------------------- /SCM/normVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/normVector.m -------------------------------------------------------------------------------- /SCM/scm_challenge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/scm_challenge.m -------------------------------------------------------------------------------- /SCM/selectFeature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/selectFeature.m -------------------------------------------------------------------------------- /SCM/spams-matlab/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/COPYING -------------------------------------------------------------------------------- /SCM/spams-matlab/HOW_TO_INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/HOW_TO_INSTALL.txt -------------------------------------------------------------------------------- /SCM/spams-matlab/build/displayPatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/displayPatches.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexArchetypalAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexArchetypalAnalysis.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexBayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexBayer.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCD.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCalcAAt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCalcAAt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCalcXAt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCalcXAt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCalcXY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCalcXY.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCalcXYt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCalcXYt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCalcXtY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCalcXtY.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCombinePatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCombinePatches.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexConjGrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexConjGrad.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexConvFistaFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexConvFistaFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCountConnexComponents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCountConnexComponents.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexCountPathsDAG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexCountPathsDAG.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexDecompSimplex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexDecompSimplex.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexEvalPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexEvalPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexExtractPatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexExtractPatches.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexFistaFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexFistaFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexFistaGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexFistaGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexFistaPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexFistaPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexFistaTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexFistaTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexGraphOfGroupStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexGraphOfGroupStruct.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexGroupStructOfString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexGroupStructOfString.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexIncrementalProx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexIncrementalProx.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexInvSym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexInvSym.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexL1L2BCD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexL1L2BCD.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexLasso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexLasso.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexLassoMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexLassoMask.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexLassoWeighted.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexLassoWeighted.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexNormalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexNormalize.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexOMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexOMP.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexOMPMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexOMPMask.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexProximalFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexProximalFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexProximalGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexProximalGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexProximalPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexProximalPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexProximalTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexProximalTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexReadGroupStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexReadGroupStruct.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexRemoveCyclesGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexRemoveCyclesGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexRidgeRegression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexRidgeRegression.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexSOMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexSOMP.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexSimpleGroupTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexSimpleGroupTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexSort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexSort.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexSparseProject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexSparseProject.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexStochasticProx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexStochasticProx.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexStructTrainDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexStructTrainDL.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexTrainDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexTrainDL.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexTrainDL_Memory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexTrainDL_Memory.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/mexTreeOfGroupStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/mexTreeOfGroupStruct.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/nmf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/nmf.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/nnsc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/nnsc.m -------------------------------------------------------------------------------- /SCM/spams-matlab/build/solverPoisson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/build/solverPoisson.m -------------------------------------------------------------------------------- /SCM/spams-matlab/compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/compile.m -------------------------------------------------------------------------------- /SCM/spams-matlab/cpp_library/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/cpp_library/Makefile.old -------------------------------------------------------------------------------- /SCM/spams-matlab/cpp_library/cppLasso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/cpp_library/cppLasso.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/cpp_library/cppspams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/cpp_library/cppspams.h -------------------------------------------------------------------------------- /SCM/spams-matlab/cpp_library/spams.h: -------------------------------------------------------------------------------- 1 | ../swig/spams.h -------------------------------------------------------------------------------- /SCM/spams-matlab/cpp_library/test_decomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/cpp_library/test_decomp.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/dags/dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dags/dag.h -------------------------------------------------------------------------------- /SCM/spams-matlab/dags/mex/mexCountConnexComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dags/mex/mexCountConnexComponents.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/dags/mex/mexCountPathsDAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dags/mex/mexCountPathsDAG.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/dags/mex/mexRemoveCyclesGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dags/mex/mexRemoveCyclesGraph.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/data/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/data/boat.png -------------------------------------------------------------------------------- /SCM/spams-matlab/data/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/data/lena.png -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/decomp.h -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/lsqsplx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/lsqsplx.h -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexCD.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexDecompSimplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexDecompSimplex.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexL1L2BCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexL1L2BCD.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexLasso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexLasso.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexLassoMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexLassoMask.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexLassoWeighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexLassoWeighted.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexOMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexOMP.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexOMPMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexOMPMask.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexRidgeRegression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexRidgeRegression.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexSOMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexSOMP.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/mex/mexSparseProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/mex/mexSparseProject.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/decomp/projsplx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/decomp/projsplx.h -------------------------------------------------------------------------------- /SCM/spams-matlab/dictLearn/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dictLearn/arch.h -------------------------------------------------------------------------------- /SCM/spams-matlab/dictLearn/dicts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dictLearn/dicts.h -------------------------------------------------------------------------------- /SCM/spams-matlab/dictLearn/mex/mexArchetypalAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dictLearn/mex/mexArchetypalAnalysis.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/dictLearn/mex/mexStructTrainDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dictLearn/mex/mexStructTrainDL.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/dictLearn/mex/mexTrainDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dictLearn/mex/mexTrainDL.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/dictLearn/mex/mexTrainDL_Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/dictLearn/mex/mexTrainDL_Memory.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/doc_spams.haux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/doc_spams.haux -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/doc_spams.hbbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/doc_spams.hbbl -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/doc_spams.htoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/doc_spams.htoc -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/doc_spams.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/doc_spams.tex -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/contents_motif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/contents_motif.gif -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams.css -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams001.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams002.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams003.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams004.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams005.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams006.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams007.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams008.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/doc_spams009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/doc_spams009.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/index.html -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/next_motif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/next_motif.gif -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/html/previous_motif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/html/previous_motif.gif -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/macrocss.hva: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/macrocss.hva -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/macros.tex -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/main.bib -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/make_release.sh -------------------------------------------------------------------------------- /SCM/spams-matlab/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/doc/style.css -------------------------------------------------------------------------------- /SCM/spams-matlab/get_architecture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/get_architecture.m -------------------------------------------------------------------------------- /SCM/spams-matlab/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/image/image.h -------------------------------------------------------------------------------- /SCM/spams-matlab/image/mex/mexCombinePatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/image/mex/mexCombinePatches.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/image/mex/mexConvFista.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/image/mex/mexConvFista.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/image/mex/mexExtractPatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/image/mex/mexExtractPatches.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/cblas_alt_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/cblas_alt_template.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/cblas_defvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/cblas_defvar.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/cblas_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/cblas_template.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/linalg.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/list.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexBayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexBayer.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexCalcAAt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexCalcAAt.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexCalcXAt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexCalcXAt.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexCalcXY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexCalcXY.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexCalcXYt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexCalcXYt.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexCalcXtY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexCalcXtY.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexConjGrad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexConjGrad.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexInvSym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexInvSym.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexNormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexNormalize.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mex/mexSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mex/mexSort.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/mexutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/mexutils.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/misc.h -------------------------------------------------------------------------------- /SCM/spams-matlab/linalg/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/linalg/utils.h -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/fista.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/fista.h -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/groups-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/groups-graph.h -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexEvalPathCoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexEvalPathCoding.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexFistaFlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexFistaFlat.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexFistaGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexFistaGraph.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexFistaPathCoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexFistaPathCoding.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexFistaTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexFistaTree.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexGraphOfGroupStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexGraphOfGroupStruct.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexGroupStructOfString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexGroupStructOfString.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexIncrementalProx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexIncrementalProx.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexProximalFlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexProximalFlat.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexProximalGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexProximalGraph.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexProximalPathCoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexProximalPathCoding.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexProximalTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexProximalTree.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexReadGroupStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexReadGroupStruct.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexSimpleGroupTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexSimpleGroupTree.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexStochasticProx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexStochasticProx.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mex/mexTreeOfGroupStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mex/mexTreeOfGroupStruct.cpp -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/mexgrouputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/mexgrouputils.h -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/project.h -------------------------------------------------------------------------------- /SCM/spams-matlab/prox/surrogate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/prox/surrogate.h -------------------------------------------------------------------------------- /SCM/spams-matlab/run_matlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/run_matlab.sh -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/displayPatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/displayPatches.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexArchetypalAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexArchetypalAnalysis.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexBayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexBayer.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCD.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCalcAAt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCalcAAt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCalcXAt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCalcXAt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCalcXY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCalcXY.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCalcXYt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCalcXYt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCalcXtY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCalcXtY.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCombinePatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCombinePatches.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexConjGrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexConjGrad.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexConvFistaFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexConvFistaFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCountConnexComponents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCountConnexComponents.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexCountPathsDAG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexCountPathsDAG.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexDecompSimplex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexDecompSimplex.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexEvalPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexEvalPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexExtractPatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexExtractPatches.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexFistaFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexFistaFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexFistaGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexFistaGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexFistaPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexFistaPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexFistaTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexFistaTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexGraphOfGroupStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexGraphOfGroupStruct.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexGroupStructOfString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexGroupStructOfString.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexIncrementalProx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexIncrementalProx.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexInvSym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexInvSym.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexL1L2BCD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexL1L2BCD.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexLasso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexLasso.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexLassoMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexLassoMask.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexLassoWeighted.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexLassoWeighted.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexNormalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexNormalize.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexOMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexOMP.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexOMPMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexOMPMask.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexProximalFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexProximalFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexProximalGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexProximalGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexProximalPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexProximalPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexProximalTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexProximalTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexReadGroupStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexReadGroupStruct.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexRemoveCyclesGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexRemoveCyclesGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexRidgeRegression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexRidgeRegression.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexSOMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexSOMP.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexSimpleGroupTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexSimpleGroupTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexSort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexSort.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexSparseProject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexSparseProject.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexStochasticProx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexStochasticProx.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexStructTrainDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexStructTrainDL.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexTrainDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexTrainDL.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexTrainDL_Memory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexTrainDL_Memory.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/mexTreeOfGroupStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/mexTreeOfGroupStruct.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/nmf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/nmf.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/nnsc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/nnsc.m -------------------------------------------------------------------------------- /SCM/spams-matlab/src_release/solverPoisson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/src_release/solverPoisson.m -------------------------------------------------------------------------------- /SCM/spams-matlab/start_spams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/start_spams.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CD.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CalcAAt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CalcAAt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CalcXAt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CalcXAt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CalcXY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CalcXY.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CalcXYt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CalcXYt.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CalcXtY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CalcXtY.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_ConjGrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_ConjGrad.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CountConnexComponents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CountConnexComponents.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_CountPathsDAG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_CountPathsDAG.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_EvalPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_EvalPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_FistaFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_FistaFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_FistaGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_FistaGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_FistaPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_FistaPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_FistaTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_FistaTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_IncrementalProx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_IncrementalProx.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_InvSym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_InvSym.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_L1L2BCD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_L1L2BCD.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_Lasso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_Lasso.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_LassoMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_LassoMask.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_LassoWeighted.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_LassoWeighted.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_Normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_Normalize.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_OMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_OMP.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_OMPMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_OMPMask.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_ProximalFlat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_ProximalFlat.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_ProximalGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_ProximalGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_ProximalPathCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_ProximalPathCoding.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_ProximalTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_ProximalTree.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_RemoveCyclesGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_RemoveCyclesGraph.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_RidgeRegression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_RidgeRegression.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_SOMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_SOMP.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_Sort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_Sort.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_SparseProject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_SparseProject.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_StochasticProx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_StochasticProx.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_StructTrainDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_StructTrainDL.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_TrainDL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_TrainDL.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_TrainDL_Memory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_TrainDL_Memory.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_all.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_archetypalAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_archetypalAnalysis.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_image.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_nmf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_nmf.m -------------------------------------------------------------------------------- /SCM/spams-matlab/test_release/test_solverPoisson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/spams-matlab/test_release/test_solverPoisson.m -------------------------------------------------------------------------------- /SCM/trackparam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/trackparam.m -------------------------------------------------------------------------------- /SCM/updateDic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/updateDic.m -------------------------------------------------------------------------------- /SCM/vgg_argparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/vgg_argparse.m -------------------------------------------------------------------------------- /SCM/vgg_kmeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/vgg_kmeans.m -------------------------------------------------------------------------------- /SCM/vgg_kmiter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/vgg_kmiter.cxx -------------------------------------------------------------------------------- /SCM/vot_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SCM/vot_initialize.m -------------------------------------------------------------------------------- /SIR-PF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/README.md -------------------------------------------------------------------------------- /SIR-PF/compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/compile.m -------------------------------------------------------------------------------- /SIR-PF/create_particles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/create_particles.m -------------------------------------------------------------------------------- /SIR-PF/gausssmooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/gausssmooth.m -------------------------------------------------------------------------------- /SIR-PF/histN_BG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/histN_BG.m -------------------------------------------------------------------------------- /SIR-PF/intHistToHist3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/intHistToHist3D.m -------------------------------------------------------------------------------- /SIR-PF/intHistToHist5D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/intHistToHist5D.m -------------------------------------------------------------------------------- /SIR-PF/mexImgToIntHist3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/mexImgToIntHist3D.c -------------------------------------------------------------------------------- /SIR-PF/mexImgToIntHist5D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/mexImgToIntHist5D.c -------------------------------------------------------------------------------- /SIR-PF/mexIntHistToHist3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/mexIntHistToHist3D.c -------------------------------------------------------------------------------- /SIR-PF/mexIntHistToHist5D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/mexIntHistToHist5D.c -------------------------------------------------------------------------------- /SIR-PF/ndhistogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/ndhistogram.c -------------------------------------------------------------------------------- /SIR-PF/ndhistogram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/ndhistogram.m -------------------------------------------------------------------------------- /SIR-PF/ndhistogram_coeff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/ndhistogram_coeff.m -------------------------------------------------------------------------------- /SIR-PF/resample_particles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/resample_particles.m -------------------------------------------------------------------------------- /SIR-PF/sample_gaussian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/sample_gaussian.m -------------------------------------------------------------------------------- /SIR-PF/scan_directory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/scan_directory.m -------------------------------------------------------------------------------- /SIR-PF/test_pf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/test_pf.m -------------------------------------------------------------------------------- /SIR-PF/track.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/track.m -------------------------------------------------------------------------------- /SIR-PF/tracker_pf_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/tracker_pf_initialize.m -------------------------------------------------------------------------------- /SIR-PF/tracker_pf_update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/tracker_pf_update.m -------------------------------------------------------------------------------- /SIR-PF/update_particles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/update_particles.m -------------------------------------------------------------------------------- /SIR-PF/vot_tracker_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/vot_tracker_initialize.m -------------------------------------------------------------------------------- /SIR-PF/vot_tracker_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/vot_tracker_results.m -------------------------------------------------------------------------------- /SIR-PF/weightedMedian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/weightedMedian.m -------------------------------------------------------------------------------- /SIR-PF/weights_hist_particles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/weights_hist_particles.m -------------------------------------------------------------------------------- /SIR-PF/wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/SIR-PF/wrapper.m -------------------------------------------------------------------------------- /STRUCK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/CMakeLists.txt -------------------------------------------------------------------------------- /STRUCK/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/LICENSE.txt -------------------------------------------------------------------------------- /STRUCK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/README.md -------------------------------------------------------------------------------- /STRUCK/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/config.txt -------------------------------------------------------------------------------- /STRUCK/sequences/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/sequences/README.txt -------------------------------------------------------------------------------- /STRUCK/src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Config.cpp -------------------------------------------------------------------------------- /STRUCK/src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Config.h -------------------------------------------------------------------------------- /STRUCK/src/Features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Features.cpp -------------------------------------------------------------------------------- /STRUCK/src/Features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Features.h -------------------------------------------------------------------------------- /STRUCK/src/GraphUtils/GraphUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/GraphUtils/GraphUtils.cpp -------------------------------------------------------------------------------- /STRUCK/src/GraphUtils/GraphUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/GraphUtils/GraphUtils.h -------------------------------------------------------------------------------- /STRUCK/src/HaarFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/HaarFeature.cpp -------------------------------------------------------------------------------- /STRUCK/src/HaarFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/HaarFeature.h -------------------------------------------------------------------------------- /STRUCK/src/HaarFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/HaarFeatures.cpp -------------------------------------------------------------------------------- /STRUCK/src/HaarFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/HaarFeatures.h -------------------------------------------------------------------------------- /STRUCK/src/HistogramFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/HistogramFeatures.cpp -------------------------------------------------------------------------------- /STRUCK/src/HistogramFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/HistogramFeatures.h -------------------------------------------------------------------------------- /STRUCK/src/ImageRep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/ImageRep.cpp -------------------------------------------------------------------------------- /STRUCK/src/ImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/ImageRep.h -------------------------------------------------------------------------------- /STRUCK/src/Kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Kernels.h -------------------------------------------------------------------------------- /STRUCK/src/LaRank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/LaRank.cpp -------------------------------------------------------------------------------- /STRUCK/src/LaRank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/LaRank.h -------------------------------------------------------------------------------- /STRUCK/src/MultiFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/MultiFeatures.cpp -------------------------------------------------------------------------------- /STRUCK/src/MultiFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/MultiFeatures.h -------------------------------------------------------------------------------- /STRUCK/src/RawFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/RawFeatures.cpp -------------------------------------------------------------------------------- /STRUCK/src/RawFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/RawFeatures.h -------------------------------------------------------------------------------- /STRUCK/src/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Rect.h -------------------------------------------------------------------------------- /STRUCK/src/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Sample.h -------------------------------------------------------------------------------- /STRUCK/src/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Sampler.cpp -------------------------------------------------------------------------------- /STRUCK/src/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Sampler.h -------------------------------------------------------------------------------- /STRUCK/src/Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Tracker.cpp -------------------------------------------------------------------------------- /STRUCK/src/Tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/Tracker.h -------------------------------------------------------------------------------- /STRUCK/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/main.cpp -------------------------------------------------------------------------------- /STRUCK/src/vot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/STRUCK/src/vot.hpp -------------------------------------------------------------------------------- /TLD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/LICENSE -------------------------------------------------------------------------------- /TLD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/README.md -------------------------------------------------------------------------------- /TLD/_input/init.txt: -------------------------------------------------------------------------------- 1 | 288,36,313,78 -------------------------------------------------------------------------------- /TLD/_output/tld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/_output/tld.txt -------------------------------------------------------------------------------- /TLD/bbox/bb2pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb2pts.m -------------------------------------------------------------------------------- /TLD/bbox/bbBR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bbBR.m -------------------------------------------------------------------------------- /TLD/bbox/bbHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bbHeight.m -------------------------------------------------------------------------------- /TLD/bbox/bbTL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bbTL.m -------------------------------------------------------------------------------- /TLD/bbox/bbWidth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bbWidth.m -------------------------------------------------------------------------------- /TLD/bbox/bbX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bbX.m -------------------------------------------------------------------------------- /TLD/bbox/bbY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bbY.m -------------------------------------------------------------------------------- /TLD/bbox/bb_burn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_burn.m -------------------------------------------------------------------------------- /TLD/bbox/bb_center.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_center.m -------------------------------------------------------------------------------- /TLD/bbox/bb_click.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_click.m -------------------------------------------------------------------------------- /TLD/bbox/bb_click_move.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_click_move.m -------------------------------------------------------------------------------- /TLD/bbox/bb_cluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_cluster.m -------------------------------------------------------------------------------- /TLD/bbox/bb_cluster_confidence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_cluster_confidence.m -------------------------------------------------------------------------------- /TLD/bbox/bb_correct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_correct.m -------------------------------------------------------------------------------- /TLD/bbox/bb_distance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_distance.m -------------------------------------------------------------------------------- /TLD/bbox/bb_draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_draw.m -------------------------------------------------------------------------------- /TLD/bbox/bb_get_similar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_get_similar.m -------------------------------------------------------------------------------- /TLD/bbox/bb_height.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_height.m -------------------------------------------------------------------------------- /TLD/bbox/bb_hull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_hull.m -------------------------------------------------------------------------------- /TLD/bbox/bb_isdef.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_isdef.m -------------------------------------------------------------------------------- /TLD/bbox/bb_isin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_isin.m -------------------------------------------------------------------------------- /TLD/bbox/bb_isout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_isout.m -------------------------------------------------------------------------------- /TLD/bbox/bb_normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_normalize.m -------------------------------------------------------------------------------- /TLD/bbox/bb_points.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_points.m -------------------------------------------------------------------------------- /TLD/bbox/bb_predict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_predict.m -------------------------------------------------------------------------------- /TLD/bbox/bb_rescale_absolute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_rescale_absolute.m -------------------------------------------------------------------------------- /TLD/bbox/bb_rescale_relative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_rescale_relative.m -------------------------------------------------------------------------------- /TLD/bbox/bb_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_scale.m -------------------------------------------------------------------------------- /TLD/bbox/bb_scan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_scan.m -------------------------------------------------------------------------------- /TLD/bbox/bb_shift_absolute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_shift_absolute.m -------------------------------------------------------------------------------- /TLD/bbox/bb_shift_relative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_shift_relative.m -------------------------------------------------------------------------------- /TLD/bbox/bb_size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_size.m -------------------------------------------------------------------------------- /TLD/bbox/bb_square.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_square.m -------------------------------------------------------------------------------- /TLD/bbox/bb_width.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/bb_width.m -------------------------------------------------------------------------------- /TLD/bbox/pts2bb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/bbox/pts2bb.m -------------------------------------------------------------------------------- /TLD/compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/compile.m -------------------------------------------------------------------------------- /TLD/img/cam_record.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/cam_record.m -------------------------------------------------------------------------------- /TLD/img/cam_wait.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/cam_wait.m -------------------------------------------------------------------------------- /TLD/img/gt_create.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/gt_create.m -------------------------------------------------------------------------------- /TLD/img/gt_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/gt_display.m -------------------------------------------------------------------------------- /TLD/img/img_alloc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_alloc.m -------------------------------------------------------------------------------- /TLD/img/img_any2any.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_any2any.m -------------------------------------------------------------------------------- /TLD/img/img_blur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_blur.m -------------------------------------------------------------------------------- /TLD/img/img_dir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_dir.m -------------------------------------------------------------------------------- /TLD/img/img_get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_get.m -------------------------------------------------------------------------------- /TLD/img/img_merge_frames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_merge_frames.m -------------------------------------------------------------------------------- /TLD/img/img_patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/img/img_patch.m -------------------------------------------------------------------------------- /TLD/initcamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/initcamera.m -------------------------------------------------------------------------------- /TLD/mex/bb_overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/bb_overlap.cpp -------------------------------------------------------------------------------- /TLD/mex/distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/distance.cpp -------------------------------------------------------------------------------- /TLD/mex/fern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/fern.cpp -------------------------------------------------------------------------------- /TLD/mex/ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/ii.cpp -------------------------------------------------------------------------------- /TLD/mex/ii2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/ii2.cpp -------------------------------------------------------------------------------- /TLD/mex/linkagemex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/linkagemex.cpp -------------------------------------------------------------------------------- /TLD/mex/lk.backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/lk.backup.cpp -------------------------------------------------------------------------------- /TLD/mex/lk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/lk.cpp -------------------------------------------------------------------------------- /TLD/mex/tld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/tld.cpp -------------------------------------------------------------------------------- /TLD/mex/tld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/tld.h -------------------------------------------------------------------------------- /TLD/mex/warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/mex/warp.cpp -------------------------------------------------------------------------------- /TLD/other/init_workspace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/other/init_workspace.m -------------------------------------------------------------------------------- /TLD/other/run_TLD_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/other/run_TLD_demo.m -------------------------------------------------------------------------------- /TLD/other/stabilize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/other/stabilize.m -------------------------------------------------------------------------------- /TLD/other/usbclear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/other/usbclear.m -------------------------------------------------------------------------------- /TLD/other/usbinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/other/usbinit.m -------------------------------------------------------------------------------- /TLD/other/webcam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/other/webcam.jpg -------------------------------------------------------------------------------- /TLD/run_TLD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/run_TLD.m -------------------------------------------------------------------------------- /TLD/test/test_bb_scan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_bb_scan.m -------------------------------------------------------------------------------- /TLD/test/test_bbox_shift_overlap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_bbox_shift_overlap.m -------------------------------------------------------------------------------- /TLD/test/test_display_layers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_display_layers.m -------------------------------------------------------------------------------- /TLD/test/test_face_detector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_face_detector.m -------------------------------------------------------------------------------- /TLD/test/test_featureGenerata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_featureGenerata.m -------------------------------------------------------------------------------- /TLD/test/test_getPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_getPatch.m -------------------------------------------------------------------------------- /TLD/test/test_tmdPatch2Pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_tmdPatch2Pattern.m -------------------------------------------------------------------------------- /TLD/test/test_webcam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/test/test_webcam.m -------------------------------------------------------------------------------- /TLD/tld/tldDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldDemo.m -------------------------------------------------------------------------------- /TLD/tld/tldDetection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldDetection.m -------------------------------------------------------------------------------- /TLD/tld/tldDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldDisplay.m -------------------------------------------------------------------------------- /TLD/tld/tldExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldExample.m -------------------------------------------------------------------------------- /TLD/tld/tldGenerateAprioriData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGenerateAprioriData.m -------------------------------------------------------------------------------- /TLD/tld/tldGenerateFeatures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGenerateFeatures.m -------------------------------------------------------------------------------- /TLD/tld/tldGenerateNegativeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGenerateNegativeData.m -------------------------------------------------------------------------------- /TLD/tld/tldGeneratePositiveData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGeneratePositiveData.m -------------------------------------------------------------------------------- /TLD/tld/tldGeneratePositiveData_single_bbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGeneratePositiveData_single_bbox.m -------------------------------------------------------------------------------- /TLD/tld/tldGetPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGetPattern.m -------------------------------------------------------------------------------- /TLD/tld/tldGetPattern_fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldGetPattern_fast.m -------------------------------------------------------------------------------- /TLD/tld/tldInit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldInit.m -------------------------------------------------------------------------------- /TLD/tld/tldInitDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldInitDetector.m -------------------------------------------------------------------------------- /TLD/tld/tldInitFirstFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldInitFirstFrame.m -------------------------------------------------------------------------------- /TLD/tld/tldInitSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldInitSource.m -------------------------------------------------------------------------------- /TLD/tld/tldLearning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldLearning.m -------------------------------------------------------------------------------- /TLD/tld/tldLoadAprioriImages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldLoadAprioriImages.m -------------------------------------------------------------------------------- /TLD/tld/tldMinMaxVar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldMinMaxVar.m -------------------------------------------------------------------------------- /TLD/tld/tldNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldNN.m -------------------------------------------------------------------------------- /TLD/tld/tldPatch2Pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldPatch2Pattern.m -------------------------------------------------------------------------------- /TLD/tld/tldProcessFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldProcessFrame.m -------------------------------------------------------------------------------- /TLD/tld/tldSaveImages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldSaveImages.m -------------------------------------------------------------------------------- /TLD/tld/tldSplitNegativeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldSplitNegativeData.m -------------------------------------------------------------------------------- /TLD/tld/tldTrack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldTrack.m -------------------------------------------------------------------------------- /TLD/tld/tldTrack_occlusion.2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldTrack_occlusion.2.m -------------------------------------------------------------------------------- /TLD/tld/tldTrack_occlusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldTrack_occlusion.m -------------------------------------------------------------------------------- /TLD/tld/tldTracking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldTracking.m -------------------------------------------------------------------------------- /TLD/tld/tldTrainNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldTrainNN.m -------------------------------------------------------------------------------- /TLD/tld/tldUpdateDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldUpdateDetector.m -------------------------------------------------------------------------------- /TLD/tld/tldUpdateDetectorConservative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/tld/tldUpdateDetectorConservative.m -------------------------------------------------------------------------------- /TLD/tld_challenge.m: -------------------------------------------------------------------------------- 1 | challenge = 1; 2 | run_TLD -------------------------------------------------------------------------------- /TLD/utils/idx2id.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/idx2id.m -------------------------------------------------------------------------------- /TLD/utils/mat2img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/mat2img.m -------------------------------------------------------------------------------- /TLD/utils/maximize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/maximize.m -------------------------------------------------------------------------------- /TLD/utils/median2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/median2.m -------------------------------------------------------------------------------- /TLD/utils/n2s.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/n2s.m -------------------------------------------------------------------------------- /TLD/utils/ntuples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/ntuples.m -------------------------------------------------------------------------------- /TLD/utils/pseudorandom_indexes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/pseudorandom_indexes.m -------------------------------------------------------------------------------- /TLD/utils/randvalues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/randvalues.m -------------------------------------------------------------------------------- /TLD/utils/repcel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/repcel.m -------------------------------------------------------------------------------- /TLD/utils/uniquecount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/uniquecount.m -------------------------------------------------------------------------------- /TLD/utils/vnormp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/utils/vnormp.m -------------------------------------------------------------------------------- /TLD/vot_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/TLD/vot_initialize.m -------------------------------------------------------------------------------- /cvbb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/cvbb.py -------------------------------------------------------------------------------- /cveval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/cveval.py -------------------------------------------------------------------------------- /cvseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/cvseq.py -------------------------------------------------------------------------------- /cvtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/cvtrack.py -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/ChannelEnc1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/ChannelEnc1D.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/basisMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/basisMatrix.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/centers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/centers.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/decode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/decode.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/decodeImg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/decodeImg.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/encode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/encode.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/encodeDensity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/encodeDensity.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/encodeImg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/encodeImg.m -------------------------------------------------------------------------------- /qwsEDFT/@ChannelEnc1D/setChanConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/@ChannelEnc1D/setChanConfig.m -------------------------------------------------------------------------------- /qwsEDFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/README.md -------------------------------------------------------------------------------- /qwsEDFT/computeCropParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/computeCropParams.m -------------------------------------------------------------------------------- /qwsEDFT/computeStartingPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/computeStartingPoint.m -------------------------------------------------------------------------------- /qwsEDFT/cos2kernel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/cos2kernel.m -------------------------------------------------------------------------------- /qwsEDFT/distanceDF5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/distanceDF5.m -------------------------------------------------------------------------------- /qwsEDFT/distanceDF6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/distanceDF6.m -------------------------------------------------------------------------------- /qwsEDFT/findTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/findTarget.m -------------------------------------------------------------------------------- /qwsEDFT/findTargetHier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/findTargetHier.m -------------------------------------------------------------------------------- /qwsEDFT/getChannelMeanVar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/getChannelMeanVar.m -------------------------------------------------------------------------------- /qwsEDFT/getCoherenceCalcObjects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/getCoherenceCalcObjects.m -------------------------------------------------------------------------------- /qwsEDFT/img2df.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/img2df.m -------------------------------------------------------------------------------- /qwsEDFT/isBorderPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/isBorderPixel.m -------------------------------------------------------------------------------- /qwsEDFT/smoothDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/smoothDF.m -------------------------------------------------------------------------------- /qwsEDFT/vot_deinitialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/vot_deinitialize.m -------------------------------------------------------------------------------- /qwsEDFT/vot_initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/vot_initialize.m -------------------------------------------------------------------------------- /qwsEDFT/wrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnebehay/VOTR/HEAD/qwsEDFT/wrapper.m --------------------------------------------------------------------------------