├── Itspoint.m ├── Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf ├── README.md ├── TestLMDll ├── Debug │ ├── LineMatcher.dll │ ├── TestLMDll.exe │ ├── TestLMDll.ilk │ ├── TestLMDll.pdb │ ├── TestLMDll.suo │ ├── opencv_calib3d220.dll │ └── opencv_calib3d220d.dll ├── README ├── Release │ ├── LineMatcher.dll │ ├── TestLMDll.exe │ ├── TestLMDll.pdb │ ├── TestLMDll.suo │ ├── opencv_calib3d220.dll │ ├── opencv_core220.dll │ ├── opencv_features2d220.dll │ ├── opencv_flann220.dll │ ├── opencv_highgui220.dll │ ├── opencv_imgproc220.dll │ ├── test.exe │ └── test.pdb ├── TestLMDll.sdf ├── TestLMDll.sln ├── TestLMDll.suo └── TestLMDll │ ├── Debug │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── TestLMDll.exe.embed.manifest │ ├── TestLMDll.exe.embed.manifest.res │ ├── TestLMDll.exe.intermediate.manifest │ ├── TestLMDll.lastbuildstate │ ├── TestLMDll_manifest.rc │ ├── cl.command.1.tlog │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link.2928-cvtres.read.1.tlog │ ├── link.2928-cvtres.write.1.tlog │ ├── link.2928.read.1.tlog │ ├── link.2928.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── lsd.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ ├── rc.write.1.tlog │ ├── vc100.idb │ └── vc100.pdb │ ├── LineMatcher.h │ ├── LineMatcher.lib │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── TestLMDll.Build.CppClean.log │ ├── TestLMDll.exe.intermediate.manifest │ ├── TestLMDll.lastbuildstate │ ├── TestLMDll.log │ ├── TestLMDll.vcxprojResolveAssemblyReference.cache │ ├── TestLMDll.write.1.tlog │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── lsd.obj │ ├── main.obj │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.read.2.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb │ ├── TestLMDll.vcxproj │ ├── TestLMDll.vcxproj.filters │ ├── TestLMDll.vcxproj.user │ ├── lsd.c │ ├── lsd.h │ └── main.cpp ├── addpointsnearby.m ├── charanums5.m ├── crossproduct.m ├── distline.p ├── getHpoints1L.m ├── getgoodpair.m ├── getpoints.m ├── imgs ├── 1_A.jpg └── 1_B.jpg ├── intspoints.m ├── linegradient.m ├── linematch.m ├── paras.m ├── projline.m ├── pts&lines ├── 1ABpoint.txt ├── 1Aline.txt └── 1Bline.txt └── sameside.m /Itspoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/Itspoint.m -------------------------------------------------------------------------------- /Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/README.md -------------------------------------------------------------------------------- /TestLMDll/Debug/LineMatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/LineMatcher.dll -------------------------------------------------------------------------------- /TestLMDll/Debug/TestLMDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/TestLMDll.exe -------------------------------------------------------------------------------- /TestLMDll/Debug/TestLMDll.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/TestLMDll.ilk -------------------------------------------------------------------------------- /TestLMDll/Debug/TestLMDll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/TestLMDll.pdb -------------------------------------------------------------------------------- /TestLMDll/Debug/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/TestLMDll.suo -------------------------------------------------------------------------------- /TestLMDll/Debug/opencv_calib3d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/opencv_calib3d220.dll -------------------------------------------------------------------------------- /TestLMDll/Debug/opencv_calib3d220d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Debug/opencv_calib3d220d.dll -------------------------------------------------------------------------------- /TestLMDll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/README -------------------------------------------------------------------------------- /TestLMDll/Release/LineMatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/LineMatcher.dll -------------------------------------------------------------------------------- /TestLMDll/Release/TestLMDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/TestLMDll.exe -------------------------------------------------------------------------------- /TestLMDll/Release/TestLMDll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/TestLMDll.pdb -------------------------------------------------------------------------------- /TestLMDll/Release/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/TestLMDll.suo -------------------------------------------------------------------------------- /TestLMDll/Release/opencv_calib3d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/opencv_calib3d220.dll -------------------------------------------------------------------------------- /TestLMDll/Release/opencv_core220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/opencv_core220.dll -------------------------------------------------------------------------------- /TestLMDll/Release/opencv_features2d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/opencv_features2d220.dll -------------------------------------------------------------------------------- /TestLMDll/Release/opencv_flann220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/opencv_flann220.dll -------------------------------------------------------------------------------- /TestLMDll/Release/opencv_highgui220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/opencv_highgui220.dll -------------------------------------------------------------------------------- /TestLMDll/Release/opencv_imgproc220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/opencv_imgproc220.dll -------------------------------------------------------------------------------- /TestLMDll/Release/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/test.exe -------------------------------------------------------------------------------- /TestLMDll/Release/test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/Release/test.pdb -------------------------------------------------------------------------------- /TestLMDll/TestLMDll.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll.sdf -------------------------------------------------------------------------------- /TestLMDll/TestLMDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll.sln -------------------------------------------------------------------------------- /TestLMDll/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll.suo -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest.res -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/TestLMDll.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/TestLMDll.exe.intermediate.manifest -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/TestLMDll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/TestLMDll.lastbuildstate -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/TestLMDll_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/TestLMDll_manifest.rc -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.2928-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.2928-cvtres.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.2928-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.2928-cvtres.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.2928.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.2928.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.2928.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.2928.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/lsd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/lsd.obj -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/main.obj -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/vc100.idb -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Debug/vc100.pdb -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/LineMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/LineMatcher.h -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/LineMatcher.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/LineMatcher.lib -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/TestLMDll.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/TestLMDll.Build.CppClean.log -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/TestLMDll.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/TestLMDll.exe.intermediate.manifest -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/TestLMDll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/TestLMDll.lastbuildstate -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/TestLMDll.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/TestLMDll.log -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/TestLMDll.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/TestLMDll.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/TestLMDll.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/link.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/link.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/link.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/lsd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/lsd.obj -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/main.obj -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/mt.read.2.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/mt.read.2.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/Release/vc100.pdb -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/TestLMDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/TestLMDll.vcxproj -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/TestLMDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/TestLMDll.vcxproj.filters -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/TestLMDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/TestLMDll.vcxproj.user -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/lsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/lsd.c -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/lsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/lsd.h -------------------------------------------------------------------------------- /TestLMDll/TestLMDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/TestLMDll/TestLMDll/main.cpp -------------------------------------------------------------------------------- /addpointsnearby.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/addpointsnearby.m -------------------------------------------------------------------------------- /charanums5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/charanums5.m -------------------------------------------------------------------------------- /crossproduct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/crossproduct.m -------------------------------------------------------------------------------- /distline.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/distline.p -------------------------------------------------------------------------------- /getHpoints1L.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/getHpoints1L.m -------------------------------------------------------------------------------- /getgoodpair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/getgoodpair.m -------------------------------------------------------------------------------- /getpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/getpoints.m -------------------------------------------------------------------------------- /imgs/1_A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/imgs/1_A.jpg -------------------------------------------------------------------------------- /imgs/1_B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/imgs/1_B.jpg -------------------------------------------------------------------------------- /intspoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/intspoints.m -------------------------------------------------------------------------------- /linegradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/linegradient.m -------------------------------------------------------------------------------- /linematch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/linematch.m -------------------------------------------------------------------------------- /paras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/paras.m -------------------------------------------------------------------------------- /projline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/projline.m -------------------------------------------------------------------------------- /pts&lines/1ABpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/pts&lines/1ABpoint.txt -------------------------------------------------------------------------------- /pts&lines/1Aline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/pts&lines/1Aline.txt -------------------------------------------------------------------------------- /pts&lines/1Bline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/pts&lines/1Bline.txt -------------------------------------------------------------------------------- /sameside.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlut-dimt/LineMatching/HEAD/sameside.m --------------------------------------------------------------------------------