├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── .img ├── logo.svg └── logo2.png ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── LICENSE.note ├── NAMESPACE ├── NEWS.md ├── R ├── ImageFusion.R ├── RcppExports.R ├── estarfm_job.R ├── fitfc_job.R ├── imagefusion_task.R ├── imginterp_task.R ├── internal.R ├── starfm_job.R └── zzz.R ├── Readme.md ├── cleanup ├── configure ├── configure.ac ├── cran-comments.md ├── inst ├── Copyrights ├── landsat │ ├── filled │ │ ├── 2020068_191-28.tif_filled_kranj.tif │ │ ├── 2020077_190-28.tif_filled_kranj.tif │ │ ├── 2020093_190-28.tif_filled_kranj.tif │ │ └── 2020100_191-28.tif_filled_kranj.tif │ └── unfilled │ │ ├── 2020068_191-28_kranj.tif │ │ ├── 2020077_190-28_kranj.tif │ │ ├── 2020093_190-28_kranj.tif │ │ └── 2020100_191-28_kranj.tif └── modis │ └── filled │ ├── 2020068_18-04_kranj.tif │ ├── 2020069_18-04_kranj.tif │ ├── 2020070_18-04_kranj.tif │ ├── 2020071_18-04_kranj.tif │ ├── 2020072_18-04_kranj.tif │ ├── 2020073_18-04_kranj.tif │ ├── 2020074_18-04_kranj.tif │ ├── 2020075_18-04_kranj.tif │ ├── 2020076_18-04_kranj.tif │ ├── 2020077_18-04_kranj.tif │ ├── 2020078_18-04_kranj.tif │ ├── 2020079_18-04_kranj.tif │ ├── 2020080_18-04_kranj.tif │ ├── 2020081_18-04_kranj.tif │ ├── 2020082_18-04_kranj.tif │ ├── 2020083_18-04_kranj.tif │ ├── 2020084_18-04_kranj.tif │ ├── 2020085_18-04_kranj.tif │ ├── 2020086_18-04_kranj.tif │ ├── 2020087_18-04_kranj.tif │ ├── 2020088_18-04_kranj.tif │ ├── 2020089_18-04_kranj.tif │ ├── 2020090_18-04_kranj.tif │ ├── 2020091_18-04_kranj.tif │ ├── 2020092_18-04_kranj.tif │ └── 2020093_18-04_kranj.tif ├── man ├── ImageFusion.Rd ├── estarfm_job.Rd ├── fitfc_job.Rd ├── imagefusion_task.Rd ├── imginterp_task.Rd └── starfm_job.Rd ├── src ├── LICENSE_imagefusion.txt ├── Makevars.in ├── Makevars.win ├── RcppExports.cpp ├── execture_imagefusor_jobs.cpp ├── execture_imginterp_job.cpp ├── include │ ├── datafusor.h │ ├── estarfm.h │ ├── estarfm_options.h │ ├── exceptions.h │ ├── fileformat.h │ ├── filesystem.h │ ├── fitfc.h │ ├── fitfc_options.h │ ├── geoinfo.h │ ├── image.h │ ├── imagefusion.h │ ├── iterators.h │ ├── multiresimages.h │ ├── optionparser.h │ ├── optionparserimpl.h │ ├── options.h │ ├── parallelizer.h │ ├── parallelizer_options.h │ ├── proxy.h │ ├── spstfm.h │ ├── staarch.h │ ├── staarch_options.h │ ├── starfm.h │ ├── starfm_options.h │ └── type.h ├── src │ ├── estarfm.cpp │ ├── fileformat.cpp │ ├── filesystem.cpp │ ├── fitfc.cpp │ ├── geoinfo.cpp │ ├── image.cpp │ ├── optionparser.cpp │ ├── spstfm.cpp │ ├── spstfm_impl.cpp │ ├── staarch.cpp │ └── starfm.cpp └── utils │ ├── helpers │ ├── bash_completion │ ├── utils_common.cpp │ └── utils_common.h │ └── imginterp │ ├── CMakeLists.txt │ ├── customopts.cpp │ ├── customopts.h │ └── interpolation.h └── tools └── winlibs.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/.gitignore -------------------------------------------------------------------------------- /.img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/.img/logo.svg -------------------------------------------------------------------------------- /.img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/.img/logo2.png -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Johannes Mast 3 | ORGANIZATION: Universität Würzburg -------------------------------------------------------------------------------- /LICENSE.note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/LICENSE.note -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ImageFusion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/ImageFusion.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/estarfm_job.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/estarfm_job.R -------------------------------------------------------------------------------- /R/fitfc_job.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/fitfc_job.R -------------------------------------------------------------------------------- /R/imagefusion_task.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/imagefusion_task.R -------------------------------------------------------------------------------- /R/imginterp_task.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/imginterp_task.R -------------------------------------------------------------------------------- /R/internal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/internal.R -------------------------------------------------------------------------------- /R/starfm_job.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/starfm_job.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/R/zzz.R -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/Readme.md -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/cleanup -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/configure.ac -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/Copyrights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/Copyrights -------------------------------------------------------------------------------- /inst/landsat/filled/2020068_191-28.tif_filled_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/filled/2020068_191-28.tif_filled_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/filled/2020077_190-28.tif_filled_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/filled/2020077_190-28.tif_filled_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/filled/2020093_190-28.tif_filled_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/filled/2020093_190-28.tif_filled_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/filled/2020100_191-28.tif_filled_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/filled/2020100_191-28.tif_filled_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/unfilled/2020068_191-28_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/unfilled/2020068_191-28_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/unfilled/2020077_190-28_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/unfilled/2020077_190-28_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/unfilled/2020093_190-28_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/unfilled/2020093_190-28_kranj.tif -------------------------------------------------------------------------------- /inst/landsat/unfilled/2020100_191-28_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/landsat/unfilled/2020100_191-28_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020068_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020068_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020069_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020069_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020070_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020070_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020071_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020071_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020072_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020072_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020073_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020073_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020074_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020074_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020075_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020075_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020076_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020076_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020077_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020077_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020078_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020078_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020079_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020079_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020080_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020080_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020081_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020081_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020082_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020082_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020083_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020083_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020084_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020084_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020085_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020085_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020086_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020086_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020087_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020087_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020088_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020088_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020089_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020089_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020090_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020090_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020091_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020091_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020092_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020092_18-04_kranj.tif -------------------------------------------------------------------------------- /inst/modis/filled/2020093_18-04_kranj.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/inst/modis/filled/2020093_18-04_kranj.tif -------------------------------------------------------------------------------- /man/ImageFusion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/man/ImageFusion.Rd -------------------------------------------------------------------------------- /man/estarfm_job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/man/estarfm_job.Rd -------------------------------------------------------------------------------- /man/fitfc_job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/man/fitfc_job.Rd -------------------------------------------------------------------------------- /man/imagefusion_task.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/man/imagefusion_task.Rd -------------------------------------------------------------------------------- /man/imginterp_task.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/man/imginterp_task.Rd -------------------------------------------------------------------------------- /man/starfm_job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/man/starfm_job.Rd -------------------------------------------------------------------------------- /src/LICENSE_imagefusion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/LICENSE_imagefusion.txt -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/execture_imagefusor_jobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/execture_imagefusor_jobs.cpp -------------------------------------------------------------------------------- /src/execture_imginterp_job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/execture_imginterp_job.cpp -------------------------------------------------------------------------------- /src/include/datafusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/datafusor.h -------------------------------------------------------------------------------- /src/include/estarfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/estarfm.h -------------------------------------------------------------------------------- /src/include/estarfm_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/estarfm_options.h -------------------------------------------------------------------------------- /src/include/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/exceptions.h -------------------------------------------------------------------------------- /src/include/fileformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/fileformat.h -------------------------------------------------------------------------------- /src/include/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/filesystem.h -------------------------------------------------------------------------------- /src/include/fitfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/fitfc.h -------------------------------------------------------------------------------- /src/include/fitfc_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/fitfc_options.h -------------------------------------------------------------------------------- /src/include/geoinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/geoinfo.h -------------------------------------------------------------------------------- /src/include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/image.h -------------------------------------------------------------------------------- /src/include/imagefusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/imagefusion.h -------------------------------------------------------------------------------- /src/include/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/iterators.h -------------------------------------------------------------------------------- /src/include/multiresimages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/multiresimages.h -------------------------------------------------------------------------------- /src/include/optionparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/optionparser.h -------------------------------------------------------------------------------- /src/include/optionparserimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/optionparserimpl.h -------------------------------------------------------------------------------- /src/include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/options.h -------------------------------------------------------------------------------- /src/include/parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/parallelizer.h -------------------------------------------------------------------------------- /src/include/parallelizer_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/parallelizer_options.h -------------------------------------------------------------------------------- /src/include/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/proxy.h -------------------------------------------------------------------------------- /src/include/spstfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/spstfm.h -------------------------------------------------------------------------------- /src/include/staarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/staarch.h -------------------------------------------------------------------------------- /src/include/staarch_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/staarch_options.h -------------------------------------------------------------------------------- /src/include/starfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/starfm.h -------------------------------------------------------------------------------- /src/include/starfm_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/starfm_options.h -------------------------------------------------------------------------------- /src/include/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/include/type.h -------------------------------------------------------------------------------- /src/src/estarfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/estarfm.cpp -------------------------------------------------------------------------------- /src/src/fileformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/fileformat.cpp -------------------------------------------------------------------------------- /src/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/filesystem.cpp -------------------------------------------------------------------------------- /src/src/fitfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/fitfc.cpp -------------------------------------------------------------------------------- /src/src/geoinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/geoinfo.cpp -------------------------------------------------------------------------------- /src/src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/image.cpp -------------------------------------------------------------------------------- /src/src/optionparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/optionparser.cpp -------------------------------------------------------------------------------- /src/src/spstfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/spstfm.cpp -------------------------------------------------------------------------------- /src/src/spstfm_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/spstfm_impl.cpp -------------------------------------------------------------------------------- /src/src/staarch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/staarch.cpp -------------------------------------------------------------------------------- /src/src/starfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/src/starfm.cpp -------------------------------------------------------------------------------- /src/utils/helpers/bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/helpers/bash_completion -------------------------------------------------------------------------------- /src/utils/helpers/utils_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/helpers/utils_common.cpp -------------------------------------------------------------------------------- /src/utils/helpers/utils_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/helpers/utils_common.h -------------------------------------------------------------------------------- /src/utils/imginterp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/imginterp/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/imginterp/customopts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/imginterp/customopts.cpp -------------------------------------------------------------------------------- /src/utils/imginterp/customopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/imginterp/customopts.h -------------------------------------------------------------------------------- /src/utils/imginterp/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/src/utils/imginterp/interpolation.h -------------------------------------------------------------------------------- /tools/winlibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohMast/ImageFusion/HEAD/tools/winlibs.R --------------------------------------------------------------------------------