├── Gradient Response Maps for Real-TimeDetection of Textureless Objects.pdf ├── README.md ├── Transforms in shape-based matching.pdf ├── match.png └── shape_based_matching-subpixel ├── shape_based_matching-subpixel.sln ├── shape_based_matching-subpixel ├── CMakeLists.txt ├── Gradient Response Maps for Real-TimeDetection of Textureless Objects.pdf ├── LICENSE ├── MIPP │ ├── math │ │ ├── avx512_mathfun.h │ │ ├── avx512_mathfun.hxx │ │ ├── avx_mathfun.h │ │ ├── avx_mathfun.hxx │ │ ├── neon_mathfun.h │ │ ├── neon_mathfun.hxx │ │ ├── sse_mathfun.h │ │ └── sse_mathfun.hxx │ ├── mipp.h │ ├── mipp_impl_AVX.hxx │ ├── mipp_impl_AVX512.hxx │ ├── mipp_impl_NEON.hxx │ ├── mipp_impl_SSE.hxx │ ├── mipp_object.hxx │ ├── mipp_scalar_op.h │ └── mipp_scalar_op.hxx ├── README.md ├── cuda_icp │ ├── CMakeLists.txt │ ├── geometry.h │ ├── icp.cpp │ ├── icp.cu │ ├── icp.h │ └── scene │ │ ├── common.cpp │ │ ├── common.cu │ │ ├── common.h │ │ └── edge_scene │ │ ├── edge_scene.cpp │ │ ├── edge_scene.cu │ │ └── edge_scene.h ├── demo.ini ├── detector.cpp ├── detector.h ├── line2Dup.cpp ├── line2Dup.h ├── line2Dup.hpp ├── linemod.cpp ├── linemod.hpp ├── match.cpp ├── match.h ├── match.png ├── openCV410.props ├── openCV410d.props ├── pch.cpp ├── pch.h ├── shape_based_matching-subpixel.cpp ├── shape_based_matching-subpixel.vcxproj ├── shape_based_matching-subpixel.vcxproj.filters ├── shape_based_matching-subpixel.vcxproj.user ├── test.cpp ├── test │ ├── case0 │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.png │ │ ├── circle_info.yaml │ │ ├── circle_templ.yaml │ │ ├── features │ │ │ ├── nms_templ.png │ │ │ └── no_nms_templ.png │ │ ├── result │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── templ │ │ │ └── circle.png │ ├── case1 │ │ ├── test.tif │ │ ├── test_info.yaml │ │ ├── test_templ.yaml │ │ └── train.tif │ ├── case2 │ │ ├── result │ │ │ ├── result.png │ │ │ ├── templ.png │ │ │ └── together.png │ │ ├── test.png │ │ ├── test_info.yaml │ │ ├── test_templ.yaml │ │ └── train.png │ └── ori_16bit_experiment │ │ ├── LUT16.txt │ │ ├── LUT_gen.cpp │ │ └── line2Dup_16bit_ori.cpp └── x64 │ └── Debug │ └── vc141.idb └── x64 └── Debug ├── shape_based_matching-subpixel.exe ├── shape_based_matching-subpixel.ilk └── shape_based_matching-subpixel.pdb /Gradient Response Maps for Real-TimeDetection of Textureless Objects.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/Gradient Response Maps for Real-TimeDetection of Textureless Objects.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/README.md -------------------------------------------------------------------------------- /Transforms in shape-based matching.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/Transforms in shape-based matching.pdf -------------------------------------------------------------------------------- /match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/match.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel.sln -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/CMakeLists.txt -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/Gradient Response Maps for Real-TimeDetection of Textureless Objects.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/Gradient Response Maps for Real-TimeDetection of Textureless Objects.pdf -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/LICENSE -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx512_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx512_mathfun.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx512_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx512_mathfun.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx_mathfun.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/avx_mathfun.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/neon_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/neon_mathfun.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/neon_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/neon_mathfun.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/sse_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/sse_mathfun.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/sse_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/math/sse_mathfun.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_AVX.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_AVX.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_AVX512.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_AVX512.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_NEON.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_NEON.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_SSE.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_impl_SSE.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_object.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_object.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_scalar_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_scalar_op.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_scalar_op.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/MIPP/mipp_scalar_op.hxx -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/README.md -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/CMakeLists.txt -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/geometry.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/icp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/icp.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/icp.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/icp.cu -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/icp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/icp.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/common.cpp: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/common.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/common.cu -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/common.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/edge_scene/edge_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/edge_scene/edge_scene.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/edge_scene/edge_scene.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/edge_scene/edge_scene.cu -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/edge_scene/edge_scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/cuda_icp/scene/edge_scene/edge_scene.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/demo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/demo.ini -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/detector.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/detector.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/line2Dup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/line2Dup.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/line2Dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/line2Dup.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/line2Dup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/line2Dup.hpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/linemod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/linemod.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/linemod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/linemod.hpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/match.cpp: -------------------------------------------------------------------------------- 1 | #include "match.h" -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/match.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/match.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/openCV410.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/openCV410.props -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/openCV410d.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/openCV410d.props -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/pch.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/pch.h -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.vcxproj -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.vcxproj.filters -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/shape_based_matching-subpixel.vcxproj.user -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/1.jpg -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/2.jpg -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/3.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/4.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/circle_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/circle_info.yaml -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/circle_templ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/circle_templ.yaml -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/features/nms_templ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/features/nms_templ.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/features/no_nms_templ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/features/no_nms_templ.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/result/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/result/1.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/result/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/result/2.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/result/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/result/3.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/templ/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case0/templ/circle.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/test.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/test.tif -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/test_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/test_info.yaml -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/test_templ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/test_templ.yaml -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/train.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case1/train.tif -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/result/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/result/result.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/result/templ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/result/templ.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/result/together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/result/together.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/test.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/test_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/test_info.yaml -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/test_templ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/test_templ.yaml -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/case2/train.png -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/ori_16bit_experiment/LUT16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/ori_16bit_experiment/LUT16.txt -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/ori_16bit_experiment/LUT_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/ori_16bit_experiment/LUT_gen.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/test/ori_16bit_experiment/line2Dup_16bit_ori.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/test/ori_16bit_experiment/line2Dup_16bit_ori.cpp -------------------------------------------------------------------------------- /shape_based_matching-subpixel/shape_based_matching-subpixel/x64/Debug/vc141.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/shape_based_matching-subpixel/x64/Debug/vc141.idb -------------------------------------------------------------------------------- /shape_based_matching-subpixel/x64/Debug/shape_based_matching-subpixel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/x64/Debug/shape_based_matching-subpixel.exe -------------------------------------------------------------------------------- /shape_based_matching-subpixel/x64/Debug/shape_based_matching-subpixel.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/x64/Debug/shape_based_matching-subpixel.ilk -------------------------------------------------------------------------------- /shape_based_matching-subpixel/x64/Debug/shape_based_matching-subpixel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxiaHuang/shape_based_matching_subpixel/HEAD/shape_based_matching-subpixel/x64/Debug/shape_based_matching-subpixel.pdb --------------------------------------------------------------------------------