├── .gitattributes ├── LICENSE ├── README.md ├── blendTexture.m ├── calcDist.m ├── calcHomo.m ├── contourTracingofRight.m ├── evalSeamofPixel.m ├── evalSeamofSSIM.m ├── gradientBlend.m ├── graphCutMex.cpp ├── graphCutMex.h ├── graphCutMex.m ├── graphCutMex.mexw64 ├── homographyAlign.m ├── main.m ├── matchDelete.m ├── maxflow-v3.03.src ├── CHANGES.TXT ├── GPL.TXT ├── README.TXT ├── block.h ├── graph.cpp ├── graph.h ├── instances.inc └── maxflow.cpp ├── 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 ├── randIndex.m ├── ransacx.m ├── registerTexture.m ├── seamRefining.m ├── siftMatch.m ├── signalDenoise.m └── signalExtend.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/README.md -------------------------------------------------------------------------------- /blendTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/blendTexture.m -------------------------------------------------------------------------------- /calcDist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/calcDist.m -------------------------------------------------------------------------------- /calcHomo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/calcHomo.m -------------------------------------------------------------------------------- /contourTracingofRight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/contourTracingofRight.m -------------------------------------------------------------------------------- /evalSeamofPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/evalSeamofPixel.m -------------------------------------------------------------------------------- /evalSeamofSSIM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/evalSeamofSSIM.m -------------------------------------------------------------------------------- /gradientBlend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/gradientBlend.m -------------------------------------------------------------------------------- /graphCutMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/graphCutMex.cpp -------------------------------------------------------------------------------- /graphCutMex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/graphCutMex.h -------------------------------------------------------------------------------- /graphCutMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/graphCutMex.m -------------------------------------------------------------------------------- /graphCutMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/graphCutMex.mexw64 -------------------------------------------------------------------------------- /homographyAlign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/homographyAlign.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/main.m -------------------------------------------------------------------------------- /matchDelete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/matchDelete.m -------------------------------------------------------------------------------- /maxflow-v3.03.src/CHANGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/CHANGES.TXT -------------------------------------------------------------------------------- /maxflow-v3.03.src/GPL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/GPL.TXT -------------------------------------------------------------------------------- /maxflow-v3.03.src/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/README.TXT -------------------------------------------------------------------------------- /maxflow-v3.03.src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/block.h -------------------------------------------------------------------------------- /maxflow-v3.03.src/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/graph.cpp -------------------------------------------------------------------------------- /maxflow-v3.03.src/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/graph.h -------------------------------------------------------------------------------- /maxflow-v3.03.src/instances.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/instances.inc -------------------------------------------------------------------------------- /maxflow-v3.03.src/maxflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/maxflow-v3.03.src/maxflow.cpp -------------------------------------------------------------------------------- /modelspecific/hnormalise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/hnormalise.m -------------------------------------------------------------------------------- /modelspecific/homography_degen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/homography_degen.m -------------------------------------------------------------------------------- /modelspecific/homography_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/homography_fit.m -------------------------------------------------------------------------------- /modelspecific/homography_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/homography_res.m -------------------------------------------------------------------------------- /modelspecific/iscolinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/iscolinear.m -------------------------------------------------------------------------------- /modelspecific/normalise2dpts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/normalise2dpts.m -------------------------------------------------------------------------------- /modelspecific/vgg_H_from_x_lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/vgg_H_from_x_lin.m -------------------------------------------------------------------------------- /modelspecific/vgg_condition_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/vgg_condition_2d.m -------------------------------------------------------------------------------- /modelspecific/vgg_conditioner_from_pts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/vgg_conditioner_from_pts.m -------------------------------------------------------------------------------- /modelspecific/vgg_get_nonhomg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/modelspecific/vgg_get_nonhomg.m -------------------------------------------------------------------------------- /randIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/randIndex.m -------------------------------------------------------------------------------- /ransacx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/ransacx.m -------------------------------------------------------------------------------- /registerTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/registerTexture.m -------------------------------------------------------------------------------- /seamRefining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/seamRefining.m -------------------------------------------------------------------------------- /siftMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/siftMatch.m -------------------------------------------------------------------------------- /signalDenoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/signalDenoise.m -------------------------------------------------------------------------------- /signalExtend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlliao/Iterative-seam-estimation/HEAD/signalExtend.m --------------------------------------------------------------------------------