├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── alphawarp.m ├── animatepair.m ├── camera.m ├── demobatura.m ├── demobindschadler.m ├── demoengabreen.m ├── demos ├── IMG_8902.jpg ├── IMG_8937.jpg ├── cias_data │ ├── batura_2000.tif │ ├── batura_2001.tif │ ├── batura_2002.tif │ ├── muragl_1981.tfw │ ├── muragl_1981.tif │ ├── muragl_1994.tfw │ └── muragl_1994.tif ├── dem.mat ├── gcp8902.txt ├── imcorr_data │ ├── conv_87.png │ ├── conv_89.png │ ├── fang_87.png │ └── fang_89.png └── practise_data │ ├── GCPortho6_4dot5Mpx.txt │ ├── dem30m.mat │ ├── dem_30m.txt │ └── ufs20110511_0815_4dot5Mpx.jpg ├── demoschneeferner.m ├── docs ├── CNAME ├── LMFnlsq.html ├── _config.yml ├── alphawarp.md ├── camera.md ├── demobatura.html ├── demobatura.md ├── demobatura_01.png ├── demobindschadler.html ├── demobindschadler.md ├── demobindschadler_01.png ├── demoengabreen.html ├── demoengabreen.md ├── demoengabreen_01.png ├── demoengabreen_02.png ├── demoengabreen_03.png ├── demos.md ├── demoschneeferner.html ├── demoschneeferner.md ├── demoschneeferner_01.png ├── downloadDemoData.html ├── faq.md ├── faq_batch_processing.md ├── faq_landsat.md ├── faq_montecarlo.md ├── faq_nice3dplots.md ├── faq_occ.md ├── faq_preprocessing.md ├── functions.md ├── img │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── enga3d.png │ ├── example_01.png │ ├── example_04.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── glacier_smallest.gif │ ├── imgraftlogo.png │ ├── mcimgraft.png │ ├── site.webmanifest │ └── templatematch_diagramv3e.png ├── index.md ├── installation.md ├── showimg.md ├── templatematch.html ├── templatematch.md ├── voxelviewshed.html └── voxelviewshed.md ├── downloadDemoData.m ├── geoimread.m ├── mkdocs.yml ├── private ├── LMFnlsq.m ├── mxdom2md.xsl └── publishexamples.m ├── showimg.m ├── templatematch.m └── voxelviewshed.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/README.md -------------------------------------------------------------------------------- /alphawarp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/alphawarp.m -------------------------------------------------------------------------------- /animatepair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/animatepair.m -------------------------------------------------------------------------------- /camera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/camera.m -------------------------------------------------------------------------------- /demobatura.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demobatura.m -------------------------------------------------------------------------------- /demobindschadler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demobindschadler.m -------------------------------------------------------------------------------- /demoengabreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demoengabreen.m -------------------------------------------------------------------------------- /demos/IMG_8902.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/IMG_8902.jpg -------------------------------------------------------------------------------- /demos/IMG_8937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/IMG_8937.jpg -------------------------------------------------------------------------------- /demos/cias_data/batura_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/batura_2000.tif -------------------------------------------------------------------------------- /demos/cias_data/batura_2001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/batura_2001.tif -------------------------------------------------------------------------------- /demos/cias_data/batura_2002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/batura_2002.tif -------------------------------------------------------------------------------- /demos/cias_data/muragl_1981.tfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/muragl_1981.tfw -------------------------------------------------------------------------------- /demos/cias_data/muragl_1981.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/muragl_1981.tif -------------------------------------------------------------------------------- /demos/cias_data/muragl_1994.tfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/muragl_1994.tfw -------------------------------------------------------------------------------- /demos/cias_data/muragl_1994.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/cias_data/muragl_1994.tif -------------------------------------------------------------------------------- /demos/dem.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/dem.mat -------------------------------------------------------------------------------- /demos/gcp8902.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/gcp8902.txt -------------------------------------------------------------------------------- /demos/imcorr_data/conv_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/imcorr_data/conv_87.png -------------------------------------------------------------------------------- /demos/imcorr_data/conv_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/imcorr_data/conv_89.png -------------------------------------------------------------------------------- /demos/imcorr_data/fang_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/imcorr_data/fang_87.png -------------------------------------------------------------------------------- /demos/imcorr_data/fang_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/imcorr_data/fang_89.png -------------------------------------------------------------------------------- /demos/practise_data/GCPortho6_4dot5Mpx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/practise_data/GCPortho6_4dot5Mpx.txt -------------------------------------------------------------------------------- /demos/practise_data/dem30m.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/practise_data/dem30m.mat -------------------------------------------------------------------------------- /demos/practise_data/dem_30m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/practise_data/dem_30m.txt -------------------------------------------------------------------------------- /demos/practise_data/ufs20110511_0815_4dot5Mpx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demos/practise_data/ufs20110511_0815_4dot5Mpx.jpg -------------------------------------------------------------------------------- /demoschneeferner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/demoschneeferner.m -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | imgraft.glaciology.net -------------------------------------------------------------------------------- /docs/LMFnlsq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/LMFnlsq.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/alphawarp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/alphawarp.md -------------------------------------------------------------------------------- /docs/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/camera.md -------------------------------------------------------------------------------- /docs/demobatura.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demobatura.html -------------------------------------------------------------------------------- /docs/demobatura.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demobatura.md -------------------------------------------------------------------------------- /docs/demobatura_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demobatura_01.png -------------------------------------------------------------------------------- /docs/demobindschadler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demobindschadler.html -------------------------------------------------------------------------------- /docs/demobindschadler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demobindschadler.md -------------------------------------------------------------------------------- /docs/demobindschadler_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demobindschadler_01.png -------------------------------------------------------------------------------- /docs/demoengabreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoengabreen.html -------------------------------------------------------------------------------- /docs/demoengabreen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoengabreen.md -------------------------------------------------------------------------------- /docs/demoengabreen_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoengabreen_01.png -------------------------------------------------------------------------------- /docs/demoengabreen_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoengabreen_02.png -------------------------------------------------------------------------------- /docs/demoengabreen_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoengabreen_03.png -------------------------------------------------------------------------------- /docs/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demos.md -------------------------------------------------------------------------------- /docs/demoschneeferner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoschneeferner.html -------------------------------------------------------------------------------- /docs/demoschneeferner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoschneeferner.md -------------------------------------------------------------------------------- /docs/demoschneeferner_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/demoschneeferner_01.png -------------------------------------------------------------------------------- /docs/downloadDemoData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/downloadDemoData.html -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/faq_batch_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq_batch_processing.md -------------------------------------------------------------------------------- /docs/faq_landsat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq_landsat.md -------------------------------------------------------------------------------- /docs/faq_montecarlo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq_montecarlo.md -------------------------------------------------------------------------------- /docs/faq_nice3dplots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq_nice3dplots.md -------------------------------------------------------------------------------- /docs/faq_occ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq_occ.md -------------------------------------------------------------------------------- /docs/faq_preprocessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/faq_preprocessing.md -------------------------------------------------------------------------------- /docs/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/functions.md -------------------------------------------------------------------------------- /docs/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/img/enga3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/enga3d.png -------------------------------------------------------------------------------- /docs/img/example_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/example_01.png -------------------------------------------------------------------------------- /docs/img/example_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/example_04.png -------------------------------------------------------------------------------- /docs/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/favicon-16x16.png -------------------------------------------------------------------------------- /docs/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/favicon-32x32.png -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/glacier_smallest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/glacier_smallest.gif -------------------------------------------------------------------------------- /docs/img/imgraftlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/imgraftlogo.png -------------------------------------------------------------------------------- /docs/img/mcimgraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/mcimgraft.png -------------------------------------------------------------------------------- /docs/img/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/site.webmanifest -------------------------------------------------------------------------------- /docs/img/templatematch_diagramv3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/img/templatematch_diagramv3e.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/showimg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/showimg.md -------------------------------------------------------------------------------- /docs/templatematch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/templatematch.html -------------------------------------------------------------------------------- /docs/templatematch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/templatematch.md -------------------------------------------------------------------------------- /docs/voxelviewshed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/voxelviewshed.html -------------------------------------------------------------------------------- /docs/voxelviewshed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/docs/voxelviewshed.md -------------------------------------------------------------------------------- /downloadDemoData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/downloadDemoData.m -------------------------------------------------------------------------------- /geoimread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/geoimread.m -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /private/LMFnlsq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/private/LMFnlsq.m -------------------------------------------------------------------------------- /private/mxdom2md.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/private/mxdom2md.xsl -------------------------------------------------------------------------------- /private/publishexamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/private/publishexamples.m -------------------------------------------------------------------------------- /showimg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/showimg.m -------------------------------------------------------------------------------- /templatematch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/templatematch.m -------------------------------------------------------------------------------- /voxelviewshed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grinsted/ImGRAFT/HEAD/voxelviewshed.m --------------------------------------------------------------------------------