├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _templates │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst ├── conf.py ├── fft_psd_tools.rst ├── image_tools.rst ├── index.rst ├── make.bat ├── modules.rst └── rtd-pip-requirements ├── ez_setup.py ├── fft_psd_tools ├── __init__.py ├── convolve_nd.py ├── correlate2d.py ├── fast_ffts.py ├── psds.py ├── shift.py ├── smooth_tools.py └── upsample.py ├── image_tools ├── __init__.py ├── _astropy_init.py ├── conftest.py ├── deconv.py ├── downsample.py ├── drizzle.py ├── pyhcongrid.py ├── radialprofile.py └── tests │ ├── __init__.py │ ├── coveragerc │ └── setup_package.py ├── licenses ├── LICENSE.rst └── README.rst ├── pyproject.toml ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/fft_psd_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/fft_psd_tools.rst -------------------------------------------------------------------------------- /docs/image_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/image_tools.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/rtd-pip-requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/docs/rtd-pip-requirements -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/ez_setup.py -------------------------------------------------------------------------------- /fft_psd_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/__init__.py -------------------------------------------------------------------------------- /fft_psd_tools/convolve_nd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/convolve_nd.py -------------------------------------------------------------------------------- /fft_psd_tools/correlate2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/correlate2d.py -------------------------------------------------------------------------------- /fft_psd_tools/fast_ffts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/fast_ffts.py -------------------------------------------------------------------------------- /fft_psd_tools/psds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/psds.py -------------------------------------------------------------------------------- /fft_psd_tools/shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/shift.py -------------------------------------------------------------------------------- /fft_psd_tools/smooth_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/smooth_tools.py -------------------------------------------------------------------------------- /fft_psd_tools/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/fft_psd_tools/upsample.py -------------------------------------------------------------------------------- /image_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/__init__.py -------------------------------------------------------------------------------- /image_tools/_astropy_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/_astropy_init.py -------------------------------------------------------------------------------- /image_tools/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/conftest.py -------------------------------------------------------------------------------- /image_tools/deconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/deconv.py -------------------------------------------------------------------------------- /image_tools/downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/downsample.py -------------------------------------------------------------------------------- /image_tools/drizzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/drizzle.py -------------------------------------------------------------------------------- /image_tools/pyhcongrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/pyhcongrid.py -------------------------------------------------------------------------------- /image_tools/radialprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/radialprofile.py -------------------------------------------------------------------------------- /image_tools/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/tests/__init__.py -------------------------------------------------------------------------------- /image_tools/tests/coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/tests/coveragerc -------------------------------------------------------------------------------- /image_tools/tests/setup_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/image_tools/tests/setup_package.py -------------------------------------------------------------------------------- /licenses/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/licenses/LICENSE.rst -------------------------------------------------------------------------------- /licenses/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/licenses/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keflavich/image_tools/HEAD/tox.ini --------------------------------------------------------------------------------