├── .gitignore ├── CMake └── Modules │ └── FindFFTW3.cmake ├── CMakeLists.txt ├── Doxyfile.in ├── ReadMe.md ├── astyle.sh ├── examples ├── data ├── image_toolkit.cxx ├── myexec.cxx ├── rsfe_splitbregman.cxx ├── showing.cxx └── test.cxx ├── header ├── abstractinterface.hxx ├── convolution.hxx ├── convolution_imp.hxx ├── exceptions.hxx ├── image3d.hxx ├── image3d_imp.hxx ├── interface.hxx ├── interface_imp.hxx ├── names.hxx ├── poisson.hxx ├── poisson_imp.hxx ├── rsfe_splitbregman.hxx ├── rsfe_splitbregman_imp.hxx └── segmentation.hxx ├── images ├── logo.jpg ├── preprocessing.png └── tac_result_zoom.png └── license.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CMake/Modules/FindFFTW3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/CMake/Modules/FindFFTW3.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/ReadMe.md -------------------------------------------------------------------------------- /astyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/astyle.sh -------------------------------------------------------------------------------- /examples/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/examples/data -------------------------------------------------------------------------------- /examples/image_toolkit.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/examples/image_toolkit.cxx -------------------------------------------------------------------------------- /examples/myexec.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/examples/myexec.cxx -------------------------------------------------------------------------------- /examples/rsfe_splitbregman.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/examples/rsfe_splitbregman.cxx -------------------------------------------------------------------------------- /examples/showing.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/examples/showing.cxx -------------------------------------------------------------------------------- /examples/test.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/examples/test.cxx -------------------------------------------------------------------------------- /header/abstractinterface.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/abstractinterface.hxx -------------------------------------------------------------------------------- /header/convolution.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/convolution.hxx -------------------------------------------------------------------------------- /header/convolution_imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/convolution_imp.hxx -------------------------------------------------------------------------------- /header/exceptions.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/exceptions.hxx -------------------------------------------------------------------------------- /header/image3d.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/image3d.hxx -------------------------------------------------------------------------------- /header/image3d_imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/image3d_imp.hxx -------------------------------------------------------------------------------- /header/interface.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/interface.hxx -------------------------------------------------------------------------------- /header/interface_imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/interface_imp.hxx -------------------------------------------------------------------------------- /header/names.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/names.hxx -------------------------------------------------------------------------------- /header/poisson.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/poisson.hxx -------------------------------------------------------------------------------- /header/poisson_imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/poisson_imp.hxx -------------------------------------------------------------------------------- /header/rsfe_splitbregman.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/rsfe_splitbregman.hxx -------------------------------------------------------------------------------- /header/rsfe_splitbregman_imp.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/rsfe_splitbregman_imp.hxx -------------------------------------------------------------------------------- /header/segmentation.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/header/segmentation.hxx -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/preprocessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/images/preprocessing.png -------------------------------------------------------------------------------- /images/tac_result_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/images/tac_result_zoom.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marco-fedele/3dimagetoolkit/HEAD/license.md --------------------------------------------------------------------------------