├── MultiImage ├── .gitattributes ├── LICENSE ├── LSD_matlab │ ├── CMakeLists.txt │ ├── lsd.cpp │ ├── lsd.mexw64 │ ├── lsd2.m │ ├── lsd2_example.m │ ├── lsd_example.m │ ├── lsd_image.cpp │ ├── lsd_image.mexw64 │ ├── opencv_core247.dll │ ├── opencv_highgui247.dll │ └── opencv_imgproc247.dll ├── LineMatching │ ├── 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 │ ├── intspoints.m │ ├── linegradient.m │ ├── linematch.m │ ├── multiLineMatch.m │ ├── paras.m │ ├── projline.m │ └── sameside.m ├── bundleAdjustmentRefofLine.m ├── calcDist.m ├── calcHomo.m ├── calcHomoPointLine.m ├── calcSlope.m ├── ceres.dll ├── ceresPointLineofLengthRef.cpp ├── ceresPointLineofLengthRef.mexw64 ├── energyLineSegment.m ├── energyLineU.m ├── energyLineV.m ├── energyPointLineAlign.m ├── generateUVsamples.m ├── getLocation.cpp ├── getLocation.mexw64 ├── imageBlending.m ├── linesDelete.m ├── linesDetect.m ├── linesFindLocation.m ├── main.m ├── meshGridAlign.m ├── mexCeresCPP.m ├── modelspecific │ ├── hnormalise.m │ ├── homography_degen.m │ ├── homography_fit.m │ ├── homography_res.m │ ├── iscolinear.m │ ├── normalise2dpts.m │ ├── vgg_H_from_x_lin.m │ ├── vgg_condition_2d.m │ ├── vgg_conditioner_from_pts.m │ └── vgg_get_nonhomg.m ├── multigs │ ├── computeIntersection.c │ ├── computeIntersection.mexa64 │ ├── computeIntersection.mexmaci64 │ ├── computeIntersection.mexw64 │ └── multigsSampling.m ├── pointlineMatch.m ├── refineLine.m └── texture_mapping │ ├── compile_mex.m │ ├── meshmap_warp2homo.m │ ├── texture_mapping_ltl.cpp │ └── texture_mapping_ltl.mexw64 ├── README.md └── TwoImage ├── .gitattributes ├── Images ├── 0 │ ├── 0_l.jpg │ └── 0_r.jpg ├── 1 │ ├── 1_l.jpg │ └── 1_r.jpg ├── 2 │ ├── 2_l.jpg │ └── 2_r.jpg ├── 3 │ ├── 3_l.jpg │ └── 3_r.jpg ├── 4 │ ├── 4_l.jpg │ └── 4_r.jpg ├── 5 │ ├── 5_l.jpg │ └── 5_r.jpg ├── 6 │ ├── 6_l.jpg │ └── 6_r.jpg ├── 7 │ ├── 7_l.jpg │ └── 7_r.jpg ├── 8 │ ├── 8_l.jpg │ └── 8_r.jpg ├── 9 │ ├── 9_l.jpg │ └── 9_r.jpg ├── 10 │ ├── 10_l.jpg │ └── 10_r.jpg ├── 11 │ ├── 11_l.jpg │ └── 11_r.jpg ├── 12 │ ├── 12_l.jpg │ └── 12_r.jpg ├── 13 │ ├── 13_l.jpg │ └── 13_r.jpg ├── 14 │ ├── 14_l.jpg │ └── 14_r.jpg ├── 15 │ ├── 15_l.jpg │ └── 15_r.jpg ├── 16 │ ├── 16_l.jpg │ └── 16_r.jpg ├── 17 │ ├── 17_l.jpg │ └── 17_r.jpg ├── 18 │ ├── 18_l.jpg │ └── 18_r.jpg ├── 19 │ ├── 19_l.jpg │ └── 19_r.jpg ├── 20 │ ├── 20_l.jpg │ └── 20_r.jpg ├── 21 │ ├── 21_l.jpg │ └── 21_r.jpg ├── 22 │ ├── 22_l.jpg │ └── 22_r.jpg ├── 23 │ ├── 23_l.jpg │ └── 23_r.jpg ├── 24 │ ├── 24_l.jpg │ └── 24_r.jpg ├── 25 │ ├── 25_l.jpg │ └── 25_r.jpg ├── 26 │ ├── 26_l.jpg │ └── 26_r.jpg ├── 27 │ ├── 27_l.jpg │ └── 27_r.jpg ├── 28 │ ├── 28_l.jpg │ └── 28_r.jpg ├── 29 │ ├── 29_l.jpg │ └── 29_r.jpg ├── 30 │ ├── 30_l.jpg │ └── 30_r.jpg ├── 31 │ ├── 31_l.jpg │ └── 31_r.jpg ├── 32 │ ├── 32_l.jpg │ └── 32_r.jpg ├── 33 │ ├── 33_l.jpg │ └── 33_r.jpg ├── 34 │ ├── 34_l.jpg │ └── 34_r.jpg ├── 35 │ ├── 35_l.jpg │ └── 35_r.jpg ├── 36 │ ├── 36_l.jpg │ └── 36_r.jpg ├── 37 │ ├── 37_l.jpg │ └── 37_r.jpg ├── 38 │ ├── 38_l.jpg │ └── 38_r.jpg ├── 39 │ ├── 39_l.jpg │ └── 39_r.jpg ├── 40 │ ├── 40_l.jpg │ └── 40_r.jpg ├── 41 │ ├── 41_l.jpg │ └── 41_r.jpg └── 42 │ ├── 42_l.jpg │ └── 42_r.jpg ├── LICENSE ├── LSD_matlab ├── CMakeLists.txt ├── lsd.cpp ├── lsd.mexw64 ├── lsd2.m ├── lsd2_example.m ├── lsd_example.m ├── lsd_image.cpp ├── lsd_image.mexw64 ├── opencv_core247.dll ├── opencv_highgui247.dll └── opencv_imgproc247.dll ├── LineMatching ├── 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 ├── intspoints.m ├── linegradient.m ├── linematch.m ├── paras.m ├── projline.m ├── sameside.m └── twoLineMatch.m ├── addNeedPaths.m ├── calcDist.m ├── calcHomo.m ├── calcHomoPointLine.m ├── calcSlope.m ├── energyAlign.m ├── energyLineAlign.m ├── energyLineSegment.m ├── energyLineU.m ├── energyLineV.m ├── generateUV.m ├── imageBlending.m ├── linesDelete.m ├── linesDetect.m ├── main.m ├── meshGridAlign.m ├── modelspecific ├── hnormalise.m ├── homography_degen.m ├── homography_fit.m ├── homography_res.m ├── iscolinear.m ├── normalise2dpts.m ├── vgg_H_from_x_lin.m ├── vgg_condition_2d.m ├── vgg_conditioner_from_pts.m └── vgg_get_nonhomg.m ├── multiSample_APAP.m ├── multigs ├── computeIntersection.c ├── computeIntersection.mexa64 ├── computeIntersection.mexmaci64 ├── computeIntersection.mexw64 └── multigsSampling.m ├── refineLine.m ├── siftMatch.m └── texture_mapping ├── compile_mex.m ├── meshmap_warp2homo.m ├── texture_mapping_ltl.cpp └── texture_mapping_ltl.mexw64 /MultiImage/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/.gitattributes -------------------------------------------------------------------------------- /MultiImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LICENSE -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/CMakeLists.txt -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd.cpp -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd.mexw64 -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd2.m -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd2_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd2_example.m -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd_example.m -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd_image.cpp -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/lsd_image.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/lsd_image.mexw64 -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/opencv_core247.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/opencv_core247.dll -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/opencv_highgui247.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/opencv_highgui247.dll -------------------------------------------------------------------------------- /MultiImage/LSD_matlab/opencv_imgproc247.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LSD_matlab/opencv_imgproc247.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/Itspoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/Itspoint.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf -------------------------------------------------------------------------------- /MultiImage/LineMatching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/README.md -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/LineMatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/LineMatcher.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.exe -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.ilk -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.pdb -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/TestLMDll.suo -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/opencv_calib3d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/opencv_calib3d220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Debug/opencv_calib3d220d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Debug/opencv_calib3d220d.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/README -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/LineMatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/LineMatcher.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/TestLMDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/TestLMDll.exe -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/TestLMDll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/TestLMDll.pdb -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/TestLMDll.suo -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/opencv_calib3d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/opencv_calib3d220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/opencv_core220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/opencv_core220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/opencv_features2d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/opencv_features2d220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/opencv_flann220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/opencv_flann220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/opencv_highgui220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/opencv_highgui220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/opencv_imgproc220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/opencv_imgproc220.dll -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/test.exe -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/Release/test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/Release/test.pdb -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll.sdf -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll.sln -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll.suo -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest.res -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.intermediate.manifest -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.lastbuildstate -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll_manifest.rc -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/lsd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/lsd.obj -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/main.obj -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.idb -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.pdb -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.h -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.lib -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.Build.CppClean.log -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.exe.intermediate.manifest -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.lastbuildstate -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.log -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/link.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/link.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/link.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/lsd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/lsd.obj -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/main.obj -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.2.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.2.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/Release/vc100.pdb -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.filters -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.user -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/lsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/lsd.c -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/lsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/lsd.h -------------------------------------------------------------------------------- /MultiImage/LineMatching/TestLMDll/TestLMDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/TestLMDll/TestLMDll/main.cpp -------------------------------------------------------------------------------- /MultiImage/LineMatching/addpointsnearby.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/addpointsnearby.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/charanums5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/charanums5.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/crossproduct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/crossproduct.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/distline.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/distline.p -------------------------------------------------------------------------------- /MultiImage/LineMatching/getHpoints1L.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/getHpoints1L.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/getgoodpair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/getgoodpair.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/getpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/getpoints.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/intspoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/intspoints.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/linegradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/linegradient.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/linematch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/linematch.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/multiLineMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/multiLineMatch.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/paras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/paras.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/projline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/projline.m -------------------------------------------------------------------------------- /MultiImage/LineMatching/sameside.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/LineMatching/sameside.m -------------------------------------------------------------------------------- /MultiImage/bundleAdjustmentRefofLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/bundleAdjustmentRefofLine.m -------------------------------------------------------------------------------- /MultiImage/calcDist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/calcDist.m -------------------------------------------------------------------------------- /MultiImage/calcHomo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/calcHomo.m -------------------------------------------------------------------------------- /MultiImage/calcHomoPointLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/calcHomoPointLine.m -------------------------------------------------------------------------------- /MultiImage/calcSlope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/calcSlope.m -------------------------------------------------------------------------------- /MultiImage/ceres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/ceres.dll -------------------------------------------------------------------------------- /MultiImage/ceresPointLineofLengthRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/ceresPointLineofLengthRef.cpp -------------------------------------------------------------------------------- /MultiImage/ceresPointLineofLengthRef.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/ceresPointLineofLengthRef.mexw64 -------------------------------------------------------------------------------- /MultiImage/energyLineSegment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/energyLineSegment.m -------------------------------------------------------------------------------- /MultiImage/energyLineU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/energyLineU.m -------------------------------------------------------------------------------- /MultiImage/energyLineV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/energyLineV.m -------------------------------------------------------------------------------- /MultiImage/energyPointLineAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/energyPointLineAlign.m -------------------------------------------------------------------------------- /MultiImage/generateUVsamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/generateUVsamples.m -------------------------------------------------------------------------------- /MultiImage/getLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/getLocation.cpp -------------------------------------------------------------------------------- /MultiImage/getLocation.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/getLocation.mexw64 -------------------------------------------------------------------------------- /MultiImage/imageBlending.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/imageBlending.m -------------------------------------------------------------------------------- /MultiImage/linesDelete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/linesDelete.m -------------------------------------------------------------------------------- /MultiImage/linesDetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/linesDetect.m -------------------------------------------------------------------------------- /MultiImage/linesFindLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/linesFindLocation.m -------------------------------------------------------------------------------- /MultiImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/main.m -------------------------------------------------------------------------------- /MultiImage/meshGridAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/meshGridAlign.m -------------------------------------------------------------------------------- /MultiImage/mexCeresCPP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/mexCeresCPP.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/hnormalise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/hnormalise.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/homography_degen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/homography_degen.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/homography_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/homography_fit.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/homography_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/homography_res.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/iscolinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/iscolinear.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/normalise2dpts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/normalise2dpts.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/vgg_H_from_x_lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/vgg_H_from_x_lin.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/vgg_condition_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/vgg_condition_2d.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/vgg_conditioner_from_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/vgg_conditioner_from_pts.m -------------------------------------------------------------------------------- /MultiImage/modelspecific/vgg_get_nonhomg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/modelspecific/vgg_get_nonhomg.m -------------------------------------------------------------------------------- /MultiImage/multigs/computeIntersection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/multigs/computeIntersection.c -------------------------------------------------------------------------------- /MultiImage/multigs/computeIntersection.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/multigs/computeIntersection.mexa64 -------------------------------------------------------------------------------- /MultiImage/multigs/computeIntersection.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/multigs/computeIntersection.mexmaci64 -------------------------------------------------------------------------------- /MultiImage/multigs/computeIntersection.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/multigs/computeIntersection.mexw64 -------------------------------------------------------------------------------- /MultiImage/multigs/multigsSampling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/multigs/multigsSampling.m -------------------------------------------------------------------------------- /MultiImage/pointlineMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/pointlineMatch.m -------------------------------------------------------------------------------- /MultiImage/refineLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/refineLine.m -------------------------------------------------------------------------------- /MultiImage/texture_mapping/compile_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/texture_mapping/compile_mex.m -------------------------------------------------------------------------------- /MultiImage/texture_mapping/meshmap_warp2homo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/texture_mapping/meshmap_warp2homo.m -------------------------------------------------------------------------------- /MultiImage/texture_mapping/texture_mapping_ltl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/texture_mapping/texture_mapping_ltl.cpp -------------------------------------------------------------------------------- /MultiImage/texture_mapping/texture_mapping_ltl.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/MultiImage/texture_mapping/texture_mapping_ltl.mexw64 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/README.md -------------------------------------------------------------------------------- /TwoImage/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/.gitattributes -------------------------------------------------------------------------------- /TwoImage/Images/0/0_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/0/0_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/0/0_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/0/0_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/1/1_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/1/1_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/1/1_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/1/1_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/10/10_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/10/10_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/10/10_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/10/10_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/11/11_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/11/11_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/11/11_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/11/11_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/12/12_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/12/12_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/12/12_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/12/12_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/13/13_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/13/13_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/13/13_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/13/13_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/14/14_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/14/14_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/14/14_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/14/14_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/15/15_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/15/15_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/15/15_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/15/15_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/16/16_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/16/16_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/16/16_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/16/16_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/17/17_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/17/17_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/17/17_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/17/17_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/18/18_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/18/18_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/18/18_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/18/18_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/19/19_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/19/19_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/19/19_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/19/19_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/2/2_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/2/2_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/2/2_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/2/2_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/20/20_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/20/20_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/20/20_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/20/20_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/21/21_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/21/21_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/21/21_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/21/21_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/22/22_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/22/22_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/22/22_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/22/22_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/23/23_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/23/23_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/23/23_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/23/23_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/24/24_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/24/24_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/24/24_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/24/24_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/25/25_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/25/25_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/25/25_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/25/25_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/26/26_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/26/26_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/26/26_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/26/26_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/27/27_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/27/27_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/27/27_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/27/27_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/28/28_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/28/28_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/28/28_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/28/28_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/29/29_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/29/29_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/29/29_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/29/29_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/3/3_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/3/3_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/3/3_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/3/3_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/30/30_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/30/30_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/30/30_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/30/30_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/31/31_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/31/31_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/31/31_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/31/31_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/32/32_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/32/32_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/32/32_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/32/32_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/33/33_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/33/33_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/33/33_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/33/33_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/34/34_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/34/34_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/34/34_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/34/34_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/35/35_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/35/35_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/35/35_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/35/35_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/36/36_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/36/36_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/36/36_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/36/36_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/37/37_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/37/37_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/37/37_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/37/37_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/38/38_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/38/38_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/38/38_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/38/38_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/39/39_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/39/39_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/39/39_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/39/39_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/4/4_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/4/4_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/4/4_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/4/4_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/40/40_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/40/40_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/40/40_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/40/40_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/41/41_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/41/41_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/41/41_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/41/41_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/42/42_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/42/42_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/42/42_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/42/42_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/5/5_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/5/5_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/5/5_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/5/5_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/6/6_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/6/6_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/6/6_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/6/6_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/7/7_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/7/7_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/7/7_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/7/7_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/8/8_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/8/8_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/8/8_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/8/8_r.jpg -------------------------------------------------------------------------------- /TwoImage/Images/9/9_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/9/9_l.jpg -------------------------------------------------------------------------------- /TwoImage/Images/9/9_r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/Images/9/9_r.jpg -------------------------------------------------------------------------------- /TwoImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LICENSE -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/CMakeLists.txt -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd.cpp -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd.mexw64 -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd2.m -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd2_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd2_example.m -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd_example.m -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd_image.cpp -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/lsd_image.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/lsd_image.mexw64 -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/opencv_core247.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/opencv_core247.dll -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/opencv_highgui247.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/opencv_highgui247.dll -------------------------------------------------------------------------------- /TwoImage/LSD_matlab/opencv_imgproc247.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LSD_matlab/opencv_imgproc247.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/Itspoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/Itspoint.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/Novel Coplanar Line-points Invariants for Robust Line Matching Across Views.pdf -------------------------------------------------------------------------------- /TwoImage/LineMatching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/README.md -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/LineMatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/LineMatcher.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.exe -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.ilk -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.pdb -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/TestLMDll.suo -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/opencv_calib3d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/opencv_calib3d220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Debug/opencv_calib3d220d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Debug/opencv_calib3d220d.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/README -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/LineMatcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/LineMatcher.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/TestLMDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/TestLMDll.exe -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/TestLMDll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/TestLMDll.pdb -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/TestLMDll.suo -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/opencv_calib3d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/opencv_calib3d220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/opencv_core220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/opencv_core220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/opencv_features2d220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/opencv_features2d220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/opencv_flann220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/opencv_flann220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/opencv_highgui220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/opencv_highgui220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/opencv_imgproc220.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/opencv_imgproc220.dll -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/test.exe -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/Release/test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/Release/test.pdb -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll.sdf -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll.sln -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll.suo -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.embed.manifest.res -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.exe.intermediate.manifest -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll.lastbuildstate -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/TestLMDll_manifest.rc -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928-cvtres.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.2928.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/lsd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/lsd.obj -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/main.obj -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.idb -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Debug/vc100.pdb -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.h -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/LineMatcher.lib -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.Build.CppClean.log -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.exe.intermediate.manifest -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.lastbuildstate -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.log -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.vcxprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.vcxprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/TestLMDll.write.1.tlog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/link.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/link.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/link.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/lsd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/lsd.obj -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/main.obj -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.2.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.read.2.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/Release/vc100.pdb -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.filters -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/TestLMDll.vcxproj.user -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/lsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/lsd.c -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/lsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/lsd.h -------------------------------------------------------------------------------- /TwoImage/LineMatching/TestLMDll/TestLMDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/TestLMDll/TestLMDll/main.cpp -------------------------------------------------------------------------------- /TwoImage/LineMatching/addpointsnearby.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/addpointsnearby.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/charanums5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/charanums5.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/crossproduct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/crossproduct.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/distline.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/distline.p -------------------------------------------------------------------------------- /TwoImage/LineMatching/getHpoints1L.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/getHpoints1L.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/getgoodpair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/getgoodpair.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/getpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/getpoints.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/intspoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/intspoints.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/linegradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/linegradient.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/linematch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/linematch.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/paras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/paras.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/projline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/projline.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/sameside.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/sameside.m -------------------------------------------------------------------------------- /TwoImage/LineMatching/twoLineMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/LineMatching/twoLineMatch.m -------------------------------------------------------------------------------- /TwoImage/addNeedPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/addNeedPaths.m -------------------------------------------------------------------------------- /TwoImage/calcDist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/calcDist.m -------------------------------------------------------------------------------- /TwoImage/calcHomo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/calcHomo.m -------------------------------------------------------------------------------- /TwoImage/calcHomoPointLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/calcHomoPointLine.m -------------------------------------------------------------------------------- /TwoImage/calcSlope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/calcSlope.m -------------------------------------------------------------------------------- /TwoImage/energyAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/energyAlign.m -------------------------------------------------------------------------------- /TwoImage/energyLineAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/energyLineAlign.m -------------------------------------------------------------------------------- /TwoImage/energyLineSegment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/energyLineSegment.m -------------------------------------------------------------------------------- /TwoImage/energyLineU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/energyLineU.m -------------------------------------------------------------------------------- /TwoImage/energyLineV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/energyLineV.m -------------------------------------------------------------------------------- /TwoImage/generateUV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/generateUV.m -------------------------------------------------------------------------------- /TwoImage/imageBlending.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/imageBlending.m -------------------------------------------------------------------------------- /TwoImage/linesDelete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/linesDelete.m -------------------------------------------------------------------------------- /TwoImage/linesDetect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/linesDetect.m -------------------------------------------------------------------------------- /TwoImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/main.m -------------------------------------------------------------------------------- /TwoImage/meshGridAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/meshGridAlign.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/hnormalise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/hnormalise.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/homography_degen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/homography_degen.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/homography_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/homography_fit.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/homography_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/homography_res.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/iscolinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/iscolinear.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/normalise2dpts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/normalise2dpts.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/vgg_H_from_x_lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/vgg_H_from_x_lin.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/vgg_condition_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/vgg_condition_2d.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/vgg_conditioner_from_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/vgg_conditioner_from_pts.m -------------------------------------------------------------------------------- /TwoImage/modelspecific/vgg_get_nonhomg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/modelspecific/vgg_get_nonhomg.m -------------------------------------------------------------------------------- /TwoImage/multiSample_APAP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/multiSample_APAP.m -------------------------------------------------------------------------------- /TwoImage/multigs/computeIntersection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/multigs/computeIntersection.c -------------------------------------------------------------------------------- /TwoImage/multigs/computeIntersection.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/multigs/computeIntersection.mexa64 -------------------------------------------------------------------------------- /TwoImage/multigs/computeIntersection.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/multigs/computeIntersection.mexmaci64 -------------------------------------------------------------------------------- /TwoImage/multigs/computeIntersection.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/multigs/computeIntersection.mexw64 -------------------------------------------------------------------------------- /TwoImage/multigs/multigsSampling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/multigs/multigsSampling.m -------------------------------------------------------------------------------- /TwoImage/refineLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/refineLine.m -------------------------------------------------------------------------------- /TwoImage/siftMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/siftMatch.m -------------------------------------------------------------------------------- /TwoImage/texture_mapping/compile_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/texture_mapping/compile_mex.m -------------------------------------------------------------------------------- /TwoImage/texture_mapping/meshmap_warp2homo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/texture_mapping/meshmap_warp2homo.m -------------------------------------------------------------------------------- /TwoImage/texture_mapping/texture_mapping_ltl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/texture_mapping/texture_mapping_ltl.cpp -------------------------------------------------------------------------------- /TwoImage/texture_mapping/texture_mapping_ltl.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Single-perspective-warps/HEAD/TwoImage/texture_mapping/texture_mapping_ltl.mexw64 --------------------------------------------------------------------------------