├── EpicFlow_v1.00 ├── Makefile ├── README ├── array_types.h ├── epic.cpp ├── epic.h ├── epic.o ├── epic_aux.cpp ├── epic_aux.h ├── epic_aux.o ├── epicflow-static ├── epicflow.cpp ├── epicflow.o ├── image.c ├── image.h ├── image.o ├── io.c ├── io.h ├── modelFinal.mat ├── solver.c ├── solver.h ├── variational.c ├── variational.h ├── variational.o ├── variational_aux.c ├── variational_aux.h └── variational_aux.o ├── README.md ├── SED_edge ├── Contents.m ├── boxesData.m ├── boxesEval.m ├── edgeBoxes.m ├── edgeBoxesDemo.m ├── edgeBoxesSweeps.m ├── edgesChns.m ├── edgesDemo.m ├── edgesDemoRgbd.m ├── edgesDetect.m ├── edgesEval.m ├── edgesEvalDir.m ├── edgesEvalImg.m ├── edgesEvalPlot.m ├── edgesSweeps.m ├── edgesTrain.m ├── license.txt ├── models │ └── forest │ │ └── modelBsds.mat ├── private │ ├── correspondPixels.mexa64 │ ├── correspondPixels.mexw64 │ ├── edgeBoxesMex.cpp │ ├── edgeBoxesMex.mexa64 │ ├── edgeBoxesMex.mexw64 │ ├── edgesDetectMex.cpp │ ├── edgesDetectMex.mexa64 │ ├── edgesDetectMex.mexw64 │ ├── edgesNmsMex.cpp │ ├── edgesNmsMex.mexa64 │ ├── edgesNmsMex.mexw64 │ ├── spDetectMex.cpp │ ├── spDetectMex.mexa64 │ ├── spDetectMex.mexw64 │ ├── ucm_mean_pb.mexa64 │ └── ucm_mean_pb.mexw64 ├── readme.txt ├── spAffinities.m ├── spDemo.m └── spDetect.m ├── deepmatching_1.2_c++ ├── COPYING ├── Makefile ├── README.txt ├── array_types.h ├── climb1.png ├── climb2.png ├── conv.cpp ├── conv.h ├── deep_matching.cpp ├── deep_matching.h ├── deepmatching-static ├── dino1.jpg ├── dino2.jpg ├── hog.cpp ├── hog.h ├── image.cpp ├── image.h ├── io.cpp ├── io.h ├── liberty1.png ├── liberty2.png ├── main.cpp ├── maxfilter.cpp ├── maxfilter.h ├── pixel_desc.cpp ├── pixel_desc.h ├── rescore.py ├── std.h └── viz.py ├── dir_get_epicflow.m ├── get_epicflow.m ├── piotr_toolbox ├── __MACOSX │ └── toolbox │ │ ├── channels │ │ └── ._chnsPyramid.m │ │ ├── detector │ │ ├── ._Contents.m │ │ ├── ._acfDemoCal.m │ │ ├── ._acfDemoInria.m │ │ ├── ._acfReadme.m │ │ └── ._acfTrain.m │ │ ├── doc │ │ ├── ._history.txt │ │ └── ._overview.html │ │ └── external │ │ ├── ._history.txt │ │ ├── ._toolboxGenDoc.m │ │ ├── ._toolboxUpdateHeader.m │ │ └── m2html │ │ └── templates │ │ └── frame-piotr │ │ └── ._overview.html └── toolbox │ ├── README.md │ ├── channels │ ├── Contents.m │ ├── chnsCompute.m │ ├── chnsPyramid.m │ ├── chnsScaling.m │ ├── convBox.m │ ├── convMax.m │ ├── convTri.m │ ├── fhog.m │ ├── gradient2.m │ ├── gradientHist.m │ ├── gradientMag.m │ ├── hog.m │ ├── hogDraw.m │ ├── imPad.m │ ├── imResample.m │ ├── private │ │ ├── chnsTestCpp.cpp │ │ ├── convConst.cpp │ │ ├── convConst.mexa64 │ │ ├── convConst.mexmaci64 │ │ ├── convConst.mexw64 │ │ ├── gradientMex.cpp │ │ ├── gradientMex.mexa64 │ │ ├── gradientMex.mexmaci64 │ │ ├── gradientMex.mexw64 │ │ ├── gradientMexNew.mexmaci64 │ │ ├── imPadMex.cpp │ │ ├── imPadMex.mexa64 │ │ ├── imPadMex.mexmaci64 │ │ ├── imPadMex.mexw64 │ │ ├── imResampleMex.cpp │ │ ├── imResampleMex.mexa64 │ │ ├── imResampleMex.mexmaci64 │ │ ├── imResampleMex.mexw64 │ │ ├── rgbConvertMex.cpp │ │ ├── rgbConvertMex.mexa64 │ │ ├── rgbConvertMex.mexmaci64 │ │ ├── rgbConvertMex.mexw64 │ │ ├── sse.hpp │ │ └── wrappers.hpp │ └── rgbConvert.m │ ├── classify │ ├── Contents.m │ ├── adaBoostApply.m │ ├── adaBoostTrain.m │ ├── binaryTreeApply.m │ ├── binaryTreeTrain.m │ ├── confMatrix.m │ ├── confMatrixShow.m │ ├── demoCluster.m │ ├── demoGenData.m │ ├── distMatrixShow.m │ ├── fernsClfApply.m │ ├── fernsClfTrain.m │ ├── fernsInds.m │ ├── fernsRegApply.m │ ├── fernsRegTrain.m │ ├── forestApply.m │ ├── forestTrain.m │ ├── kmeans2.m │ ├── meanShift.m │ ├── meanShiftIm.m │ ├── meanShiftImExplore.m │ ├── pca.m │ ├── pcaApply.m │ ├── pcaData.mat │ ├── pcaRandVec.m │ ├── pcaVisualize.m │ ├── pdist2.m │ ├── private │ │ ├── IDX2order.m │ │ ├── binaryTreeTrain1.cpp │ │ ├── binaryTreeTrain1.mexa64 │ │ ├── binaryTreeTrain1.mexmaci64 │ │ ├── binaryTreeTrain1.mexw64 │ │ ├── fernsInds1.c │ │ ├── fernsInds1.mexa64 │ │ ├── fernsInds1.mexmaci64 │ │ ├── fernsInds1.mexw64 │ │ ├── forestFindThr.cpp │ │ ├── forestFindThr.mexa64 │ │ ├── forestFindThr.mexmaci64 │ │ ├── forestFindThr.mexw64 │ │ ├── forestInds.cpp │ │ ├── forestInds.mexa64 │ │ ├── forestInds.mexmaci64 │ │ ├── forestInds.mexw64 │ │ ├── meanShift1.c │ │ ├── meanShift1.mexa64 │ │ ├── meanShift1.mexmaci64 │ │ ├── meanShift1.mexw64 │ │ └── meanShiftPost.m │ ├── rbfComputeBasis.m │ ├── rbfComputeFtrs.m │ ├── rbfDemo.m │ ├── softMin.m │ └── visualizeData.m │ ├── detector │ ├── Contents.m │ ├── acfDemoCal.m │ ├── acfDemoInria.m │ ├── acfDetect.m │ ├── acfModify.m │ ├── acfReadme.m │ ├── acfTest.m │ ├── acfTrain.m │ ├── bbApply.m │ ├── bbGt.m │ ├── bbLabeler.m │ ├── bbNms.m │ ├── models │ │ ├── AcfCaltech+Detector.mat │ │ ├── AcfCaltech+Log.txt │ │ ├── AcfCaltech+Roc.png │ │ ├── AcfInriaDetector.mat │ │ ├── AcfInriaLog.txt │ │ ├── AcfInriaRoc.png │ │ ├── LdcfCaltechDetector.mat │ │ ├── LdcfCaltechLog.txt │ │ ├── LdcfCaltechRoc.png │ │ ├── LdcfInriaDetector.mat │ │ ├── LdcfInriaLog.txt │ │ └── LdcfInriaRoc.png │ └── private │ │ ├── acfDetect1.cpp │ │ ├── acfDetect1.mexa64 │ │ ├── acfDetect1.mexmaci64 │ │ └── acfDetect1.mexw64 │ ├── doc │ ├── alpha.png │ ├── c++.png │ ├── c.png │ ├── channels │ │ ├── Contents.html │ │ ├── chnsCompute.html │ │ ├── chnsPyramid.html │ │ ├── chnsScaling.html │ │ ├── convBox.html │ │ ├── convMax.html │ │ ├── convTri.html │ │ ├── fhog.html │ │ ├── gradient2.html │ │ ├── gradientHist.html │ │ ├── gradientMag.html │ │ ├── hog.html │ │ ├── hogDraw.html │ │ ├── imPad.html │ │ ├── imResample.html │ │ ├── menu.html │ │ └── rgbConvert.html │ ├── classify │ │ ├── Contents.html │ │ ├── adaBoostApply.html │ │ ├── adaBoostTrain.html │ │ ├── binaryTreeApply.html │ │ ├── binaryTreeTrain.html │ │ ├── confMatrix.html │ │ ├── confMatrixShow.html │ │ ├── demoCluster.html │ │ ├── demoGenData.html │ │ ├── distMatrixShow.html │ │ ├── fernsClfApply.html │ │ ├── fernsClfTrain.html │ │ ├── fernsInds.html │ │ ├── fernsRegApply.html │ │ ├── fernsRegTrain.html │ │ ├── forestApply.html │ │ ├── forestTrain.html │ │ ├── kmeans2.html │ │ ├── meanShift.html │ │ ├── meanShiftIm.html │ │ ├── meanShiftImExplore.html │ │ ├── menu.html │ │ ├── pca.html │ │ ├── pcaApply.html │ │ ├── pcaRandVec.html │ │ ├── pcaVisualize.html │ │ ├── pdist2.html │ │ ├── rbfComputeBasis.html │ │ ├── rbfComputeFtrs.html │ │ ├── rbfDemo.html │ │ ├── softMin.html │ │ └── visualizeData.html │ ├── demoicon.gif │ ├── detector │ │ ├── Contents.html │ │ ├── acfDemoCal.html │ │ ├── acfDemoInria.html │ │ ├── acfDetect.html │ │ ├── acfModify.html │ │ ├── acfReadme.html │ │ ├── acfTest.html │ │ ├── acfTrain.html │ │ ├── bbApply.html │ │ ├── bbGt.html │ │ ├── bbLabeler.html │ │ ├── bbNms.html │ │ └── menu.html │ ├── down.png │ ├── favicon.ico │ ├── filters │ │ ├── Contents.html │ │ ├── FbApply2d.html │ │ ├── FbCrop.html │ │ ├── FbMake.html │ │ ├── FbReconstruct2d.html │ │ ├── FbVisualize.html │ │ ├── filterBinomial1d.html │ │ ├── filterDog2d.html │ │ ├── filterDoog.html │ │ ├── filterGabor1d.html │ │ ├── filterGabor2d.html │ │ ├── filterGauss.html │ │ ├── filterSteerable.html │ │ ├── filterVisualize.html │ │ ├── medfilt1m.html │ │ ├── menu.html │ │ └── modefilt1.html │ ├── fortran.png │ ├── history.txt │ ├── hp.png │ ├── images │ │ ├── Contents.html │ │ ├── assignToBins.html │ │ ├── clusterMontage.html │ │ ├── convnFast.html │ │ ├── filmStrip.html │ │ ├── gaussSmooth.html │ │ ├── histMontage.html │ │ ├── histc2.html │ │ ├── histcImLoc.html │ │ ├── histcImWin.html │ │ ├── im.html │ │ ├── imMlGauss.html │ │ ├── imNormalize.html │ │ ├── imRectRot.html │ │ ├── imShrink.html │ │ ├── imtransform2.html │ │ ├── imwrite2.html │ │ ├── jitterImage.html │ │ ├── localSum.html │ │ ├── makeGif.html │ │ ├── maskCircle.html │ │ ├── maskEllipse.html │ │ ├── maskGaussians.html │ │ ├── maskSphere.html │ │ ├── menu.html │ │ ├── montage2.html │ │ ├── movieToImages.html │ │ ├── nonMaxSupr.html │ │ ├── nonMaxSuprList.html │ │ ├── nonMaxSuprWin.html │ │ ├── normxcorrn.html │ │ ├── playMovie.html │ │ ├── textureMap.html │ │ ├── xcorrn.html │ │ └── xeucn.html │ ├── index.html │ ├── left.png │ ├── linux.png │ ├── m2html.css │ ├── matlab │ │ ├── Contents.html │ │ ├── arrayCrop.html │ │ ├── arrayToDims.html │ │ ├── c.html │ │ ├── cc.html │ │ ├── ccc.html │ │ ├── cell2array.html │ │ ├── char2img.html │ │ ├── checkNumArgs.html │ │ ├── dijkstra.html │ │ ├── dirSynch.html │ │ ├── diskFill.html │ │ ├── dispMatrixIm.html │ │ ├── fevalArrays.html │ │ ├── fevalDistr.html │ │ ├── fevalDistrDisk.html │ │ ├── fevalImages.html │ │ ├── fevalMats.html │ │ ├── figureResized.html │ │ ├── gauss2ellipse.html │ │ ├── getPrmDflt.html │ │ ├── imLabel.html │ │ ├── ind2sub2.html │ │ ├── int2str2.html │ │ ├── isfield2.html │ │ ├── mat2cell2.html │ │ ├── medianw.html │ │ ├── menu.html │ │ ├── multiDiv.html │ │ ├── multiTimes.html │ │ ├── normpdf2.html │ │ ├── num2strs.html │ │ ├── plotEllipse.html │ │ ├── plotGaussEllipses.html │ │ ├── plotRoc.html │ │ ├── randSample.html │ │ ├── randint2.html │ │ ├── rotationMatrix.html │ │ ├── simpleCache.html │ │ ├── spBlkDiag.html │ │ ├── sub2ind2.html │ │ ├── subsToArray.html │ │ ├── text2.html │ │ ├── ticStatus.html │ │ ├── tocStatus.html │ │ ├── tpsGetWarp.html │ │ ├── tpsInterpolate.html │ │ ├── tpsInterpolateIm.html │ │ ├── tpsRandom.html │ │ ├── txt2img.html │ │ └── uniqueColors.html │ ├── matlabicon.gif │ ├── menu.html │ ├── mex.png │ ├── new.gif │ ├── overview.html │ ├── right.png │ ├── sgi.png │ ├── simulinkicon.gif │ ├── solaris.png │ ├── up.png │ ├── videos │ │ ├── Contents.html │ │ ├── behaviorAnnotator.html │ │ ├── behaviorData.html │ │ ├── imagesAlign.html │ │ ├── imagesAlignSeq.html │ │ ├── kernelTracker.html │ │ ├── menu.html │ │ ├── opticalFlow.html │ │ ├── seqIo.html │ │ ├── seqPlayer.html │ │ ├── seqReaderPlugin.html │ │ └── seqWriterPlugin.html │ └── windows.png │ ├── external │ ├── bsd.txt │ ├── deprecated │ │ ├── apply_homography.m │ │ ├── clfData.mat │ │ ├── clfDecTree.m │ │ ├── clfDecTreeFwd.m │ │ ├── clfDecTreeTrain.m │ │ ├── clfEcoc.m │ │ ├── clfEcocCode.m │ │ ├── clfKnn.m │ │ ├── clfKnnDist.m │ │ ├── clfKnnFwd.m │ │ ├── clfKnnTrain.m │ │ ├── clfLda.m │ │ ├── clfLdaFwd.m │ │ ├── clfLdaTrain.m │ │ ├── clfSvm.m │ │ ├── demoClassify.m │ │ ├── diffTracker.m │ │ ├── filter_gauss_1D.m │ │ ├── getargs.m │ │ ├── imRectLite.m │ │ ├── imSubsResize.m │ │ ├── imrotate2.m │ │ ├── imtranslate.m │ │ ├── imwrite2split.m │ │ ├── localsum_block.m │ │ ├── makemovie.m │ │ ├── mode2.m │ │ ├── montages2.m │ │ ├── nfoldxval.m │ │ ├── normxcorrn_fg.m │ │ ├── pca_apply.m │ │ ├── pca_apply_large.m │ │ ├── playmovies.m │ │ ├── randperm2.m │ │ └── subsampleMatrix.m │ ├── history.txt │ ├── m2html │ │ ├── @template │ │ │ ├── char.m │ │ │ ├── display.m │ │ │ ├── get.m │ │ │ ├── parse.m │ │ │ ├── private │ │ │ │ ├── finish.m │ │ │ │ ├── loadtpl.m │ │ │ │ └── subst.m │ │ │ ├── set.m │ │ │ └── template.m │ │ ├── Changelog │ │ ├── Contents.m │ │ ├── GPL │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── m2html.m │ │ ├── mdot.m │ │ ├── mwizard.m │ │ ├── mwizard2.m │ │ ├── private │ │ │ ├── doxyread.m │ │ │ ├── doxysearch.m │ │ │ ├── doxywrite.m │ │ │ ├── m2htmltoolbarimages.mat │ │ │ ├── mexexts.m │ │ │ ├── mfileparse.m │ │ │ ├── openfile.m │ │ │ ├── searchindex.m │ │ │ ├── splitcode.m │ │ │ └── strtok.m │ │ └── templates │ │ │ ├── blue │ │ │ ├── Thumbs.db │ │ │ ├── alpha.png │ │ │ ├── c++.png │ │ │ ├── c.png │ │ │ ├── demoicon.gif │ │ │ ├── down.png │ │ │ ├── doxysearch.php │ │ │ ├── fortran.png │ │ │ ├── graph.tpl │ │ │ ├── hp.png │ │ │ ├── left.png │ │ │ ├── linux.png │ │ │ ├── m2html.css │ │ │ ├── master.tpl │ │ │ ├── matlabicon.gif │ │ │ ├── mdir.tpl │ │ │ ├── mex.png │ │ │ ├── mfile.tpl │ │ │ ├── pcode.png │ │ │ ├── right.png │ │ │ ├── search.tpl │ │ │ ├── sgi.png │ │ │ ├── simulinkicon.gif │ │ │ ├── solaris.png │ │ │ ├── todo.tpl │ │ │ ├── up.png │ │ │ └── windows.png │ │ │ ├── brain │ │ │ ├── alpha.png │ │ │ ├── brain.png │ │ │ ├── c++.png │ │ │ ├── c.png │ │ │ ├── demoicon.gif │ │ │ ├── down.png │ │ │ ├── doxysearch.php │ │ │ ├── fortran.png │ │ │ ├── graph.tpl │ │ │ ├── hp.png │ │ │ ├── index.html │ │ │ ├── left.png │ │ │ ├── linux.png │ │ │ ├── m2html.css │ │ │ ├── master.tpl │ │ │ ├── matlabicon.gif │ │ │ ├── mdir.tpl │ │ │ ├── menu.css │ │ │ ├── mex.png │ │ │ ├── mfile.tpl │ │ │ ├── pcode.png │ │ │ ├── right.png │ │ │ ├── search.tpl │ │ │ ├── sgi.png │ │ │ ├── simulinkicon.gif │ │ │ ├── solaris.png │ │ │ ├── todo.tpl │ │ │ ├── up.png │ │ │ └── windows.png │ │ │ ├── frame-piotr │ │ │ ├── alpha.png │ │ │ ├── c++.png │ │ │ ├── c.png │ │ │ ├── demoicon.gif │ │ │ ├── down.png │ │ │ ├── favicon.ico │ │ │ ├── fortran.png │ │ │ ├── graph.tpl │ │ │ ├── hp.png │ │ │ ├── index.html │ │ │ ├── left.png │ │ │ ├── linux.png │ │ │ ├── m2html.css │ │ │ ├── master.tpl │ │ │ ├── matlabicon.gif │ │ │ ├── mdir.tpl │ │ │ ├── mex.png │ │ │ ├── mfile.tpl │ │ │ ├── new.gif │ │ │ ├── overview.html │ │ │ ├── right.png │ │ │ ├── sgi.png │ │ │ ├── simulinkicon.gif │ │ │ ├── solaris.png │ │ │ ├── todo.tpl │ │ │ ├── up.png │ │ │ └── windows.png │ │ │ ├── frame │ │ │ ├── alpha.png │ │ │ ├── c++.png │ │ │ ├── c.png │ │ │ ├── demoicon.gif │ │ │ ├── down.png │ │ │ ├── doxysearch.php │ │ │ ├── fortran.png │ │ │ ├── graph.tpl │ │ │ ├── hp.png │ │ │ ├── index.html │ │ │ ├── left.png │ │ │ ├── linux.png │ │ │ ├── m2html.css │ │ │ ├── master.tpl │ │ │ ├── matlabicon.gif │ │ │ ├── mdir.tpl │ │ │ ├── mex.png │ │ │ ├── mfile.tpl │ │ │ ├── pcode.png │ │ │ ├── right.png │ │ │ ├── search.tpl │ │ │ ├── sgi.png │ │ │ ├── simulinkicon.gif │ │ │ ├── solaris.png │ │ │ ├── todo.tpl │ │ │ ├── up.png │ │ │ └── windows.png │ │ │ └── menu-for-frame-piotr.html │ ├── other │ │ ├── compareStructs.m │ │ ├── matrix2latex.m │ │ ├── multiprod.m │ │ └── savefig.m │ ├── toolboxCompile.m │ ├── toolboxGenDoc.m │ ├── toolboxHeader.m │ └── toolboxUpdateHeader.m │ ├── filters │ ├── Contents.m │ ├── FbApply2d.m │ ├── FbCrop.m │ ├── FbDoG.mat │ ├── FbGabor.mat │ ├── FbMake.m │ ├── FbReconstruct2d.m │ ├── FbVisualize.m │ ├── filterBinomial1d.m │ ├── filterDog2d.m │ ├── filterDoog.m │ ├── filterGabor1d.m │ ├── filterGabor2d.m │ ├── filterGauss.m │ ├── filterSteerable.m │ ├── filterVisualize.m │ ├── medfilt1m.m │ └── modefilt1.m │ ├── images │ ├── Contents.m │ ├── assignToBins.m │ ├── clusterMontage.m │ ├── convnFast.m │ ├── filmStrip.m │ ├── gaussSmooth.m │ ├── histMontage.m │ ├── histc2.m │ ├── histcImLoc.m │ ├── histcImWin.m │ ├── im.m │ ├── imMlGauss.m │ ├── imNormalize.m │ ├── imRectRot.m │ ├── imShrink.m │ ├── images.mat │ ├── imtransform2.m │ ├── imwrite2.m │ ├── jitterImage.m │ ├── localSum.m │ ├── makeGif.m │ ├── maskCircle.m │ ├── maskEllipse.m │ ├── maskGaussians.m │ ├── maskSphere.m │ ├── montage2.m │ ├── movieToImages.m │ ├── nonMaxSupr.m │ ├── nonMaxSuprList.m │ ├── nonMaxSuprWin.m │ ├── normxcorrn.m │ ├── playMovie.m │ ├── private │ │ ├── assignToBins1.c │ │ ├── assignToBins1.mexa64 │ │ ├── assignToBins1.mexmaci64 │ │ ├── assignToBins1.mexw64 │ │ ├── histc2c.c │ │ ├── histc2c.mexa64 │ │ ├── histc2c.mexmaci64 │ │ ├── histc2c.mexw64 │ │ ├── imtransform2_c.c │ │ ├── imtransform2_c.mexa64 │ │ ├── imtransform2_c.mexmaci64 │ │ ├── imtransform2_c.mexw64 │ │ ├── nlfiltersep.m │ │ ├── nlfiltersep_max.c │ │ ├── nlfiltersep_max.mexa64 │ │ ├── nlfiltersep_max.mexmaci64 │ │ ├── nlfiltersep_max.mexw64 │ │ ├── nlfiltersep_sum.c │ │ ├── nlfiltersep_sum.mexa64 │ │ ├── nlfiltersep_sum.mexmaci64 │ │ └── nlfiltersep_sum.mexw64 │ ├── textureMap.m │ ├── xcorrn.m │ └── xeucn.m │ ├── matlab │ ├── Contents.m │ ├── arrayCrop.m │ ├── arrayToDims.m │ ├── c.m │ ├── cc.m │ ├── ccc.m │ ├── cell2array.m │ ├── char2img.m │ ├── checkNumArgs.m │ ├── dijkstra.m │ ├── dirSynch.m │ ├── diskFill.m │ ├── dispMatrixIm.m │ ├── fevalArrays.m │ ├── fevalDistr.m │ ├── fevalDistrDisk.m │ ├── fevalImages.m │ ├── fevalMats.m │ ├── figureResized.m │ ├── gauss2ellipse.m │ ├── getPrmDflt.m │ ├── imLabel.m │ ├── ind2sub2.m │ ├── int2str2.m │ ├── isfield2.m │ ├── mat2cell2.m │ ├── medianw.m │ ├── multiDiv.m │ ├── multiTimes.m │ ├── normpdf2.m │ ├── num2strs.m │ ├── plotEllipse.m │ ├── plotGaussEllipses.m │ ├── plotRoc.m │ ├── private │ │ ├── char2img_h015.mat │ │ ├── char2img_h020.mat │ │ ├── char2img_h025.mat │ │ ├── char2img_h030.mat │ │ ├── char2img_h035.mat │ │ ├── char2img_h050.mat │ │ ├── dijkstra1.cpp │ │ ├── dijkstra1.mexa64 │ │ ├── dijkstra1.mexmaci64 │ │ ├── dijkstra1.mexw64 │ │ ├── fibheap.cpp │ │ └── fibheap.h │ ├── randSample.m │ ├── randint2.m │ ├── rotationMatrix.m │ ├── simpleCache.m │ ├── spBlkDiag.m │ ├── sub2ind2.m │ ├── subsToArray.m │ ├── text2.m │ ├── ticStatus.m │ ├── tocStatus.m │ ├── tpsGetWarp.m │ ├── tpsInterpolate.m │ ├── tpsInterpolateIm.m │ ├── tpsRandom.m │ ├── txt2img.m │ └── uniqueColors.m │ └── videos │ ├── Contents.m │ ├── behaviorAnnotator.m │ ├── behaviorData.m │ ├── imagesAlign.m │ ├── imagesAlignSeq.m │ ├── kernelTracker.m │ ├── opticalFlow.m │ ├── opticalFlowTest.mat │ ├── peds30-seek.mat │ ├── peds30.seq │ ├── private │ ├── ktComputeW_c.c │ ├── ktComputeW_c.mexa64 │ ├── ktComputeW_c.mexmaci64 │ ├── ktComputeW_c.mexw64 │ ├── ktHistcRgb_c.c │ ├── ktHistcRgb_c.mexa64 │ ├── ktHistcRgb_c.mexmaci64 │ ├── ktHistcRgb_c.mexw64 │ ├── opticalFlowHsMex.cpp │ ├── opticalFlowHsMex.mexa64 │ ├── opticalFlowHsMex.mexmaci64 │ └── opticalFlowHsMex.mexw64 │ ├── seqIo.m │ ├── seqPlayer.m │ ├── seqReaderPlugin.m │ └── seqWriterPlugin.m └── utils ├── dirfun.m ├── flow-code-matlab ├── README.txt ├── colorTest.m ├── computeColor.m ├── flowToColor.m ├── readFlowFile.m └── writeFlowFile.m ├── imresize_aug.m └── parfor_progress.m /EpicFlow_v1.00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/Makefile -------------------------------------------------------------------------------- /EpicFlow_v1.00/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/README -------------------------------------------------------------------------------- /EpicFlow_v1.00/array_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/array_types.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/epic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epic.cpp -------------------------------------------------------------------------------- /EpicFlow_v1.00/epic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epic.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/epic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epic.o -------------------------------------------------------------------------------- /EpicFlow_v1.00/epic_aux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epic_aux.cpp -------------------------------------------------------------------------------- /EpicFlow_v1.00/epic_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epic_aux.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/epic_aux.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epic_aux.o -------------------------------------------------------------------------------- /EpicFlow_v1.00/epicflow-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epicflow-static -------------------------------------------------------------------------------- /EpicFlow_v1.00/epicflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epicflow.cpp -------------------------------------------------------------------------------- /EpicFlow_v1.00/epicflow.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/epicflow.o -------------------------------------------------------------------------------- /EpicFlow_v1.00/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/image.c -------------------------------------------------------------------------------- /EpicFlow_v1.00/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/image.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/image.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/image.o -------------------------------------------------------------------------------- /EpicFlow_v1.00/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/io.c -------------------------------------------------------------------------------- /EpicFlow_v1.00/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/io.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/modelFinal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/modelFinal.mat -------------------------------------------------------------------------------- /EpicFlow_v1.00/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/solver.c -------------------------------------------------------------------------------- /EpicFlow_v1.00/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/solver.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/variational.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/variational.c -------------------------------------------------------------------------------- /EpicFlow_v1.00/variational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/variational.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/variational.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/variational.o -------------------------------------------------------------------------------- /EpicFlow_v1.00/variational_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/variational_aux.c -------------------------------------------------------------------------------- /EpicFlow_v1.00/variational_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/variational_aux.h -------------------------------------------------------------------------------- /EpicFlow_v1.00/variational_aux.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/EpicFlow_v1.00/variational_aux.o -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/README.md -------------------------------------------------------------------------------- /SED_edge/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/Contents.m -------------------------------------------------------------------------------- /SED_edge/boxesData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/boxesData.m -------------------------------------------------------------------------------- /SED_edge/boxesEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/boxesEval.m -------------------------------------------------------------------------------- /SED_edge/edgeBoxes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgeBoxes.m -------------------------------------------------------------------------------- /SED_edge/edgeBoxesDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgeBoxesDemo.m -------------------------------------------------------------------------------- /SED_edge/edgeBoxesSweeps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgeBoxesSweeps.m -------------------------------------------------------------------------------- /SED_edge/edgesChns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesChns.m -------------------------------------------------------------------------------- /SED_edge/edgesDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesDemo.m -------------------------------------------------------------------------------- /SED_edge/edgesDemoRgbd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesDemoRgbd.m -------------------------------------------------------------------------------- /SED_edge/edgesDetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesDetect.m -------------------------------------------------------------------------------- /SED_edge/edgesEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesEval.m -------------------------------------------------------------------------------- /SED_edge/edgesEvalDir.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesEvalDir.m -------------------------------------------------------------------------------- /SED_edge/edgesEvalImg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesEvalImg.m -------------------------------------------------------------------------------- /SED_edge/edgesEvalPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesEvalPlot.m -------------------------------------------------------------------------------- /SED_edge/edgesSweeps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesSweeps.m -------------------------------------------------------------------------------- /SED_edge/edgesTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/edgesTrain.m -------------------------------------------------------------------------------- /SED_edge/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/license.txt -------------------------------------------------------------------------------- /SED_edge/models/forest/modelBsds.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/models/forest/modelBsds.mat -------------------------------------------------------------------------------- /SED_edge/private/correspondPixels.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/correspondPixels.mexa64 -------------------------------------------------------------------------------- /SED_edge/private/correspondPixels.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/correspondPixels.mexw64 -------------------------------------------------------------------------------- /SED_edge/private/edgeBoxesMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgeBoxesMex.cpp -------------------------------------------------------------------------------- /SED_edge/private/edgeBoxesMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgeBoxesMex.mexa64 -------------------------------------------------------------------------------- /SED_edge/private/edgeBoxesMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgeBoxesMex.mexw64 -------------------------------------------------------------------------------- /SED_edge/private/edgesDetectMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgesDetectMex.cpp -------------------------------------------------------------------------------- /SED_edge/private/edgesDetectMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgesDetectMex.mexa64 -------------------------------------------------------------------------------- /SED_edge/private/edgesDetectMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgesDetectMex.mexw64 -------------------------------------------------------------------------------- /SED_edge/private/edgesNmsMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgesNmsMex.cpp -------------------------------------------------------------------------------- /SED_edge/private/edgesNmsMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgesNmsMex.mexa64 -------------------------------------------------------------------------------- /SED_edge/private/edgesNmsMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/edgesNmsMex.mexw64 -------------------------------------------------------------------------------- /SED_edge/private/spDetectMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/spDetectMex.cpp -------------------------------------------------------------------------------- /SED_edge/private/spDetectMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/spDetectMex.mexa64 -------------------------------------------------------------------------------- /SED_edge/private/spDetectMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/spDetectMex.mexw64 -------------------------------------------------------------------------------- /SED_edge/private/ucm_mean_pb.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/ucm_mean_pb.mexa64 -------------------------------------------------------------------------------- /SED_edge/private/ucm_mean_pb.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/private/ucm_mean_pb.mexw64 -------------------------------------------------------------------------------- /SED_edge/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/readme.txt -------------------------------------------------------------------------------- /SED_edge/spAffinities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/spAffinities.m -------------------------------------------------------------------------------- /SED_edge/spDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/spDemo.m -------------------------------------------------------------------------------- /SED_edge/spDetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/SED_edge/spDetect.m -------------------------------------------------------------------------------- /deepmatching_1.2_c++/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/COPYING -------------------------------------------------------------------------------- /deepmatching_1.2_c++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/Makefile -------------------------------------------------------------------------------- /deepmatching_1.2_c++/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/README.txt -------------------------------------------------------------------------------- /deepmatching_1.2_c++/array_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/array_types.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/climb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/climb1.png -------------------------------------------------------------------------------- /deepmatching_1.2_c++/climb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/climb2.png -------------------------------------------------------------------------------- /deepmatching_1.2_c++/conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/conv.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/conv.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/deep_matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/deep_matching.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/deep_matching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/deep_matching.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/deepmatching-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/deepmatching-static -------------------------------------------------------------------------------- /deepmatching_1.2_c++/dino1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/dino1.jpg -------------------------------------------------------------------------------- /deepmatching_1.2_c++/dino2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/dino2.jpg -------------------------------------------------------------------------------- /deepmatching_1.2_c++/hog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/hog.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/hog.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/image.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/image.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/io.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/io.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/liberty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/liberty1.png -------------------------------------------------------------------------------- /deepmatching_1.2_c++/liberty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/liberty2.png -------------------------------------------------------------------------------- /deepmatching_1.2_c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/main.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/maxfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/maxfilter.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/maxfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/maxfilter.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/pixel_desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/pixel_desc.cpp -------------------------------------------------------------------------------- /deepmatching_1.2_c++/pixel_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/pixel_desc.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/rescore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/rescore.py -------------------------------------------------------------------------------- /deepmatching_1.2_c++/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/std.h -------------------------------------------------------------------------------- /deepmatching_1.2_c++/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/deepmatching_1.2_c++/viz.py -------------------------------------------------------------------------------- /dir_get_epicflow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/dir_get_epicflow.m -------------------------------------------------------------------------------- /get_epicflow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/get_epicflow.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/channels/._chnsPyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/channels/._chnsPyramid.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/detector/._Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/detector/._Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/detector/._acfDemoCal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/detector/._acfDemoCal.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/detector/._acfDemoInria.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/detector/._acfDemoInria.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/detector/._acfReadme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/detector/._acfReadme.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/detector/._acfTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/detector/._acfTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/doc/._history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/doc/._history.txt -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/doc/._overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/doc/._overview.html -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/external/._history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/external/._history.txt -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/external/._toolboxGenDoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/external/._toolboxGenDoc.m -------------------------------------------------------------------------------- /piotr_toolbox/__MACOSX/toolbox/external/._toolboxUpdateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/__MACOSX/toolbox/external/._toolboxUpdateHeader.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/README.md: -------------------------------------------------------------------------------- 1 | http://vision.ucsd.edu/~pdollar/toolbox/doc/ 2 | -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/chnsCompute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/chnsCompute.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/chnsPyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/chnsPyramid.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/chnsScaling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/chnsScaling.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/convBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/convBox.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/convMax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/convMax.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/convTri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/convTri.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/fhog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/fhog.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/gradient2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/gradient2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/gradientHist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/gradientHist.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/gradientMag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/gradientMag.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/hog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/hog.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/hogDraw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/hogDraw.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/imPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/imPad.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/imResample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/imResample.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/chnsTestCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/chnsTestCpp.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/convConst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/convConst.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/convConst.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/convConst.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/convConst.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/convConst.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/convConst.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/convConst.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/gradientMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/gradientMex.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/gradientMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/gradientMex.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/gradientMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/gradientMex.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/gradientMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/gradientMex.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/gradientMexNew.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/gradientMexNew.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imPadMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imPadMex.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imPadMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imPadMex.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imPadMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imPadMex.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imPadMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imPadMex.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imResampleMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imResampleMex.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imResampleMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imResampleMex.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imResampleMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imResampleMex.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/imResampleMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/imResampleMex.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/rgbConvertMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/rgbConvertMex.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/rgbConvertMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/rgbConvertMex.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/rgbConvertMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/rgbConvertMex.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/rgbConvertMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/rgbConvertMex.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/sse.hpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/private/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/private/wrappers.hpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/channels/rgbConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/channels/rgbConvert.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/adaBoostApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/adaBoostApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/adaBoostTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/adaBoostTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/binaryTreeApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/binaryTreeApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/binaryTreeTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/binaryTreeTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/confMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/confMatrix.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/confMatrixShow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/confMatrixShow.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/demoCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/demoCluster.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/demoGenData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/demoGenData.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/distMatrixShow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/distMatrixShow.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/fernsClfApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/fernsClfApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/fernsClfTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/fernsClfTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/fernsInds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/fernsInds.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/fernsRegApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/fernsRegApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/fernsRegTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/fernsRegTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/forestApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/forestApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/forestTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/forestTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/kmeans2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/kmeans2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/meanShift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/meanShift.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/meanShiftIm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/meanShiftIm.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/meanShiftImExplore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/meanShiftImExplore.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/pca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/pca.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/pcaApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/pcaApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/pcaData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/pcaData.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/pcaRandVec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/pcaRandVec.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/pcaVisualize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/pcaVisualize.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/pdist2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/pdist2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/IDX2order.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/IDX2order.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/binaryTreeTrain1.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/fernsInds1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/fernsInds1.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/fernsInds1.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/fernsInds1.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/fernsInds1.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/fernsInds1.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/fernsInds1.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/fernsInds1.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestFindThr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestFindThr.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestFindThr.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestFindThr.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestFindThr.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestFindThr.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestFindThr.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestFindThr.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestInds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestInds.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestInds.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestInds.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestInds.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestInds.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/forestInds.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/forestInds.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/meanShift1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/meanShift1.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/meanShift1.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/meanShift1.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/meanShift1.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/meanShift1.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/meanShift1.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/meanShift1.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/private/meanShiftPost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/private/meanShiftPost.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/rbfComputeBasis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/rbfComputeBasis.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/rbfComputeFtrs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/rbfComputeFtrs.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/rbfDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/rbfDemo.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/softMin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/softMin.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/classify/visualizeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/classify/visualizeData.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfDemoCal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfDemoCal.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfDemoInria.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfDemoInria.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfDetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfDetect.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfModify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfModify.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfReadme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfReadme.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfTest.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/acfTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/acfTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/bbApply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/bbApply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/bbGt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/bbGt.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/bbLabeler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/bbLabeler.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/bbNms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/bbNms.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/AcfCaltech+Detector.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/AcfCaltech+Detector.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/AcfCaltech+Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/AcfCaltech+Log.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/AcfCaltech+Roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/AcfCaltech+Roc.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/AcfInriaDetector.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/AcfInriaDetector.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/AcfInriaLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/AcfInriaLog.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/AcfInriaRoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/AcfInriaRoc.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/LdcfCaltechDetector.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/LdcfCaltechDetector.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/LdcfCaltechLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/LdcfCaltechLog.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/LdcfCaltechRoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/LdcfCaltechRoc.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/LdcfInriaDetector.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/LdcfInriaDetector.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/LdcfInriaLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/LdcfInriaLog.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/models/LdcfInriaRoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/models/LdcfInriaRoc.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/private/acfDetect1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/private/acfDetect1.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/private/acfDetect1.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/private/acfDetect1.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/private/acfDetect1.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/private/acfDetect1.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/detector/private/acfDetect1.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/detector/private/acfDetect1.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/alpha.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/c++.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/c.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/chnsCompute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/chnsCompute.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/chnsPyramid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/chnsPyramid.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/chnsScaling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/chnsScaling.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/convBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/convBox.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/convMax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/convMax.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/convTri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/convTri.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/fhog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/fhog.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/gradient2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/gradient2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/gradientHist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/gradientHist.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/gradientMag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/gradientMag.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/hog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/hog.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/hogDraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/hogDraw.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/imPad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/imPad.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/imResample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/imResample.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/channels/rgbConvert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/channels/rgbConvert.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/adaBoostApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/adaBoostApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/adaBoostTrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/adaBoostTrain.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/binaryTreeApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/binaryTreeApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/binaryTreeTrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/binaryTreeTrain.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/confMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/confMatrix.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/confMatrixShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/confMatrixShow.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/demoCluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/demoCluster.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/demoGenData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/demoGenData.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/distMatrixShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/distMatrixShow.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/fernsClfApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/fernsClfApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/fernsClfTrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/fernsClfTrain.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/fernsInds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/fernsInds.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/fernsRegApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/fernsRegApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/fernsRegTrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/fernsRegTrain.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/forestApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/forestApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/forestTrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/forestTrain.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/kmeans2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/kmeans2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/meanShift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/meanShift.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/meanShiftIm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/meanShiftIm.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/meanShiftImExplore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/meanShiftImExplore.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/pca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/pca.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/pcaApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/pcaApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/pcaRandVec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/pcaRandVec.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/pcaVisualize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/pcaVisualize.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/pdist2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/pdist2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/rbfComputeBasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/rbfComputeBasis.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/rbfComputeFtrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/rbfComputeFtrs.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/rbfDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/rbfDemo.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/softMin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/softMin.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/classify/visualizeData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/classify/visualizeData.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/demoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/demoicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfDemoCal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfDemoCal.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfDemoInria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfDemoInria.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfDetect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfDetect.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfModify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfModify.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfReadme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfReadme.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfTest.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/acfTrain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/acfTrain.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/bbApply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/bbApply.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/bbGt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/bbGt.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/bbLabeler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/bbLabeler.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/bbNms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/bbNms.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/detector/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/detector/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/down.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/favicon.ico -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/FbApply2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/FbApply2d.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/FbCrop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/FbCrop.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/FbMake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/FbMake.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/FbReconstruct2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/FbReconstruct2d.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/FbVisualize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/FbVisualize.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterBinomial1d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterBinomial1d.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterDog2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterDog2d.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterDoog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterDoog.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterGabor1d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterGabor1d.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterGabor2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterGabor2d.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterGauss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterGauss.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterSteerable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterSteerable.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/filterVisualize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/filterVisualize.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/medfilt1m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/medfilt1m.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/filters/modefilt1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/filters/modefilt1.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/fortran.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/history.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/hp.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/assignToBins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/assignToBins.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/clusterMontage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/clusterMontage.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/convnFast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/convnFast.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/filmStrip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/filmStrip.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/gaussSmooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/gaussSmooth.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/histMontage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/histMontage.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/histc2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/histc2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/histcImLoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/histcImLoc.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/histcImWin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/histcImWin.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/im.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/im.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/imMlGauss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/imMlGauss.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/imNormalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/imNormalize.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/imRectRot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/imRectRot.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/imShrink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/imShrink.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/imtransform2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/imtransform2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/imwrite2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/imwrite2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/jitterImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/jitterImage.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/localSum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/localSum.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/makeGif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/makeGif.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/maskCircle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/maskCircle.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/maskEllipse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/maskEllipse.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/maskGaussians.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/maskGaussians.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/maskSphere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/maskSphere.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/montage2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/montage2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/movieToImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/movieToImages.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/nonMaxSupr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/nonMaxSupr.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/nonMaxSuprList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/nonMaxSuprList.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/nonMaxSuprWin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/nonMaxSuprWin.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/normxcorrn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/normxcorrn.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/playMovie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/playMovie.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/textureMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/textureMap.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/xcorrn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/xcorrn.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/images/xeucn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/images/xeucn.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/index.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/left.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/linux.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/m2html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/m2html.css -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/arrayCrop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/arrayCrop.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/arrayToDims.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/arrayToDims.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/c.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/cc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/cc.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/ccc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/ccc.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/cell2array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/cell2array.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/char2img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/char2img.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/checkNumArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/checkNumArgs.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/dijkstra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/dijkstra.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/dirSynch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/dirSynch.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/diskFill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/diskFill.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/dispMatrixIm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/dispMatrixIm.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/fevalArrays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/fevalArrays.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/fevalDistr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/fevalDistr.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/fevalDistrDisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/fevalDistrDisk.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/fevalImages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/fevalImages.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/fevalMats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/fevalMats.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/figureResized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/figureResized.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/gauss2ellipse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/gauss2ellipse.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/getPrmDflt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/getPrmDflt.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/imLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/imLabel.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/ind2sub2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/ind2sub2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/int2str2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/int2str2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/isfield2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/isfield2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/mat2cell2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/mat2cell2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/medianw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/medianw.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/multiDiv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/multiDiv.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/multiTimes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/multiTimes.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/normpdf2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/normpdf2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/num2strs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/num2strs.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/plotEllipse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/plotEllipse.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/plotGaussEllipses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/plotGaussEllipses.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/plotRoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/plotRoc.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/randSample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/randSample.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/randint2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/randint2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/rotationMatrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/rotationMatrix.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/simpleCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/simpleCache.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/spBlkDiag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/spBlkDiag.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/sub2ind2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/sub2ind2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/subsToArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/subsToArray.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/text2.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/ticStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/ticStatus.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/tocStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/tocStatus.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/tpsGetWarp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/tpsGetWarp.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/tpsInterpolate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/tpsInterpolate.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/tpsInterpolateIm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/tpsInterpolateIm.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/tpsRandom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/tpsRandom.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/txt2img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/txt2img.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlab/uniqueColors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlab/uniqueColors.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/matlabicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/matlabicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/mex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/mex.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/new.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/overview.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/right.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/sgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/sgi.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/simulinkicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/simulinkicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/solaris.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/up.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/Contents.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/behaviorAnnotator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/behaviorAnnotator.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/behaviorData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/behaviorData.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/imagesAlign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/imagesAlign.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/imagesAlignSeq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/imagesAlignSeq.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/kernelTracker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/kernelTracker.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/menu.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/opticalFlow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/opticalFlow.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/seqIo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/seqIo.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/seqPlayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/seqPlayer.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/seqReaderPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/seqReaderPlugin.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/videos/seqWriterPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/videos/seqWriterPlugin.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/doc/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/doc/windows.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/bsd.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/apply_homography.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/apply_homography.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfData.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfData.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfDecTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfDecTree.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfDecTreeFwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfDecTreeFwd.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfDecTreeTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfDecTreeTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfEcoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfEcoc.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfEcocCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfEcocCode.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfKnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfKnn.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfKnnDist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfKnnDist.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfKnnFwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfKnnFwd.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfKnnTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfKnnTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfLda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfLda.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfLdaFwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfLdaFwd.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfLdaTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfLdaTrain.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/clfSvm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/clfSvm.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/demoClassify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/demoClassify.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/diffTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/diffTracker.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/filter_gauss_1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/filter_gauss_1D.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/getargs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/getargs.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/imRectLite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/imRectLite.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/imSubsResize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/imSubsResize.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/imrotate2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/imrotate2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/imtranslate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/imtranslate.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/imwrite2split.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/imwrite2split.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/localsum_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/localsum_block.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/makemovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/makemovie.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/mode2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/mode2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/montages2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/montages2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/nfoldxval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/nfoldxval.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/normxcorrn_fg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/normxcorrn_fg.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/pca_apply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/pca_apply.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/pca_apply_large.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/pca_apply_large.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/playmovies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/playmovies.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/randperm2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/randperm2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/deprecated/subsampleMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/deprecated/subsampleMatrix.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/history.txt -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/char.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/char.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/display.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/get.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/parse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/parse.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/private/finish.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/private/finish.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/private/loadtpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/private/loadtpl.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/private/subst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/private/subst.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/set.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/@template/template.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/@template/template.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/Changelog -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/GPL -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/INSTALL -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/LICENSE -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/README -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/TODO -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/m2html.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/m2html.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/mdot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/mdot.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/mwizard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/mwizard.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/mwizard2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/mwizard2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/doxyread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/doxyread.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/doxysearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/doxysearch.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/doxywrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/doxywrite.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/m2htmltoolbarimages.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/m2htmltoolbarimages.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/mexexts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/mexexts.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/mfileparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/mfileparse.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/openfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/openfile.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/searchindex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/searchindex.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/splitcode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/splitcode.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/private/strtok.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/private/strtok.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/Thumbs.db -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/alpha.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/c++.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/c.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/demoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/demoicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/down.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/doxysearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/doxysearch.php -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/fortran.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/graph.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/graph.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/hp.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/left.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/linux.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/m2html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/m2html.css -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/master.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/master.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/matlabicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/matlabicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/mdir.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/mdir.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/mex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/mex.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/mfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/mfile.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/pcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/pcode.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/right.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/search.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/sgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/sgi.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/simulinkicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/simulinkicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/solaris.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/todo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/todo.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/up.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/blue/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/blue/windows.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/alpha.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/brain.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/c++.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/c.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/demoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/demoicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/down.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/doxysearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/doxysearch.php -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/fortran.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/graph.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/graph.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/hp.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/index.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/left.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/linux.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/m2html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/m2html.css -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/master.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/master.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/matlabicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/matlabicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/mdir.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/mdir.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/menu.css -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/mex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/mex.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/mfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/mfile.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/pcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/pcode.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/right.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/search.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/sgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/sgi.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/simulinkicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/simulinkicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/solaris.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/todo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/todo.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/up.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/brain/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/brain/windows.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/alpha.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/c++.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/c.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/down.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/graph.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/graph.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/hp.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/left.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/linux.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/mdir.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/mdir.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/mex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/mex.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/mfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/mfile.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/new.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/right.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/sgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/sgi.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/todo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/todo.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame-piotr/up.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/alpha.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/c++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/c++.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/c.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/demoicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/demoicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/down.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/doxysearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/doxysearch.php -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/fortran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/fortran.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/graph.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/graph.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/hp.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/index.html -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/left.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/linux.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/m2html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/m2html.css -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/master.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/master.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/matlabicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/matlabicon.gif -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/mdir.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/mdir.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/mex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/mex.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/mfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/mfile.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/pcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/pcode.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/right.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/search.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/sgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/sgi.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/solaris.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/todo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/todo.tpl -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/up.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/m2html/templates/frame/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/m2html/templates/frame/windows.png -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/other/compareStructs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/other/compareStructs.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/other/matrix2latex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/other/matrix2latex.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/other/multiprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/other/multiprod.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/other/savefig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/other/savefig.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/toolboxCompile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/toolboxCompile.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/toolboxGenDoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/toolboxGenDoc.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/toolboxHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/toolboxHeader.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/external/toolboxUpdateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/external/toolboxUpdateHeader.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbApply2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbApply2d.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbCrop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbCrop.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbDoG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbDoG.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbGabor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbGabor.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbMake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbMake.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbReconstruct2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbReconstruct2d.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/FbVisualize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/FbVisualize.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterBinomial1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterBinomial1d.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterDog2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterDog2d.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterDoog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterDoog.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterGabor1d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterGabor1d.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterGabor2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterGabor2d.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterGauss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterGauss.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterSteerable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterSteerable.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/filterVisualize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/filterVisualize.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/medfilt1m.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/medfilt1m.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/filters/modefilt1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/filters/modefilt1.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/assignToBins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/assignToBins.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/clusterMontage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/clusterMontage.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/convnFast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/convnFast.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/filmStrip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/filmStrip.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/gaussSmooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/gaussSmooth.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/histMontage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/histMontage.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/histc2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/histc2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/histcImLoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/histcImLoc.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/histcImWin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/histcImWin.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/im.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/im.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/imMlGauss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/imMlGauss.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/imNormalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/imNormalize.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/imRectRot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/imRectRot.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/imShrink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/imShrink.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/images.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/images.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/imtransform2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/imtransform2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/imwrite2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/imwrite2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/jitterImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/jitterImage.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/localSum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/localSum.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/makeGif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/makeGif.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/maskCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/maskCircle.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/maskEllipse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/maskEllipse.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/maskGaussians.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/maskGaussians.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/maskSphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/maskSphere.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/montage2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/montage2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/movieToImages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/movieToImages.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/nonMaxSupr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/nonMaxSupr.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/nonMaxSuprList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/nonMaxSuprList.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/nonMaxSuprWin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/nonMaxSuprWin.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/normxcorrn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/normxcorrn.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/playMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/playMovie.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/assignToBins1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/assignToBins1.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/assignToBins1.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/assignToBins1.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/assignToBins1.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/assignToBins1.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/assignToBins1.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/assignToBins1.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/histc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/histc2c.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/histc2c.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/histc2c.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/histc2c.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/histc2c.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/histc2c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/histc2c.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/imtransform2_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/imtransform2_c.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/imtransform2_c.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/imtransform2_c.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/imtransform2_c.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/imtransform2_c.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/imtransform2_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/imtransform2_c.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_max.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_max.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_max.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_max.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_max.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_max.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_max.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_sum.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_sum.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_sum.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_sum.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_sum.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/private/nlfiltersep_sum.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/private/nlfiltersep_sum.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/textureMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/textureMap.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/xcorrn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/xcorrn.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/images/xeucn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/images/xeucn.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/arrayCrop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/arrayCrop.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/arrayToDims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/arrayToDims.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/c.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/cc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/cc.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/ccc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/ccc.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/cell2array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/cell2array.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/char2img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/char2img.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/checkNumArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/checkNumArgs.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/dijkstra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/dijkstra.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/dirSynch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/dirSynch.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/diskFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/diskFill.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/dispMatrixIm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/dispMatrixIm.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/fevalArrays.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/fevalArrays.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/fevalDistr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/fevalDistr.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/fevalDistrDisk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/fevalDistrDisk.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/fevalImages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/fevalImages.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/fevalMats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/fevalMats.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/figureResized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/figureResized.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/gauss2ellipse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/gauss2ellipse.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/getPrmDflt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/getPrmDflt.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/imLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/imLabel.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/ind2sub2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/ind2sub2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/int2str2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/int2str2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/isfield2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/isfield2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/mat2cell2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/mat2cell2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/medianw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/medianw.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/multiDiv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/multiDiv.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/multiTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/multiTimes.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/normpdf2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/normpdf2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/num2strs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/num2strs.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/plotEllipse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/plotEllipse.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/plotGaussEllipses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/plotGaussEllipses.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/plotRoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/plotRoc.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/char2img_h015.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/char2img_h015.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/char2img_h020.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/char2img_h020.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/char2img_h025.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/char2img_h025.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/char2img_h030.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/char2img_h030.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/char2img_h035.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/char2img_h035.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/char2img_h050.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/char2img_h050.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/dijkstra1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/dijkstra1.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/dijkstra1.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/dijkstra1.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/dijkstra1.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/dijkstra1.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/dijkstra1.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/dijkstra1.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/fibheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/fibheap.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/private/fibheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/private/fibheap.h -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/randSample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/randSample.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/randint2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/randint2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/rotationMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/rotationMatrix.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/simpleCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/simpleCache.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/spBlkDiag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/spBlkDiag.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/sub2ind2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/sub2ind2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/subsToArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/subsToArray.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/text2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/text2.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/ticStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/ticStatus.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/tocStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/tocStatus.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/tpsGetWarp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/tpsGetWarp.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/tpsInterpolate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/tpsInterpolate.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/tpsInterpolateIm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/tpsInterpolateIm.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/tpsRandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/tpsRandom.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/txt2img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/txt2img.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/matlab/uniqueColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/matlab/uniqueColors.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/Contents.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/behaviorAnnotator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/behaviorAnnotator.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/behaviorData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/behaviorData.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/imagesAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/imagesAlign.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/imagesAlignSeq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/imagesAlignSeq.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/kernelTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/kernelTracker.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/opticalFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/opticalFlow.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/opticalFlowTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/opticalFlowTest.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/peds30-seek.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/peds30-seek.mat -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/peds30.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/peds30.seq -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktComputeW_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktComputeW_c.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktComputeW_c.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktComputeW_c.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktComputeW_c.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktComputeW_c.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktComputeW_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktComputeW_c.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.c -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/ktHistcRgb_c.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.cpp -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.mexa64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.mexmaci64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/private/opticalFlowHsMex.mexw64 -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/seqIo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/seqIo.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/seqPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/seqPlayer.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/seqReaderPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/seqReaderPlugin.m -------------------------------------------------------------------------------- /piotr_toolbox/toolbox/videos/seqWriterPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/piotr_toolbox/toolbox/videos/seqWriterPlugin.m -------------------------------------------------------------------------------- /utils/dirfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/dirfun.m -------------------------------------------------------------------------------- /utils/flow-code-matlab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/flow-code-matlab/README.txt -------------------------------------------------------------------------------- /utils/flow-code-matlab/colorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/flow-code-matlab/colorTest.m -------------------------------------------------------------------------------- /utils/flow-code-matlab/computeColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/flow-code-matlab/computeColor.m -------------------------------------------------------------------------------- /utils/flow-code-matlab/flowToColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/flow-code-matlab/flowToColor.m -------------------------------------------------------------------------------- /utils/flow-code-matlab/readFlowFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/flow-code-matlab/readFlowFile.m -------------------------------------------------------------------------------- /utils/flow-code-matlab/writeFlowFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/flow-code-matlab/writeFlowFile.m -------------------------------------------------------------------------------- /utils/imresize_aug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/imresize_aug.m -------------------------------------------------------------------------------- /utils/parfor_progress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhangpro/epicflow/HEAD/utils/parfor_progress.m --------------------------------------------------------------------------------