├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TDCT_correlation.py ├── TDCT_correlation.ui ├── TDCT_main.py ├── TDCT_main.ui ├── USERGUIDE.md ├── conftest.py ├── environment_linux.yml ├── environment_osx.yml ├── environment_win.yml ├── examples └── transform │ ├── 2020-04-24_15-03-41_correlated.tif │ ├── 2020-04-24_15-03-41_correlation.txt │ ├── example_guide.pdf │ ├── small_cf.tif │ ├── small_cf_transformed.mrc │ ├── small_cf_transformed.tif │ ├── small_ib.tif │ ├── small_ib_rgb.tif │ ├── small_ib_transformed.mrc │ ├── small_ib_transformed.tif │ ├── transform.ipynb │ └── transform.pdf ├── icons.qrc ├── icons ├── SplashScreen.gif ├── SplashScreen.png ├── TDCT.png └── mpi.png ├── icons_rc.py ├── pyto ├── __init__.py ├── affine.py ├── affine_2d.py ├── attributes.py ├── common.py ├── points.py ├── rigid_3d.py ├── test │ ├── test_affine.py │ ├── test_affine_2d.py │ └── test_rigid_3d.py └── util.py ├── tdct ├── QtCustom.py ├── TDCT_debug.py ├── __init__.py ├── beadPos.py ├── clrmsg.py ├── correlation.py ├── csvHandler.py ├── helpdoc.py ├── matlab3Drotation.py ├── parabolic.py ├── stackProcessing.py └── test │ ├── test_beadPos.py │ ├── test_parabolic.py │ └── test_stackProcessing.py └── test ├── conftest.py ├── test_TDCT_correlation.py └── test_TDCT_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/README.md -------------------------------------------------------------------------------- /TDCT_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/TDCT_correlation.py -------------------------------------------------------------------------------- /TDCT_correlation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/TDCT_correlation.ui -------------------------------------------------------------------------------- /TDCT_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/TDCT_main.py -------------------------------------------------------------------------------- /TDCT_main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/TDCT_main.ui -------------------------------------------------------------------------------- /USERGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/USERGUIDE.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/conftest.py -------------------------------------------------------------------------------- /environment_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/environment_linux.yml -------------------------------------------------------------------------------- /environment_osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/environment_osx.yml -------------------------------------------------------------------------------- /environment_win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/environment_win.yml -------------------------------------------------------------------------------- /examples/transform/2020-04-24_15-03-41_correlated.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/2020-04-24_15-03-41_correlated.tif -------------------------------------------------------------------------------- /examples/transform/2020-04-24_15-03-41_correlation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/2020-04-24_15-03-41_correlation.txt -------------------------------------------------------------------------------- /examples/transform/example_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/example_guide.pdf -------------------------------------------------------------------------------- /examples/transform/small_cf.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_cf.tif -------------------------------------------------------------------------------- /examples/transform/small_cf_transformed.mrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_cf_transformed.mrc -------------------------------------------------------------------------------- /examples/transform/small_cf_transformed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_cf_transformed.tif -------------------------------------------------------------------------------- /examples/transform/small_ib.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_ib.tif -------------------------------------------------------------------------------- /examples/transform/small_ib_rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_ib_rgb.tif -------------------------------------------------------------------------------- /examples/transform/small_ib_transformed.mrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_ib_transformed.mrc -------------------------------------------------------------------------------- /examples/transform/small_ib_transformed.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/small_ib_transformed.tif -------------------------------------------------------------------------------- /examples/transform/transform.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/transform.ipynb -------------------------------------------------------------------------------- /examples/transform/transform.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/examples/transform/transform.pdf -------------------------------------------------------------------------------- /icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/icons.qrc -------------------------------------------------------------------------------- /icons/SplashScreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/icons/SplashScreen.gif -------------------------------------------------------------------------------- /icons/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/icons/SplashScreen.png -------------------------------------------------------------------------------- /icons/TDCT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/icons/TDCT.png -------------------------------------------------------------------------------- /icons/mpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/icons/mpi.png -------------------------------------------------------------------------------- /icons_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/icons_rc.py -------------------------------------------------------------------------------- /pyto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/__init__.py -------------------------------------------------------------------------------- /pyto/affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/affine.py -------------------------------------------------------------------------------- /pyto/affine_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/affine_2d.py -------------------------------------------------------------------------------- /pyto/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/attributes.py -------------------------------------------------------------------------------- /pyto/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/common.py -------------------------------------------------------------------------------- /pyto/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/points.py -------------------------------------------------------------------------------- /pyto/rigid_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/rigid_3d.py -------------------------------------------------------------------------------- /pyto/test/test_affine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/test/test_affine.py -------------------------------------------------------------------------------- /pyto/test/test_affine_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/test/test_affine_2d.py -------------------------------------------------------------------------------- /pyto/test/test_rigid_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/test/test_rigid_3d.py -------------------------------------------------------------------------------- /pyto/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/pyto/util.py -------------------------------------------------------------------------------- /tdct/QtCustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/QtCustom.py -------------------------------------------------------------------------------- /tdct/TDCT_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/TDCT_debug.py -------------------------------------------------------------------------------- /tdct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/__init__.py -------------------------------------------------------------------------------- /tdct/beadPos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/beadPos.py -------------------------------------------------------------------------------- /tdct/clrmsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/clrmsg.py -------------------------------------------------------------------------------- /tdct/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/correlation.py -------------------------------------------------------------------------------- /tdct/csvHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/csvHandler.py -------------------------------------------------------------------------------- /tdct/helpdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/helpdoc.py -------------------------------------------------------------------------------- /tdct/matlab3Drotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/matlab3Drotation.py -------------------------------------------------------------------------------- /tdct/parabolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/parabolic.py -------------------------------------------------------------------------------- /tdct/stackProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/stackProcessing.py -------------------------------------------------------------------------------- /tdct/test/test_beadPos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/test/test_beadPos.py -------------------------------------------------------------------------------- /tdct/test/test_parabolic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/test/test_parabolic.py -------------------------------------------------------------------------------- /tdct/test/test_stackProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/tdct/test/test_stackProcessing.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_TDCT_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/test/test_TDCT_correlation.py -------------------------------------------------------------------------------- /test/test_TDCT_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coraxx/3DCT/HEAD/test/test_TDCT_main.py --------------------------------------------------------------------------------