├── LICENSE ├── README.md ├── app └── imagefusion.hpp ├── core ├── domain │ └── fusion_services.hpp ├── fusion.hpp ├── fusion_algorithms.hpp ├── optimize.hpp ├── register.hpp └── register_algorithms.hpp ├── infastructure └── file_repository.hpp ├── interfaces └── image_repository.hpp ├── main.cpp └── reg.pro /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/README.md -------------------------------------------------------------------------------- /app/imagefusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/app/imagefusion.hpp -------------------------------------------------------------------------------- /core/domain/fusion_services.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/core/domain/fusion_services.hpp -------------------------------------------------------------------------------- /core/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/core/fusion.hpp -------------------------------------------------------------------------------- /core/fusion_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/core/fusion_algorithms.hpp -------------------------------------------------------------------------------- /core/optimize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/core/optimize.hpp -------------------------------------------------------------------------------- /core/register.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/core/register.hpp -------------------------------------------------------------------------------- /core/register_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/core/register_algorithms.hpp -------------------------------------------------------------------------------- /infastructure/file_repository.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/infastructure/file_repository.hpp -------------------------------------------------------------------------------- /interfaces/image_repository.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/interfaces/image_repository.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/main.cpp -------------------------------------------------------------------------------- /reg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusherzog/ImageRegistration/HEAD/reg.pro --------------------------------------------------------------------------------