├── .gitignore ├── DIC.py ├── LICENSE.md ├── PythonDIC_Documentation.pdf ├── README.md ├── functions ├── CpCorr.py ├── DIC_Global.py ├── filterFunctions.py ├── getData.py ├── initData.py ├── masks.py ├── newProcessCorrelations.py ├── plot2D.py ├── plot3D.py └── startOptions.py └── interface ├── StrainAnalysis.py ├── analysisInfos.py ├── controlWidget.py ├── deleteImages.py ├── devMode.py ├── dispVsPos.py ├── dockWidget.py ├── filterWidget.py ├── generateGrid.py ├── initApp.py ├── maskInstances.py ├── maskMarkers.py ├── menubar.py ├── newCoordinates.py ├── newNeighbors.py ├── profile.py ├── progressWidget.py └── relativeNeighborsDialog.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/.gitignore -------------------------------------------------------------------------------- /DIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/DIC.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PythonDIC_Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/PythonDIC_Documentation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/README.md -------------------------------------------------------------------------------- /functions/CpCorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/CpCorr.py -------------------------------------------------------------------------------- /functions/DIC_Global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/DIC_Global.py -------------------------------------------------------------------------------- /functions/filterFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/filterFunctions.py -------------------------------------------------------------------------------- /functions/getData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/getData.py -------------------------------------------------------------------------------- /functions/initData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/initData.py -------------------------------------------------------------------------------- /functions/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/masks.py -------------------------------------------------------------------------------- /functions/newProcessCorrelations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/newProcessCorrelations.py -------------------------------------------------------------------------------- /functions/plot2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/plot2D.py -------------------------------------------------------------------------------- /functions/plot3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/plot3D.py -------------------------------------------------------------------------------- /functions/startOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/functions/startOptions.py -------------------------------------------------------------------------------- /interface/StrainAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/StrainAnalysis.py -------------------------------------------------------------------------------- /interface/analysisInfos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/analysisInfos.py -------------------------------------------------------------------------------- /interface/controlWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/controlWidget.py -------------------------------------------------------------------------------- /interface/deleteImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/deleteImages.py -------------------------------------------------------------------------------- /interface/devMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/devMode.py -------------------------------------------------------------------------------- /interface/dispVsPos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/dispVsPos.py -------------------------------------------------------------------------------- /interface/dockWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/dockWidget.py -------------------------------------------------------------------------------- /interface/filterWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/filterWidget.py -------------------------------------------------------------------------------- /interface/generateGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/generateGrid.py -------------------------------------------------------------------------------- /interface/initApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/initApp.py -------------------------------------------------------------------------------- /interface/maskInstances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/maskInstances.py -------------------------------------------------------------------------------- /interface/maskMarkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/maskMarkers.py -------------------------------------------------------------------------------- /interface/menubar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/menubar.py -------------------------------------------------------------------------------- /interface/newCoordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/newCoordinates.py -------------------------------------------------------------------------------- /interface/newNeighbors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/newNeighbors.py -------------------------------------------------------------------------------- /interface/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/profile.py -------------------------------------------------------------------------------- /interface/progressWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/progressWidget.py -------------------------------------------------------------------------------- /interface/relativeNeighborsDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisEberl/Python_DIC/HEAD/interface/relativeNeighborsDialog.py --------------------------------------------------------------------------------