├── .clang-format ├── .clang-tidy ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── DESCRIPTION ├── LICENSE ├── README.rst ├── appveyor.yml ├── bin ├── acf-format.sh ├── build-android.sh ├── build-appveyor.cmd ├── build-ios.sh ├── build-raspberry-pi.sh ├── build-xcode.sh ├── hunter_env.cmd ├── hunter_env.sh ├── travis_build.sh └── travis_clang_links.sh └── src ├── CMakeLists.txt ├── app ├── CMakeLists.txt ├── acf │ ├── CMakeLists.txt │ ├── GLDetector.cpp │ ├── GLDetector.h │ ├── LaunchScreen.storyboard │ ├── acf.cpp │ ├── mat2cpb.cpp │ └── plist.in ├── cmake │ ├── Config.cmake.in │ ├── Hunter │ │ └── config.cmake │ ├── HunterGate.cmake │ ├── default_options.cmake │ └── pack.cmake ├── common │ ├── CMakeLists.txt │ ├── LazyParallelResource.h │ ├── Line.h │ ├── Logger.cpp │ ├── Logger.h │ ├── ScopeTimeLogger.h │ ├── acf_common.h │ ├── acf_util.h │ ├── cli.h │ ├── cv_cereal.h │ ├── make_unique.h │ ├── string_utils.h │ └── sugar.cmake ├── pipeline │ ├── CMakeLists.txt │ ├── GPUDetectionPipeline.cpp │ ├── GPUDetectionPipeline.h │ ├── VideoCaptureImage.cpp │ ├── VideoCaptureImage.h │ ├── lines.cpp │ ├── lines.h │ ├── pipeline.cpp │ └── plist.in └── pyramid │ ├── CMakeLists.txt │ └── pyramid.cpp ├── lib ├── CMakeLists.txt ├── acf │ ├── acf │ │ ├── ACF.cpp │ │ ├── ACF.h │ │ ├── ACFField.h │ │ ├── ACFIO.cpp │ │ ├── ACFIO.h │ │ ├── ACFIOArchive.h │ │ ├── ACFIOArchiveCereal.cpp │ │ ├── ACFObject.h │ │ ├── GPUACF.cpp │ │ ├── GPUACF.h │ │ ├── MatP.cpp │ │ ├── MatP.h │ │ ├── ObjectDetector.cpp │ │ ├── ObjectDetector.h │ │ ├── acfModify.cpp │ │ ├── acf_common.h │ │ ├── bbNms.cpp │ │ ├── chnsCompute.cpp │ │ ├── chnsPyramid.cpp │ │ ├── convTri.cpp │ │ ├── convert.cpp │ │ ├── convert.h │ │ ├── draw.cpp │ │ ├── draw.h │ │ ├── gpu │ │ │ ├── binomial.cpp │ │ │ ├── binomial.h │ │ │ ├── gradhist.cpp │ │ │ ├── gradhist.h │ │ │ ├── multipass │ │ │ │ ├── triangle_opt_pass.cpp │ │ │ │ ├── triangle_opt_pass.h │ │ │ │ ├── triangle_pass.cpp │ │ │ │ └── triangle_pass.h │ │ │ ├── swizzle2.cpp │ │ │ ├── swizzle2.h │ │ │ ├── triangle.cpp │ │ │ ├── triangle.h │ │ │ ├── triangle_opt.cpp │ │ │ └── triangle_opt.h │ │ ├── gradientHist.cpp │ │ ├── gradientMag.cpp │ │ ├── random.h │ │ ├── rgbConvert.cpp │ │ ├── sugar.cmake │ │ ├── toolbox │ │ │ ├── acfDetect1.cpp │ │ │ ├── chnsTestCpp.cpp │ │ │ ├── convConst.cpp │ │ │ ├── gradientMex.cpp │ │ │ ├── imPadMex.cpp │ │ │ ├── imResampleMex.cpp │ │ │ ├── rgbConvertMex.cpp │ │ │ ├── sse.hpp │ │ │ ├── wrappers.cpp │ │ │ └── wrappers.hpp │ │ ├── transfer.cpp │ │ └── transfer.h │ ├── io │ │ ├── cereal_pba.h │ │ ├── cvmat_cereal.h │ │ └── sugar.cmake │ ├── sugar.cmake │ └── util │ │ ├── IndentingOStreamBuffer.h │ │ ├── acf_math.h │ │ ├── acf_util.h │ │ ├── make_unique.h │ │ ├── ordered.h │ │ ├── string_hash.h │ │ └── sugar.cmake └── sugar.cmake ├── sugar.cmake └── test ├── CMakeLists.txt ├── test-acf-api.cpp ├── test-acf-unit.cpp └── test-acf.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/acf-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/acf-format.sh -------------------------------------------------------------------------------- /bin/build-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/build-android.sh -------------------------------------------------------------------------------- /bin/build-appveyor.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/build-appveyor.cmd -------------------------------------------------------------------------------- /bin/build-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/build-ios.sh -------------------------------------------------------------------------------- /bin/build-raspberry-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/build-raspberry-pi.sh -------------------------------------------------------------------------------- /bin/build-xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/build-xcode.sh -------------------------------------------------------------------------------- /bin/hunter_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/hunter_env.cmd -------------------------------------------------------------------------------- /bin/hunter_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/hunter_env.sh -------------------------------------------------------------------------------- /bin/travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/travis_build.sh -------------------------------------------------------------------------------- /bin/travis_clang_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/bin/travis_clang_links.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/acf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/acf/GLDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/GLDetector.cpp -------------------------------------------------------------------------------- /src/app/acf/GLDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/GLDetector.h -------------------------------------------------------------------------------- /src/app/acf/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/app/acf/acf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/acf.cpp -------------------------------------------------------------------------------- /src/app/acf/mat2cpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/mat2cpb.cpp -------------------------------------------------------------------------------- /src/app/acf/plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/acf/plist.in -------------------------------------------------------------------------------- /src/app/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/cmake/Config.cmake.in -------------------------------------------------------------------------------- /src/app/cmake/Hunter/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/cmake/Hunter/config.cmake -------------------------------------------------------------------------------- /src/app/cmake/HunterGate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/cmake/HunterGate.cmake -------------------------------------------------------------------------------- /src/app/cmake/default_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/cmake/default_options.cmake -------------------------------------------------------------------------------- /src/app/cmake/pack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/cmake/pack.cmake -------------------------------------------------------------------------------- /src/app/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/common/LazyParallelResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/LazyParallelResource.h -------------------------------------------------------------------------------- /src/app/common/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/Line.h -------------------------------------------------------------------------------- /src/app/common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/Logger.cpp -------------------------------------------------------------------------------- /src/app/common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/Logger.h -------------------------------------------------------------------------------- /src/app/common/ScopeTimeLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/ScopeTimeLogger.h -------------------------------------------------------------------------------- /src/app/common/acf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/acf_common.h -------------------------------------------------------------------------------- /src/app/common/acf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/acf_util.h -------------------------------------------------------------------------------- /src/app/common/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/cli.h -------------------------------------------------------------------------------- /src/app/common/cv_cereal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/cv_cereal.h -------------------------------------------------------------------------------- /src/app/common/make_unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/make_unique.h -------------------------------------------------------------------------------- /src/app/common/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/string_utils.h -------------------------------------------------------------------------------- /src/app/common/sugar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/common/sugar.cmake -------------------------------------------------------------------------------- /src/app/pipeline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/pipeline/GPUDetectionPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/GPUDetectionPipeline.cpp -------------------------------------------------------------------------------- /src/app/pipeline/GPUDetectionPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/GPUDetectionPipeline.h -------------------------------------------------------------------------------- /src/app/pipeline/VideoCaptureImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/VideoCaptureImage.cpp -------------------------------------------------------------------------------- /src/app/pipeline/VideoCaptureImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/VideoCaptureImage.h -------------------------------------------------------------------------------- /src/app/pipeline/lines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/lines.cpp -------------------------------------------------------------------------------- /src/app/pipeline/lines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/lines.h -------------------------------------------------------------------------------- /src/app/pipeline/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/pipeline.cpp -------------------------------------------------------------------------------- /src/app/pipeline/plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pipeline/plist.in -------------------------------------------------------------------------------- /src/app/pyramid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pyramid/CMakeLists.txt -------------------------------------------------------------------------------- /src/app/pyramid/pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/app/pyramid/pyramid.cpp -------------------------------------------------------------------------------- /src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/acf/acf/ACF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACF.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/ACF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACF.h -------------------------------------------------------------------------------- /src/lib/acf/acf/ACFField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACFField.h -------------------------------------------------------------------------------- /src/lib/acf/acf/ACFIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACFIO.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/ACFIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACFIO.h -------------------------------------------------------------------------------- /src/lib/acf/acf/ACFIOArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACFIOArchive.h -------------------------------------------------------------------------------- /src/lib/acf/acf/ACFIOArchiveCereal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACFIOArchiveCereal.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/ACFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ACFObject.h -------------------------------------------------------------------------------- /src/lib/acf/acf/GPUACF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/GPUACF.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/GPUACF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/GPUACF.h -------------------------------------------------------------------------------- /src/lib/acf/acf/MatP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/MatP.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/MatP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/MatP.h -------------------------------------------------------------------------------- /src/lib/acf/acf/ObjectDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ObjectDetector.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/ObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/ObjectDetector.h -------------------------------------------------------------------------------- /src/lib/acf/acf/acfModify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/acfModify.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/acf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/acf_common.h -------------------------------------------------------------------------------- /src/lib/acf/acf/bbNms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/bbNms.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/chnsCompute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/chnsCompute.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/chnsPyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/chnsPyramid.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/convTri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/convTri.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/convert.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/convert.h -------------------------------------------------------------------------------- /src/lib/acf/acf/draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/draw.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/draw.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/binomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/binomial.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/binomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/binomial.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/gradhist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/gradhist.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/gradhist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/gradhist.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/multipass/triangle_opt_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/multipass/triangle_opt_pass.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/multipass/triangle_opt_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/multipass/triangle_opt_pass.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/multipass/triangle_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/multipass/triangle_pass.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/multipass/triangle_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/multipass/triangle_pass.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/swizzle2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/swizzle2.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/swizzle2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/swizzle2.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/triangle.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/triangle.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/triangle_opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/triangle_opt.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gpu/triangle_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gpu/triangle_opt.h -------------------------------------------------------------------------------- /src/lib/acf/acf/gradientHist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gradientHist.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/gradientMag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/gradientMag.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/random.h -------------------------------------------------------------------------------- /src/lib/acf/acf/rgbConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/rgbConvert.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/sugar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/sugar.cmake -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/acfDetect1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/acfDetect1.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/chnsTestCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/chnsTestCpp.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/convConst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/convConst.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/gradientMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/gradientMex.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/imPadMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/imPadMex.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/imResampleMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/imResampleMex.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/rgbConvertMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/rgbConvertMex.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/sse.hpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/wrappers.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/toolbox/wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/toolbox/wrappers.hpp -------------------------------------------------------------------------------- /src/lib/acf/acf/transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/transfer.cpp -------------------------------------------------------------------------------- /src/lib/acf/acf/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/acf/transfer.h -------------------------------------------------------------------------------- /src/lib/acf/io/cereal_pba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/io/cereal_pba.h -------------------------------------------------------------------------------- /src/lib/acf/io/cvmat_cereal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/io/cvmat_cereal.h -------------------------------------------------------------------------------- /src/lib/acf/io/sugar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/io/sugar.cmake -------------------------------------------------------------------------------- /src/lib/acf/sugar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/sugar.cmake -------------------------------------------------------------------------------- /src/lib/acf/util/IndentingOStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/IndentingOStreamBuffer.h -------------------------------------------------------------------------------- /src/lib/acf/util/acf_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/acf_math.h -------------------------------------------------------------------------------- /src/lib/acf/util/acf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/acf_util.h -------------------------------------------------------------------------------- /src/lib/acf/util/make_unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/make_unique.h -------------------------------------------------------------------------------- /src/lib/acf/util/ordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/ordered.h -------------------------------------------------------------------------------- /src/lib/acf/util/string_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/string_hash.h -------------------------------------------------------------------------------- /src/lib/acf/util/sugar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/lib/acf/util/sugar.cmake -------------------------------------------------------------------------------- /src/lib/sugar.cmake: -------------------------------------------------------------------------------- 1 | sugar_include(acf) 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/sugar.cmake: -------------------------------------------------------------------------------- 1 | sugar_include(lib) 2 | -------------------------------------------------------------------------------- /src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/test-acf-api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/test/test-acf-api.cpp -------------------------------------------------------------------------------- /src/test/test-acf-unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/test/test-acf-unit.cpp -------------------------------------------------------------------------------- /src/test/test-acf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elucideye/acf/HEAD/src/test/test-acf.cpp --------------------------------------------------------------------------------